aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org/org.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.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.el')
-rw-r--r--lisp/org/org.el18
1 files changed, 9 insertions, 9 deletions
diff --git a/lisp/org/org.el b/lisp/org/org.el
index 963da77f592..587d7654409 100644
--- a/lisp/org/org.el
+++ b/lisp/org/org.el
@@ -1982,7 +1982,7 @@ file identifier are
1982 filename matches the regexp. If you want to 1982 filename matches the regexp. If you want to
1983 use groups here, use shy groups. 1983 use groups here, use shy groups.
1984 1984
1985 Example: (\"\\.x?html\\'\" . \"firefox %s\") 1985 Example: (\"\\.x?html\\\\='\" . \"firefox %s\")
1986 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\") 1986 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
1987 to open *.html and *.xhtml with firefox. 1987 to open *.html and *.xhtml with firefox.
1988 1988
@@ -1998,7 +1998,7 @@ file identifier are
1998 In a custom lisp form, you can access the group matches with 1998 In a custom lisp form, you can access the group matches with
1999 (match-string n link). 1999 (match-string n link).
2000 2000
2001 Example: (\"\\.pdf::\\(\\d+\\)\\'\" . \"evince -p %1 %s\") 2001 Example: (\"\\.pdf::\\(\\d+\\)\\\\='\" . \"evince -p %1 %s\")
2002 to open [[file:document.pdf::5]] with evince at page 5. 2002 to open [[file:document.pdf::5]] with evince at page 5.
2003 2003
2004 `directory' Matches a directory 2004 `directory' Matches a directory
@@ -12222,13 +12222,13 @@ With a triple \\[universal-argument] prefix, circumvent any state blocking.
12222With a numeric prefix arg of 0, inhibit note taking for the change. 12222With a numeric prefix arg of 0, inhibit note taking for the change.
12223 12223
12224For calling through lisp, arg is also interpreted in the following way: 12224For calling through lisp, arg is also interpreted in the following way:
12225'none -> empty state 12225`none' -> empty state
12226\"\"(empty string) -> switch to empty state 12226\"\" (empty string) -> switch to empty state
12227'done -> switch to DONE 12227`done' -> switch to DONE
12228'nextset -> switch to the next set of keywords 12228`nextset' -> switch to the next set of keywords
12229'previousset -> switch to the previous set of keywords 12229`previousset' -> switch to the previous set of keywords
12230\"WAITING\" -> switch to the specified keyword, but only if it 12230\"WAITING\" -> switch to the specified keyword, but only if it
12231 really is a member of `org-todo-keywords'." 12231 really is a member of `org-todo-keywords'."
12232 (interactive "P") 12232 (interactive "P")
12233 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region) 12233 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12234 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level) 12234 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)