]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix minor quoting problems in doc strings
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 7 Dec 2016 19:29:54 +0000 (11:29 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 7 Dec 2016 19:31:16 +0000 (11:31 -0800)
15 files changed:
lisp/calendar/solar.el
lisp/cedet/semantic/format.el
lisp/cus-edit.el
lisp/dired-x.el
lisp/emulation/viper-util.el
lisp/gnus/gnus-kill.el
lisp/gnus/gnus-score.el
lisp/gnus/starttls.el
lisp/htmlfontify.el
lisp/obsolete/mailpost.el
lisp/org/org-table.el
lisp/org/ox-latex.el
lisp/org/ox-man.el
lisp/org/ox-odt.el
lisp/time.el

index c78d2bbf51977dcf61f19e354b3dadd81f3dacf6..e92a4dc3f18902b29bcbc0be82899bae76962cf5 100644 (file)
@@ -65,7 +65,7 @@ and `am-pm' and `time-zone', both alphabetic strings.
 
 For example, the form
 
-  '(24-hours \":\" minutes
+  \\='(24-hours \":\" minutes
     (if time-zone \" (\") time-zone (if time-zone \")\"))
 
 would give military-style times like `21:07 (UTC)'."
index 1fe703fd09a1c3253a7b5b51828a50eae2d5ec40..923b0a38f85bd8fb3c312c9b8e44f04011e24552 100644 (file)
@@ -603,7 +603,7 @@ UML attribute strings are things like {abstract} or {leaf}."
     (private . "-")
     )
   "Association list of the form (SYMBOL . \"STRING\") for protection symbols.
-This associates a symbol, such as 'public with the st ring \"+\".")
+For example, it might associate the symbol `public' with the string \"+\".")
 
 (define-overloadable-function semantic-format-tag-uml-protection-to-string (protection-symbol color)
   "Convert PROTECTION-SYMBOL to a string for UML.
index 7826506cc46b6fa5e9507024f59b734ce02a774b..72f00b2f959ba69f345d6b6512fff7d0fde681a1 100644 (file)
@@ -4364,7 +4364,7 @@ option itself, into the file you specify, overwriting any
 `custom-set-variables' and `custom-set-faces' forms already
 present in that file.  It will not delete any customizations from
 the old custom file.  You should do that manually if that is what you
-want.  You also have to put something like `(load \"CUSTOM-FILE\")
+want.  You also have to put something like (load \"CUSTOM-FILE\")
 in your init file, where CUSTOM-FILE is the actual name of the
 file.  Otherwise, Emacs will not load the file when it starts up,
 and hence will not set `custom-file' to that file either."
index 088ca81ed8d6c8f2c0a6c22f8685ee3625abad5f..67721d6e88a94a89181a2dda036b81310d835b12 100644 (file)
@@ -1060,8 +1060,8 @@ You can set this variable in your ~/.emacs.  For example, to add rules for
 `.foo' and `.bar' files, write
 
  (setq dired-guess-shell-alist-user
-        '((\"\\\\.foo\\\\'\" \"FOO-COMMAND\")
-          (\"\\\\.bar\\\\'\"
+        \\='((\"\\\\.foo\\\\\\='\" \"FOO-COMMAND\")
+          (\"\\\\.bar\\\\\\='\"
            (if condition
               \"BAR-COMMAND-1\"
             \"BAR-COMMAND-2\"))))"
index 1254923669f5129570c3f47f255e9dffa97e9f9d..68500365dc07c4ecba815bd91ba49eb88b9de08f 100644 (file)
@@ -1332,7 +1332,7 @@ Works best when set in the hooks to various major modes.
 `reformed-vi' means Viper words are like Emacs words \(as determined using
 Emacs syntax tables, which are different for different major modes) with two
 exceptions: the symbol `_' is always part of a word and typical Vi non-word
-symbols, such as `,',:,\",),{, etc., are excluded.
+symbols like `\\=`', `\\='', `:', `\"', `)', and `{' are excluded.
 This behaves very close to `strict-vi', but also works well with non-ASCII
 characters from various alphabets.
 
index 059a5cdf27d8fd2d73afb9997dd4f80533b59476..8eacc468019330453637923ae240dc6a936c3d4b 100644 (file)
@@ -118,7 +118,7 @@ the header field or an empty string.  If FIELD is an empty string, the
 entire article body is searched for.  REGEXP is a string which is
 compared with FIELD value.  COMMAND is a string representing a valid
 key sequence in Summary mode or Lisp expression.  COMMAND defaults to
-'(gnus-summary-mark-as-read nil \"X\").  Make sure that COMMAND is
+\(gnus-summary-mark-as-read nil \"X\").  Make sure that COMMAND is
 executed in the Summary buffer.  If the second optional argument ALL
 is non-nil, the COMMAND is applied to articles which are already
 marked as read or unread.  Articles which are marked are skipped over
index d3a1139902b986e414c449b5b8a26aded8a62618..ef096fe76843e6f9aab508618c7f01b66bfe6f8e 100644 (file)
@@ -46,7 +46,7 @@ Say you want to use the single score file
 score files in the \"/ftp.some-where:/pub/score\" directory.
 
  (setq gnus-global-score-files
-       '(\"/ftp.gnus.org:/pub/larsi/ding/score/soc.motss.SCORE\"
+       \\='(\"/ftp.gnus.org:/pub/larsi/ding/score/soc.motss.SCORE\"
         \"/ftp.some-where:/pub/score\"))"
   :group 'gnus-score-files
   :type '(repeat file))
index f3ef5e023f97c44706e260be615fcdffeb6a0885..7c4e3839ce1f861fa88ee960d0c76874faef555e 100644 (file)
@@ -153,7 +153,7 @@ These apply when the `starttls' command is used, i.e. when
 These apply when GnuTLS is used, i.e. when `starttls-use-gnutls' is non-nil.
 
 For example, non-TLS compliant servers may require
-'(\"--protocols\" \"ssl3\").  Invoke \"gnutls-cli --help\" to
+\(\"--protocols\" \"ssl3\").  Invoke \"gnutls-cli --help\" to
 find out which parameters are available."
   :version "22.1"
   :type '(repeat string)
index fc309bd62eec829cd5097d596c1787885ffe3b32..82f3a74919f8ea2ea98ecf42f219d96eff3b645a 100644 (file)
@@ -522,8 +522,8 @@ Some examples:\n
 
 (defvar hfy-sheet-assoc 'please-ignore-this-line
   "An assoc with elements of the form (face-name style-name . style-string):\n
-'((default               \"default\" . \"{background: black; color: white}\")
 (font-lock-string-face \"string\"  . \"{color: rgb(64,224,208)}\"))" )
+\((default               \"default\" . \"{background: black; color: white}\")
+ (font-lock-string-face \"string\"  . \"{color: rgb(64,224,208)}\"))" )
 
 (defvar hfy-facemap-assoc 'please-ignore-this-line
   "An assoc of (point . FACE-SYMBOL) or (point . DEFFACE-LIST)
index bcd468c2b06389f96db8d22db904d0c8e490fa2a..eebaa34de10d09fe4006ac65c481b31f8f05ce7f 100644 (file)
@@ -26,7 +26,7 @@
 
 (defun post-mail-send-it ()
   "The MH -post interface for `rmail-mail' to call.
-To use it, include \"(setq send-mail-function 'post-mail-send-it)\" in
+To use it, include \"(setq send-mail-function \\='post-mail-send-it)\" in
 site-init."
   (let ((errbuf (if mail-interactive
                    (generate-new-buffer " post-mail errors")
index 20334f30504feecc7df1d38c101984b839fe21a6..3292590e8ed2e7a74bdabe8cb84fdc7cf7a59689 100644 (file)
@@ -303,7 +303,7 @@ The car of each element is a name of a constant, without the `$' before it.
 The cdr is the value as a string.  For example, if you'd like to use the
 speed of light in a formula, you would configure
 
-  (setq org-table-formula-constants '((\"c\" . \"299792458.\")))
+  (setq org-table-formula-constants \\='((\"c\" . \"299792458.\")))
 
 and then use it in an equation like `$1*$c'.
 
index 2734f90db06f19e07e3b30ff1991140aa12e8410..db4075e6612f09e4a5b7748377a5d465a9795691 100644 (file)
@@ -690,7 +690,7 @@ a list containing two strings: the name of the option, and the
 value.  For example,
 
   (setq org-latex-listings-options
-    '((\"basicstyle\" \"\\\\small\")
+    \\='((\"basicstyle\" \"\\\\small\")
       (\"keywordstyle\" \"\\\\color{black}\\\\bfseries\\\\underbar\")))
 
 will 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
 value.  For example,
 
   (setq org-latex-minted-options
-    '((\"bgcolor\" \"bg\") (\"frame\" \"lines\")))
+    \\='((\"bgcolor\" \"bg\") (\"frame\" \"lines\")))
 
 will result in src blocks being exported with
 
@@ -758,7 +758,7 @@ It is used during export of src blocks by the listings and minted
 latex packages.  For example,
 
   (setq org-latex-custom-lang-environments
-     '((python \"pythoncode\")))
+     \\='((python \"pythoncode\")))
 
 would have the effect that if org encounters begin_src python
 during latex export it will output
index 4d9dae5f7652725c2e50da8dd8195df15a4f46c2..1408e1476d727a8ebbaab217944a8838f9e7e120 100644 (file)
@@ -207,7 +207,7 @@ It is used during export of src blocks by the listings and
 man packages.  For example,
 
   (setq org-man-custom-lang-environments
-     '((python \"pythoncode\")))
+     \\='((python \"pythoncode\")))
 
 would have the effect that if org encounters begin_src python
 during man export."
index f2b0c9198b71f7cc7523b708e5a3533c3c935d38..944437b56cf90a45fe70a9da76ad042722840616 100644 (file)
@@ -852,7 +852,7 @@ ON-OR-OFF                 := t | nil
 For example, with the following configuration
 
 \(setq org-odt-table-styles
-      '((\"TableWithHeaderRowsAndColumns\" \"Custom\"
+      \\='((\"TableWithHeaderRowsAndColumns\" \"Custom\"
          ((use-first-row-styles . t)
           (use-first-column-styles . t)))
         (\"TableWithHeaderColumns\" \"Custom\"
index ba5792441c4e617fe059f2a96031c23d31b241fc..c9f2df382446c423fa22ab5be9b268e981b76691 100644 (file)
@@ -306,9 +306,9 @@ This expression is a list of expressions that can involve the keywords
 `seconds', all numbers in string form, and `monthname', `dayname', `am-pm',
 and `time-zone' all alphabetic strings, and `mail' a true/nil value.
 
-For example, the form
+For example:
 
-  '((substring year -2) \"/\" month \"/\" day
+   ((substring year -2) \"/\" month \"/\" day
     \" \" 24-hours \":\" minutes \":\" seconds
     (if time-zone \" (\") time-zone (if time-zone \")\")
     (if mail \" Mail\" \"\"))