aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/url
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/url
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/url')
-rw-r--r--lisp/url/url-util.el2
-rw-r--r--lisp/url/url-vars.el6
2 files changed, 4 insertions, 4 deletions
diff --git a/lisp/url/url-util.el b/lisp/url/url-util.el
index 13b97744131..e011b96ada2 100644
--- a/lisp/url/url-util.el
+++ b/lisp/url/url-util.el
@@ -285,7 +285,7 @@ Will not do anything if `url-show-status' is nil."
285 "Build a query-string. 285 "Build a query-string.
286 286
287Given a QUERY in the form: 287Given a QUERY in the form:
288'((key1 val1) 288 ((key1 val1)
289 (key2 val2) 289 (key2 val2)
290 (key3 val1 val2) 290 (key3 val1 val2)
291 (key4) 291 (key4)
diff --git a/lisp/url/url-vars.el b/lisp/url/url-vars.el
index 7e752776ba9..46c2ec3c69f 100644
--- a/lisp/url/url-vars.el
+++ b/lisp/url/url-vars.el
@@ -122,9 +122,9 @@ cookies -- never accept HTTP cookies
122 122
123Samples: 123Samples:
124 124
125 (setq url-privacy-level 'high) 125 (setq url-privacy-level \\='high)
126 (setq url-privacy-level '(email lastloc)) ;; equivalent to 'high 126 (setq url-privacy-level \\='(email lastloc)) ;; equivalent to \\='high
127 (setq url-privacy-level '(os)) 127 (setq url-privacy-level \\='(os))
128 128
129::NOTE:: 129::NOTE::
130This variable controls several other variables and is _NOT_ automatically 130This variable controls several other variables and is _NOT_ automatically