aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/erc
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/erc
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/erc')
-rw-r--r--lisp/erc/erc-backend.el14
-rw-r--r--lisp/erc/erc.el2
2 files changed, 8 insertions, 8 deletions
diff --git a/lisp/erc/erc-backend.el b/lisp/erc/erc-backend.el
index eec69256db6..958c5ef8b62 100644
--- a/lisp/erc/erc-backend.el
+++ b/lisp/erc/erc-backend.el
@@ -1100,12 +1100,12 @@ Would expand to:
1100 add things to `erc-server-311-functions' instead.\" 1100 add things to `erc-server-311-functions' instead.\"
1101 (do-stuff-with-whois proc parsed)) 1101 (do-stuff-with-whois proc parsed))
1102 1102
1103 (puthash \"311\" 'erc-server-311-functions erc-server-responses) 1103 (puthash \"311\" \\='erc-server-311-functions erc-server-responses)
1104 (puthash \"WHOIS\" 'erc-server-WHOIS-functions erc-server-responses) 1104 (puthash \"WHOIS\" \\='erc-server-WHOIS-functions erc-server-responses)
1105 (puthash \"WI\" 'erc-server-WI-functions erc-server-responses) 1105 (puthash \"WI\" \\='erc-server-WI-functions erc-server-responses)
1106 1106
1107 (defalias 'erc-server-WHOIS 'erc-server-311) 1107 (defalias \\='erc-server-WHOIS \\='erc-server-311)
1108 (defvar erc-server-WHOIS-functions 'erc-server-311 1108 (defvar erc-server-WHOIS-functions \\='erc-server-311
1109 \"Some non-generic variable documentation. 1109 \"Some non-generic variable documentation.
1110 1110
1111 Hook called upon receiving a WHOIS server response. 1111 Hook called upon receiving a WHOIS server response.
@@ -1116,8 +1116,8 @@ Would expand to:
1116 1116
1117 See also `erc-server-311'.\") 1117 See also `erc-server-311'.\")
1118 1118
1119 (defalias 'erc-server-WI 'erc-server-311) 1119 (defalias \\='erc-server-WI \\='erc-server-311)
1120 (defvar erc-server-WI-functions 'erc-server-311 1120 (defvar erc-server-WI-functions \\='erc-server-311
1121 \"Some non-generic variable documentation. 1121 \"Some non-generic variable documentation.
1122 1122
1123 Hook called upon receiving a WI server response. 1123 Hook called upon receiving a WI server response.
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el
index 726e9ed9a21..b051645fe9b 100644
--- a/lisp/erc/erc.el
+++ b/lisp/erc/erc.el
@@ -5203,7 +5203,7 @@ So far the following TYPE/L pairs are supported:
5203 5203
5204 Event TYPE L 5204 Event TYPE L
5205 5205
5206 nickname change 'nick (NEW-NICK)" 5206 nickname change `nick' (NEW-NICK)"
5207 (erc-log (format "user-change: type: %S nlh: %S l: %S" type nlh l)) 5207 (erc-log (format "user-change: type: %S nlh: %S l: %S" type nlh l))
5208 (cond 5208 (cond
5209 ;; nickname change 5209 ;; nickname change