aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org/org-src.el
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/org/org-src.el
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/org/org-src.el')
-rw-r--r--lisp/org/org-src.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/org/org-src.el b/lisp/org/org-src.el
index 8a6c77a8182..c970fe6c851 100644
--- a/lisp/org/org-src.el
+++ b/lisp/org/org-src.el
@@ -166,10 +166,10 @@ other-frame Use `switch-to-buffer-other-frame' to display edit buffer.
166 (const reorganize-frame))) 166 (const reorganize-frame)))
167 167
168(defvar org-src-mode-hook nil 168(defvar org-src-mode-hook nil
169 "Hook run after Org switched a source code snippet to its Emacs mode. 169 "Hook run after Org switched a source code snippet to its Emacs mode.
170This hook will run 170This hook will run
171 171
172- when editing a source code snippet with \"C-c '\". 172- when editing a source code snippet with `\\[org-src-mode-map]'.
173- When formatting a source code snippet for export with htmlize. 173- When formatting a source code snippet for export with htmlize.
174 174
175You may want to use this hook for example to turn off `outline-minor-mode' 175You may want to use this hook for example to turn off `outline-minor-mode'
@@ -226,7 +226,7 @@ the existing edit buffer."
226(define-minor-mode org-src-mode 226(define-minor-mode org-src-mode
227 "Minor mode for language major mode buffers generated by org. 227 "Minor mode for language major mode buffers generated by org.
228This minor mode is turned on in two situations: 228This minor mode is turned on in two situations:
229- when editing a source code snippet with \"C-c '\". 229- when editing a source code snippet with `\\[org-src-mode-map]'.
230- When formatting a source code snippet for export with htmlize. 230- When formatting a source code snippet for export with htmlize.
231There is a mode hook, and keybindings for `org-edit-src-exit' and 231There is a mode hook, and keybindings for `org-edit-src-exit' and
232`org-edit-src-save'") 232`org-edit-src-save'")