diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2016-02-03 17:13:04 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-02-03 17:20:17 -0800 |
commit | 91557f5e2decb723544a703d01f11879be07fd04 (patch) | |
tree | 8f53ef75492e0552746c3f9a6da5b1efbc051b0e /lisp/xwidget.el | |
parent | 2c0dc9fa70dcde56f68db6e72309f995e5c0e6e0 (diff) | |
download | emacs-91557f5e2decb723544a703d01f11879be07fd04.tar.gz |
Quoting fixes in doc strings and diagnostics
* lisp/emacs-lisp/bytecomp.el (byte-compile-setq, byte-compile-funcall):
* lisp/gnus/mml-smime.el (mml-smime-get-dns-cert)
(mml-smime-get-ldap-cert):
Follow user style preference when quoting diagnostics.
Diffstat (limited to 'lisp/xwidget.el')
-rw-r--r-- | lisp/xwidget.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/xwidget.el b/lisp/xwidget.el index 8c8e679c8da..cd8ec0ec29d 100644 --- a/lisp/xwidget.el +++ b/lisp/xwidget.el @@ -144,7 +144,7 @@ Interactively, URL defaults to the string looking like a url around point." (defun xwidget-webkit-scroll-up () "Scroll webkit up. Depending on the value of `xwidget-webkit-scroll-behavior', -this scrolls in 'native' fashion, or like `image-mode' would." +this scrolls in `native' fashion, or like `image-mode' would." (interactive) (if (eq xwidget-webkit-scroll-behavior 'native) (xwidget-set-adjustment (xwidget-webkit-last-session) 'vertical t 50) @@ -153,7 +153,7 @@ this scrolls in 'native' fashion, or like `image-mode' would." (defun xwidget-webkit-scroll-down () "Scroll webkit down. Depending on the value of `xwidget-webkit-scroll-behavior', -this scrolls in 'native' fashion, or like `image-mode' would." +this scrolls in `native' fashion, or like `image-mode' would." (interactive) (if (eq xwidget-webkit-scroll-behavior 'native) (xwidget-set-adjustment (xwidget-webkit-last-session) 'vertical t -50) @@ -162,7 +162,7 @@ this scrolls in 'native' fashion, or like `image-mode' would." (defun xwidget-webkit-scroll-forward () "Scroll webkit forwards. Depending on the value of `xwidget-webkit-scroll-behavior', -this scrolls in 'native' fashion, or like `image-mode' would." +this scrolls in `native' fashion, or like `image-mode' would." (interactive) (if (eq xwidget-webkit-scroll-behavior 'native) (xwidget-set-adjustment (xwidget-webkit-last-session) 'horizontal t 50) @@ -171,7 +171,7 @@ this scrolls in 'native' fashion, or like `image-mode' would." (defun xwidget-webkit-scroll-backward () "Scroll webkit backwards. Depending on the value of `xwidget-webkit-scroll-behavior', -this scrolls in 'native' fashion, or like `image-mode' would." +this scrolls in `native' fashion, or like `image-mode' would." (interactive) (if (eq xwidget-webkit-scroll-behavior 'native) (xwidget-set-adjustment (xwidget-webkit-last-session) 'horizontal t -50) |