aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/obsolete
diff options
context:
space:
mode:
authorPaul Eggert2015-09-03 15:31:12 -0700
committerPaul Eggert2015-09-03 15:32:54 -0700
commit26bd978d87dfbf9baa115cd961a67d42b416c4bf (patch)
tree20f3d063895796f54b9f521c0b35f65bbcd418c4 /lisp/obsolete
parent944d77f070da388b0c6e6578a9f868e88c088940 (diff)
downloademacs-26bd978d87dfbf9baa115cd961a67d42b416c4bf.tar.gz
emacs-26bd978d87dfbf9baa115cd961a67d42b416c4bf.zip
Fix some more docstring etc. quoting problems
Mostly these fixes prevent the transliteration of apostrophes that should stay apostrophes. Also, prefer curved quotes in Bahá’í proper names, as that’s the preferred Bahá’í style and these names are chock-full of non-ASCII characters anyway. * lisp/emacs-lisp/eieio-core.el (eieio-defclass-autoload) (eieio-defclass-internal): * lisp/emacs-lisp/eieio.el (defclass): * lisp/hi-lock.el (hi-lock-mode): Don’t transliterate Lisp apostrophes when generating a doc string or diagnostic. * lisp/international/mule-diag.el (list-coding-systems-1): * lisp/international/ogonek.el (ogonek-jak, ogonek-how): * lisp/mail/sendmail.el (sendmail-query-user-about-smtp): * lisp/vc/ediff-mult.el (ediff-redraw-registry-buffer): * lisp/vc/ediff-ptch.el (ediff-fixup-patch-map): Substitute quotes before putting them in the help buffer.
Diffstat (limited to 'lisp/obsolete')
-rw-r--r--lisp/obsolete/fast-lock.el4
-rw-r--r--lisp/obsolete/lazy-lock.el2
-rw-r--r--lisp/obsolete/sym-comp.el6
3 files changed, 6 insertions, 6 deletions
diff --git a/lisp/obsolete/fast-lock.el b/lisp/obsolete/fast-lock.el
index 0f57dfd1788..7e3dd66a56a 100644
--- a/lisp/obsolete/fast-lock.el
+++ b/lisp/obsolete/fast-lock.el
@@ -336,7 +336,7 @@ If nil, means information for all faces will be saved.")
336With arg, turn Fast Lock mode on if and only if arg is positive and the buffer 336With arg, turn Fast Lock mode on if and only if arg is positive and the buffer
337is associated with a file. Enable it automatically in your `~/.emacs' by: 337is associated with a file. Enable it automatically in your `~/.emacs' by:
338 338
339 (setq font-lock-support-mode 'fast-lock-mode) 339 (setq font-lock-support-mode \\='fast-lock-mode)
340 340
341If Fast Lock mode is enabled, and the current buffer does not contain any text 341If Fast Lock mode is enabled, and the current buffer does not contain any text
342properties, any associated Font Lock cache is used if its timestamp matches the 342properties, any associated Font Lock cache is used if its timestamp matches the
@@ -538,7 +538,7 @@ If the same file has different cache file names when edited on different
538machines, e.g., on one machine the cache file name has the prefix `#home', 538machines, e.g., on one machine the cache file name has the prefix `#home',
539perhaps due to automount, try putting in your `~/.emacs' something like: 539perhaps due to automount, try putting in your `~/.emacs' something like:
540 540
541 (setq directory-abbrev-alist (cons '(\"^/home/\" . \"/\") directory-abbrev-alist)) 541 (setq directory-abbrev-alist (cons \\='(\"^/home/\" . \"/\") directory-abbrev-alist))
542 542
543Emacs automagically removes the common `/tmp_mnt' automount prefix by default. 543Emacs automagically removes the common `/tmp_mnt' automount prefix by default.
544 544
diff --git a/lisp/obsolete/lazy-lock.el b/lisp/obsolete/lazy-lock.el
index 885a11f7596..79afd80813f 100644
--- a/lisp/obsolete/lazy-lock.el
+++ b/lisp/obsolete/lazy-lock.el
@@ -466,7 +466,7 @@ See also `lazy-lock-stealth-load'."
466With arg, turn Lazy Lock mode on if and only if arg is positive. Enable it 466With arg, turn Lazy Lock mode on if and only if arg is positive. Enable it
467automatically in your `~/.emacs' by: 467automatically in your `~/.emacs' by:
468 468
469 (setq font-lock-support-mode 'lazy-lock-mode) 469 (setq font-lock-support-mode \\='lazy-lock-mode)
470 470
471For a newer font-lock support mode with similar functionality, see 471For a newer font-lock support mode with similar functionality, see
472`jit-lock-mode'. Eventually, Lazy Lock mode will be deprecated in 472`jit-lock-mode'. Eventually, Lazy Lock mode will be deprecated in
diff --git a/lisp/obsolete/sym-comp.el b/lisp/obsolete/sym-comp.el
index c633bd5845b..ac67963571c 100644
--- a/lisp/obsolete/sym-comp.el
+++ b/lisp/obsolete/sym-comp.el
@@ -165,9 +165,9 @@ Uses `symbol-completion-symbol-function' and
165used something like this in a major mode which provides symbol 165used something like this in a major mode which provides symbol
166completion: 166completion:
167 167
168 (if (featurep 'hippie-exp) 168 (if (featurep \\='hippie-exp)
169 (set (make-local-variable 'hippie-expand-try-functions-list) 169 (set (make-local-variable \\='hippie-expand-try-functions-list)
170 (cons 'symbol-completion-try-complete 170 (cons \\='symbol-completion-try-complete
171 hippie-expand-try-functions-list)))" 171 hippie-expand-try-functions-list)))"
172 (when (and symbol-completion-symbol-function 172 (when (and symbol-completion-symbol-function
173 symbol-completion-completions-function) 173 symbol-completion-completions-function)