aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2016-12-07 11:29:54 -0800
committerPaul Eggert2016-12-07 11:31:16 -0800
commiteeecac7ab9d1f8c3a29cffe4586e5fd2414dd671 (patch)
treed1233bba4917ba56b357746e1f0ad921b6174724
parentda71c89ba39f500f4c65d986863512f293934401 (diff)
downloademacs-eeecac7ab9d1f8c3a29cffe4586e5fd2414dd671.tar.gz
emacs-eeecac7ab9d1f8c3a29cffe4586e5fd2414dd671.zip
Fix minor quoting problems in doc strings
-rw-r--r--lisp/calendar/solar.el2
-rw-r--r--lisp/cedet/semantic/format.el2
-rw-r--r--lisp/cus-edit.el2
-rw-r--r--lisp/dired-x.el4
-rw-r--r--lisp/emulation/viper-util.el2
-rw-r--r--lisp/gnus/gnus-kill.el2
-rw-r--r--lisp/gnus/gnus-score.el2
-rw-r--r--lisp/gnus/starttls.el2
-rw-r--r--lisp/htmlfontify.el4
-rw-r--r--lisp/obsolete/mailpost.el2
-rw-r--r--lisp/org/org-table.el2
-rw-r--r--lisp/org/ox-latex.el6
-rw-r--r--lisp/org/ox-man.el2
-rw-r--r--lisp/org/ox-odt.el2
-rw-r--r--lisp/time.el4
15 files changed, 20 insertions, 20 deletions
diff --git a/lisp/calendar/solar.el b/lisp/calendar/solar.el
index c78d2bbf519..e92a4dc3f18 100644
--- a/lisp/calendar/solar.el
+++ b/lisp/calendar/solar.el
@@ -65,7 +65,7 @@ and `am-pm' and `time-zone', both alphabetic strings.
65 65
66For example, the form 66For example, the form
67 67
68 '(24-hours \":\" minutes 68 \\='(24-hours \":\" minutes
69 (if time-zone \" (\") time-zone (if time-zone \")\")) 69 (if time-zone \" (\") time-zone (if time-zone \")\"))
70 70
71would give military-style times like `21:07 (UTC)'." 71would give military-style times like `21:07 (UTC)'."
diff --git a/lisp/cedet/semantic/format.el b/lisp/cedet/semantic/format.el
index 1fe703fd09a..923b0a38f85 100644
--- a/lisp/cedet/semantic/format.el
+++ b/lisp/cedet/semantic/format.el
@@ -603,7 +603,7 @@ UML attribute strings are things like {abstract} or {leaf}."
603 (private . "-") 603 (private . "-")
604 ) 604 )
605 "Association list of the form (SYMBOL . \"STRING\") for protection symbols. 605 "Association list of the form (SYMBOL . \"STRING\") for protection symbols.
606This associates a symbol, such as 'public with the st ring \"+\".") 606For example, it might associate the symbol `public' with the string \"+\".")
607 607
608(define-overloadable-function semantic-format-tag-uml-protection-to-string (protection-symbol color) 608(define-overloadable-function semantic-format-tag-uml-protection-to-string (protection-symbol color)
609 "Convert PROTECTION-SYMBOL to a string for UML. 609 "Convert PROTECTION-SYMBOL to a string for UML.
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index 7826506cc46..72f00b2f959 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -4364,7 +4364,7 @@ option itself, into the file you specify, overwriting any
4364`custom-set-variables' and `custom-set-faces' forms already 4364`custom-set-variables' and `custom-set-faces' forms already
4365present in that file. It will not delete any customizations from 4365present in that file. It will not delete any customizations from
4366the old custom file. You should do that manually if that is what you 4366the old custom file. You should do that manually if that is what you
4367want. You also have to put something like `(load \"CUSTOM-FILE\") 4367want. You also have to put something like (load \"CUSTOM-FILE\")
4368in your init file, where CUSTOM-FILE is the actual name of the 4368in your init file, where CUSTOM-FILE is the actual name of the
4369file. Otherwise, Emacs will not load the file when it starts up, 4369file. Otherwise, Emacs will not load the file when it starts up,
4370and hence will not set `custom-file' to that file either." 4370and hence will not set `custom-file' to that file either."
diff --git a/lisp/dired-x.el b/lisp/dired-x.el
index 088ca81ed8d..67721d6e88a 100644
--- a/lisp/dired-x.el
+++ b/lisp/dired-x.el
@@ -1060,8 +1060,8 @@ You can set this variable in your ~/.emacs. For example, to add rules for
1060`.foo' and `.bar' files, write 1060`.foo' and `.bar' files, write
1061 1061
1062 (setq dired-guess-shell-alist-user 1062 (setq dired-guess-shell-alist-user
1063 '((\"\\\\.foo\\\\'\" \"FOO-COMMAND\") 1063 \\='((\"\\\\.foo\\\\\\='\" \"FOO-COMMAND\")
1064 (\"\\\\.bar\\\\'\" 1064 (\"\\\\.bar\\\\\\='\"
1065 (if condition 1065 (if condition
1066 \"BAR-COMMAND-1\" 1066 \"BAR-COMMAND-1\"
1067 \"BAR-COMMAND-2\"))))" 1067 \"BAR-COMMAND-2\"))))"
diff --git a/lisp/emulation/viper-util.el b/lisp/emulation/viper-util.el
index 1254923669f..68500365dc0 100644
--- a/lisp/emulation/viper-util.el
+++ b/lisp/emulation/viper-util.el
@@ -1332,7 +1332,7 @@ Works best when set in the hooks to various major modes.
1332`reformed-vi' means Viper words are like Emacs words \(as determined using 1332`reformed-vi' means Viper words are like Emacs words \(as determined using
1333Emacs syntax tables, which are different for different major modes) with two 1333Emacs syntax tables, which are different for different major modes) with two
1334exceptions: the symbol `_' is always part of a word and typical Vi non-word 1334exceptions: the symbol `_' is always part of a word and typical Vi non-word
1335symbols, such as `,',:,\",),{, etc., are excluded. 1335symbols like `\\=`', `\\='', `:', `\"', `)', and `{' are excluded.
1336This behaves very close to `strict-vi', but also works well with non-ASCII 1336This behaves very close to `strict-vi', but also works well with non-ASCII
1337characters from various alphabets. 1337characters from various alphabets.
1338 1338
diff --git a/lisp/gnus/gnus-kill.el b/lisp/gnus/gnus-kill.el
index 059a5cdf27d..8eacc468019 100644
--- a/lisp/gnus/gnus-kill.el
+++ b/lisp/gnus/gnus-kill.el
@@ -118,7 +118,7 @@ the header field or an empty string. If FIELD is an empty string, the
118entire article body is searched for. REGEXP is a string which is 118entire article body is searched for. REGEXP is a string which is
119compared with FIELD value. COMMAND is a string representing a valid 119compared with FIELD value. COMMAND is a string representing a valid
120key sequence in Summary mode or Lisp expression. COMMAND defaults to 120key sequence in Summary mode or Lisp expression. COMMAND defaults to
121'(gnus-summary-mark-as-read nil \"X\"). Make sure that COMMAND is 121\(gnus-summary-mark-as-read nil \"X\"). Make sure that COMMAND is
122executed in the Summary buffer. If the second optional argument ALL 122executed in the Summary buffer. If the second optional argument ALL
123is non-nil, the COMMAND is applied to articles which are already 123is non-nil, the COMMAND is applied to articles which are already
124marked as read or unread. Articles which are marked are skipped over 124marked as read or unread. Articles which are marked are skipped over
diff --git a/lisp/gnus/gnus-score.el b/lisp/gnus/gnus-score.el
index d3a1139902b..ef096fe7684 100644
--- a/lisp/gnus/gnus-score.el
+++ b/lisp/gnus/gnus-score.el
@@ -46,7 +46,7 @@ Say you want to use the single score file
46score files in the \"/ftp.some-where:/pub/score\" directory. 46score files in the \"/ftp.some-where:/pub/score\" directory.
47 47
48 (setq gnus-global-score-files 48 (setq gnus-global-score-files
49 '(\"/ftp.gnus.org:/pub/larsi/ding/score/soc.motss.SCORE\" 49 \\='(\"/ftp.gnus.org:/pub/larsi/ding/score/soc.motss.SCORE\"
50 \"/ftp.some-where:/pub/score\"))" 50 \"/ftp.some-where:/pub/score\"))"
51 :group 'gnus-score-files 51 :group 'gnus-score-files
52 :type '(repeat file)) 52 :type '(repeat file))
diff --git a/lisp/gnus/starttls.el b/lisp/gnus/starttls.el
index f3ef5e023f9..7c4e3839ce1 100644
--- a/lisp/gnus/starttls.el
+++ b/lisp/gnus/starttls.el
@@ -153,7 +153,7 @@ These apply when the `starttls' command is used, i.e. when
153These apply when GnuTLS is used, i.e. when `starttls-use-gnutls' is non-nil. 153These apply when GnuTLS is used, i.e. when `starttls-use-gnutls' is non-nil.
154 154
155For example, non-TLS compliant servers may require 155For example, non-TLS compliant servers may require
156'(\"--protocols\" \"ssl3\"). Invoke \"gnutls-cli --help\" to 156\(\"--protocols\" \"ssl3\"). Invoke \"gnutls-cli --help\" to
157find out which parameters are available." 157find out which parameters are available."
158 :version "22.1" 158 :version "22.1"
159 :type '(repeat string) 159 :type '(repeat string)
diff --git a/lisp/htmlfontify.el b/lisp/htmlfontify.el
index fc309bd62ee..82f3a74919f 100644
--- a/lisp/htmlfontify.el
+++ b/lisp/htmlfontify.el
@@ -522,8 +522,8 @@ Some examples:\n
522 522
523(defvar hfy-sheet-assoc 'please-ignore-this-line 523(defvar hfy-sheet-assoc 'please-ignore-this-line
524 "An assoc with elements of the form (face-name style-name . style-string):\n 524 "An assoc with elements of the form (face-name style-name . style-string):\n
525'((default \"default\" . \"{background: black; color: white}\") 525\((default \"default\" . \"{background: black; color: white}\")
526 (font-lock-string-face \"string\" . \"{color: rgb(64,224,208)}\"))" ) 526 (font-lock-string-face \"string\" . \"{color: rgb(64,224,208)}\"))" )
527 527
528(defvar hfy-facemap-assoc 'please-ignore-this-line 528(defvar hfy-facemap-assoc 'please-ignore-this-line
529 "An assoc of (point . FACE-SYMBOL) or (point . DEFFACE-LIST) 529 "An assoc of (point . FACE-SYMBOL) or (point . DEFFACE-LIST)
diff --git a/lisp/obsolete/mailpost.el b/lisp/obsolete/mailpost.el
index bcd468c2b06..eebaa34de10 100644
--- a/lisp/obsolete/mailpost.el
+++ b/lisp/obsolete/mailpost.el
@@ -26,7 +26,7 @@
26 26
27(defun post-mail-send-it () 27(defun post-mail-send-it ()
28 "The MH -post interface for `rmail-mail' to call. 28 "The MH -post interface for `rmail-mail' to call.
29To use it, include \"(setq send-mail-function 'post-mail-send-it)\" in 29To use it, include \"(setq send-mail-function \\='post-mail-send-it)\" in
30site-init." 30site-init."
31 (let ((errbuf (if mail-interactive 31 (let ((errbuf (if mail-interactive
32 (generate-new-buffer " post-mail errors") 32 (generate-new-buffer " post-mail errors")
diff --git a/lisp/org/org-table.el b/lisp/org/org-table.el
index 20334f30504..3292590e8ed 100644
--- a/lisp/org/org-table.el
+++ b/lisp/org/org-table.el
@@ -303,7 +303,7 @@ The car of each element is a name of a constant, without the `$' before it.
303The cdr is the value as a string. For example, if you'd like to use the 303The cdr is the value as a string. For example, if you'd like to use the
304speed of light in a formula, you would configure 304speed of light in a formula, you would configure
305 305
306 (setq org-table-formula-constants '((\"c\" . \"299792458.\"))) 306 (setq org-table-formula-constants \\='((\"c\" . \"299792458.\")))
307 307
308and then use it in an equation like `$1*$c'. 308and then use it in an equation like `$1*$c'.
309 309
diff --git a/lisp/org/ox-latex.el b/lisp/org/ox-latex.el
index 2734f90db06..db4075e6612 100644
--- a/lisp/org/ox-latex.el
+++ b/lisp/org/ox-latex.el
@@ -690,7 +690,7 @@ a list containing two strings: the name of the option, and the
690value. For example, 690value. For example,
691 691
692 (setq org-latex-listings-options 692 (setq org-latex-listings-options
693 '((\"basicstyle\" \"\\\\small\") 693 \\='((\"basicstyle\" \"\\\\small\")
694 (\"keywordstyle\" \"\\\\color{black}\\\\bfseries\\\\underbar\"))) 694 (\"keywordstyle\" \"\\\\color{black}\\\\bfseries\\\\underbar\")))
695 695
696will typeset the code in a small size font with underlined, bold 696will typeset the code in a small size font with underlined, bold
@@ -737,7 +737,7 @@ be a list containing two strings: the name of the option, and the
737value. For example, 737value. For example,
738 738
739 (setq org-latex-minted-options 739 (setq org-latex-minted-options
740 '((\"bgcolor\" \"bg\") (\"frame\" \"lines\"))) 740 \\='((\"bgcolor\" \"bg\") (\"frame\" \"lines\")))
741 741
742will result in src blocks being exported with 742will result in src blocks being exported with
743 743
@@ -758,7 +758,7 @@ It is used during export of src blocks by the listings and minted
758latex packages. For example, 758latex packages. For example,
759 759
760 (setq org-latex-custom-lang-environments 760 (setq org-latex-custom-lang-environments
761 '((python \"pythoncode\"))) 761 \\='((python \"pythoncode\")))
762 762
763would have the effect that if org encounters begin_src python 763would have the effect that if org encounters begin_src python
764during latex export it will output 764during latex export it will output
diff --git a/lisp/org/ox-man.el b/lisp/org/ox-man.el
index 4d9dae5f765..1408e1476d7 100644
--- a/lisp/org/ox-man.el
+++ b/lisp/org/ox-man.el
@@ -207,7 +207,7 @@ It is used during export of src blocks by the listings and
207man packages. For example, 207man packages. For example,
208 208
209 (setq org-man-custom-lang-environments 209 (setq org-man-custom-lang-environments
210 '((python \"pythoncode\"))) 210 \\='((python \"pythoncode\")))
211 211
212would have the effect that if org encounters begin_src python 212would have the effect that if org encounters begin_src python
213during man export." 213during man export."
diff --git a/lisp/org/ox-odt.el b/lisp/org/ox-odt.el
index f2b0c9198b7..944437b56cf 100644
--- a/lisp/org/ox-odt.el
+++ b/lisp/org/ox-odt.el
@@ -852,7 +852,7 @@ ON-OR-OFF := t | nil
852For example, with the following configuration 852For example, with the following configuration
853 853
854\(setq org-odt-table-styles 854\(setq org-odt-table-styles
855 '((\"TableWithHeaderRowsAndColumns\" \"Custom\" 855 \\='((\"TableWithHeaderRowsAndColumns\" \"Custom\"
856 ((use-first-row-styles . t) 856 ((use-first-row-styles . t)
857 (use-first-column-styles . t))) 857 (use-first-column-styles . t)))
858 (\"TableWithHeaderColumns\" \"Custom\" 858 (\"TableWithHeaderColumns\" \"Custom\"
diff --git a/lisp/time.el b/lisp/time.el
index ba5792441c4..c9f2df38244 100644
--- a/lisp/time.el
+++ b/lisp/time.el
@@ -306,9 +306,9 @@ This expression is a list of expressions that can involve the keywords
306`seconds', all numbers in string form, and `monthname', `dayname', `am-pm', 306`seconds', all numbers in string form, and `monthname', `dayname', `am-pm',
307and `time-zone' all alphabetic strings, and `mail' a true/nil value. 307and `time-zone' all alphabetic strings, and `mail' a true/nil value.
308 308
309For example, the form 309For example:
310 310
311 '((substring year -2) \"/\" month \"/\" day 311 ((substring year -2) \"/\" month \"/\" day
312 \" \" 24-hours \":\" minutes \":\" seconds 312 \" \" 24-hours \":\" minutes \":\" seconds
313 (if time-zone \" (\") time-zone (if time-zone \")\") 313 (if time-zone \" (\") time-zone (if time-zone \")\")
314 (if mail \" Mail\" \"\")) 314 (if mail \" Mail\" \"\"))