aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2015-09-01 18:21:42 -0700
committerPaul Eggert2015-09-01 18:23:21 -0700
commit19532d147b431a4fe34f088d6de07891c48e2c5c (patch)
tree19baea54fefb82f849ed67e49a287a715fe050cc
parent5dc644a6b01e2cf950ff617ab15be4bf1917c38c (diff)
downloademacs-19532d147b431a4fe34f088d6de07891c48e2c5c.tar.gz
emacs-19532d147b431a4fe34f088d6de07891c48e2c5c.zip
Escape ` and ' in doc
Escape apostrophes and grave accents in docstrings if they are are supposed to stand for themselves and are not quotes. Remove apostrophes from docstring examples like ‘'(calendar-nth-named-day -1 0 10 year)’ that confuse source code with data. Do some other minor docstring fixups as well, e.g., insert a missing close quote.
-rw-r--r--lisp/calculator.el8
-rw-r--r--lisp/calendar/cal-dst.el2
-rw-r--r--lisp/calendar/calendar.el4
-rw-r--r--lisp/cedet/semantic/idle.el4
-rw-r--r--lisp/cus-edit.el4
-rw-r--r--lisp/emacs-lisp/cl.el2
-rw-r--r--lisp/emacs-lisp/eieio.el4
-rw-r--r--lisp/emacs-lisp/eldoc.el4
-rw-r--r--lisp/emacs-lisp/gv.el2
-rw-r--r--lisp/erc/erc-backend.el2
-rw-r--r--lisp/erc/erc-networks.el7
-rw-r--r--lisp/erc/erc-services.el2
-rw-r--r--lisp/erc/erc.el4
-rw-r--r--lisp/eshell/esh-opt.el2
-rw-r--r--lisp/filesets.el2
-rw-r--r--lisp/font-lock.el6
-rw-r--r--lisp/gnus/gnus-art.el6
-rw-r--r--lisp/gnus/gnus-sum.el2
-rw-r--r--lisp/gnus/nndiary.el8
-rw-r--r--lisp/gnus/nnmail.el4
-rw-r--r--lisp/iimage.el2
-rw-r--r--lisp/international/ogonek.el6
-rw-r--r--lisp/msb.el2
-rw-r--r--lisp/net/dbus.el4
-rw-r--r--lisp/net/tramp.el2
-rw-r--r--lisp/obsolete/sregex.el10
-rw-r--r--lisp/org/org-agenda.el14
-rw-r--r--lisp/org/org-protocol.el4
-rw-r--r--lisp/org/ox-html.el2
-rw-r--r--lisp/outline.el2
-rw-r--r--lisp/printing.el58
-rw-r--r--lisp/progmodes/etags.el2
-rw-r--r--lisp/progmodes/hideshow.el6
-rw-r--r--lisp/progmodes/idlwave.el6
-rw-r--r--lisp/progmodes/sql.el4
-rw-r--r--lisp/progmodes/verilog-mode.el12
-rw-r--r--lisp/ps-print.el10
-rw-r--r--lisp/server.el2
-rw-r--r--lisp/ses.el4
-rw-r--r--lisp/textmodes/table.el10
-rw-r--r--lisp/textmodes/tildify.el4
-rw-r--r--lisp/wid-edit.el8
-rw-r--r--src/category.c2
43 files changed, 127 insertions, 128 deletions
diff --git a/lisp/calculator.el b/lisp/calculator.el
index 55229bc03fb..49d47a0519b 100644
--- a/lisp/calculator.el
+++ b/lisp/calculator.el
@@ -191,7 +191,7 @@ Each element in this list is a list of a character and a number that
191will be stored in that character's register. 191will be stored in that character's register.
192 192
193For example, use this to define the golden ratio number: 193For example, use this to define the golden ratio number:
194 (setq calculator-user-registers '((?g . 1.61803398875))) 194 (setq calculator-user-registers \\='((?g . 1.61803398875)))
195before you load calculator." 195before you load calculator."
196 :type '(repeat (cons character number)) 196 :type '(repeat (cons character number))
197 :set (lambda (_ val) 197 :set (lambda (_ val)
@@ -214,7 +214,7 @@ Examples:
214 t as a prefix key: 214 t as a prefix key:
215 215
216 (setq calculator-user-operators 216 (setq calculator-user-operators
217 '((\"tf\" cl-to-fr (+ 32 (/ (* X 9) 5)) 1) 217 \\='((\"tf\" cl-to-fr (+ 32 (/ (* X 9) 5)) 1)
218 (\"tc\" fr-to-cl (/ (* (- X 32) 5) 9) 1) 218 (\"tc\" fr-to-cl (/ (* (- X 32) 5) 9) 1)
219 (\"tp\" kg-to-lb (/ X 0.453592) 1) 219 (\"tp\" kg-to-lb (/ X 0.453592) 1)
220 (\"tk\" lb-to-kg (* X 0.453592) 1) 220 (\"tk\" lb-to-kg (* X 0.453592) 1)
@@ -226,8 +226,8 @@ Examples:
226 version of `X' and `F' for a recursive call. Here is a [very 226 version of `X' and `F' for a recursive call. Here is a [very
227 inefficient] Fibonacci number calculation: 227 inefficient] Fibonacci number calculation:
228 228
229 (add-to-list 'calculator-user-operators 229 (add-to-list \\='calculator-user-operators
230 '(\"F\" fib 230 \\='(\"F\" fib
231 (if (<= TX 1) 1 (+ (F (- TX 1)) (F (- TX 2)))))) 231 (if (<= TX 1) 1 (+ (F (- TX 1)) (F (- TX 2))))))
232 232
233 Note that this will be either postfix or prefix, according to 233 Note that this will be either postfix or prefix, according to
diff --git a/lisp/calendar/cal-dst.el b/lisp/calendar/cal-dst.el
index e8d6077b165..a0d0def61a5 100644
--- a/lisp/calendar/cal-dst.el
+++ b/lisp/calendar/cal-dst.el
@@ -82,7 +82,7 @@ list and for correcting times of day in the solar and lunar calculations.
82 82
83For example, if daylight saving time ends on the last Sunday in October: 83For example, if daylight saving time ends on the last Sunday in October:
84 84
85 '(calendar-nth-named-day -1 0 10 year) 85 (calendar-nth-named-day -1 0 10 year)
86 86
87If the locale never uses daylight saving time, set this to nil." 87If the locale never uses daylight saving time, set this to nil."
88 :type 'sexp 88 :type 'sexp
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el
index c35bd38bb64..07977afc397 100644
--- a/lisp/calendar/calendar.el
+++ b/lisp/calendar/calendar.el
@@ -550,12 +550,12 @@ For example, to display the ISO week numbers:
550 550
551 (setq calendar-week-start-day 1 551 (setq calendar-week-start-day 1
552 calendar-intermonth-text 552 calendar-intermonth-text
553 '(propertize 553 \\='(propertize
554 (format \"%2d\" 554 (format \"%2d\"
555 (car 555 (car
556 (calendar-iso-from-absolute 556 (calendar-iso-from-absolute
557 (calendar-absolute-from-gregorian (list month day year))))) 557 (calendar-absolute-from-gregorian (list month day year)))))
558 'font-lock-face 'font-lock-function-name-face)) 558 \\='font-lock-face \\='font-lock-function-name-face))
559 559
560See also `calendar-intermonth-header'." 560See also `calendar-intermonth-header'."
561 :group 'calendar 561 :group 'calendar
diff --git a/lisp/cedet/semantic/idle.el b/lisp/cedet/semantic/idle.el
index 225caa599fb..95d9d846466 100644
--- a/lisp/cedet/semantic/idle.el
+++ b/lisp/cedet/semantic/idle.el
@@ -716,8 +716,8 @@ It might be useful to override this variable to add comment faces
716specific to a major mode. For example, in jde mode: 716specific to a major mode. For example, in jde mode:
717 717
718\(defvar-mode-local jde-mode semantic-idle-summary-out-of-context-faces 718\(defvar-mode-local jde-mode semantic-idle-summary-out-of-context-faces
719 (append (default-value 'semantic-idle-summary-out-of-context-faces) 719 (append (default-value \\='semantic-idle-summary-out-of-context-faces)
720 '(jde-java-font-lock-doc-tag-face 720 \\='(jde-java-font-lock-doc-tag-face
721 jde-java-font-lock-link-face 721 jde-java-font-lock-link-face
722 jde-java-font-lock-bold-face 722 jde-java-font-lock-bold-face
723 jde-java-font-lock-underline-face 723 jde-java-font-lock-underline-face
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index 70308334183..08c1acdae86 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -1189,8 +1189,8 @@ and `defface'.
1189 1189
1190For example, the MH-E package updates this alist as follows: 1190For example, the MH-E package updates this alist as follows:
1191 1191
1192 (add-to-list 'customize-package-emacs-version-alist 1192 (add-to-list \\='customize-package-emacs-version-alist
1193 '(MH-E (\"6.0\" . \"22.1\") (\"6.1\" . \"22.1\") 1193 \\='(MH-E (\"6.0\" . \"22.1\") (\"6.1\" . \"22.1\")
1194 (\"7.0\" . \"22.1\") (\"7.1\" . \"22.1\") 1194 (\"7.0\" . \"22.1\") (\"7.1\" . \"22.1\")
1195 (\"7.2\" . \"22.1\") (\"7.3\" . \"22.1\") 1195 (\"7.2\" . \"22.1\") (\"7.3\" . \"22.1\")
1196 (\"7.4\" . \"22.1\") (\"8.0\" . \"22.1\"))) 1196 (\"7.4\" . \"22.1\") (\"8.0\" . \"22.1\")))
diff --git a/lisp/emacs-lisp/cl.el b/lisp/emacs-lisp/cl.el
index 38deeaeaaa9..ba50680e8b9 100644
--- a/lisp/emacs-lisp/cl.el
+++ b/lisp/emacs-lisp/cl.el
@@ -568,7 +568,7 @@ may be bound to temporary variables which are introduced
568automatically to preserve proper execution order of the arguments. 568automatically to preserve proper execution order of the arguments.
569For example: 569For example:
570 570
571 (defsetf nth (n x) (v) `(setcar (nthcdr ,n ,x) ,v)) 571 (defsetf nth (n x) (v) \\=`(setcar (nthcdr ,n ,x) ,v))
572 572
573You can replace this form with `gv-define-setter'. 573You can replace this form with `gv-define-setter'.
574 574
diff --git a/lisp/emacs-lisp/eieio.el b/lisp/emacs-lisp/eieio.el
index 84c07d96c8d..ad178c3a2c2 100644
--- a/lisp/emacs-lisp/eieio.el
+++ b/lisp/emacs-lisp/eieio.el
@@ -683,12 +683,12 @@ This class is not stored in the `parent' slot of a class vector."
683 "Make a new instance of CLASS based on INITARGS. 683 "Make a new instance of CLASS based on INITARGS.
684For example: 684For example:
685 685
686 (make-instance 'foo) 686 (make-instance \\='foo)
687 687
688INITARGS is a property list with keywords based on the `:initarg' 688INITARGS is a property list with keywords based on the `:initarg'
689for each slot. For example: 689for each slot. For example:
690 690
691 (make-instance 'foo :slot1 value1 :slotN valueN)") 691 (make-instance \\='foo :slot1 value1 :slotN valueN)")
692 692
693(define-obsolete-function-alias 'constructor #'make-instance "25.1") 693(define-obsolete-function-alias 'constructor #'make-instance "25.1")
694 694
diff --git a/lisp/emacs-lisp/eldoc.el b/lisp/emacs-lisp/eldoc.el
index feffd5470c4..2dae86ebc95 100644
--- a/lisp/emacs-lisp/eldoc.el
+++ b/lisp/emacs-lisp/eldoc.el
@@ -337,8 +337,8 @@ and the face `eldoc-highlight-function-argument', if they are to have any
337effect. 337effect.
338 338
339Major modes should modify this variable using `add-function', for example: 339Major modes should modify this variable using `add-function', for example:
340 (add-function :before-until (local 'eldoc-documentation-function) 340 (add-function :before-until (local \\='eldoc-documentation-function)
341 #'foo-mode-eldoc-function) 341 #\\='foo-mode-eldoc-function)
342so that the global documentation function (i.e. the default value of the 342so that the global documentation function (i.e. the default value of the
343variable) is taken into account if the major mode specific function does not 343variable) is taken into account if the major mode specific function does not
344return any documentation.") 344return any documentation.")
diff --git a/lisp/emacs-lisp/gv.el b/lisp/emacs-lisp/gv.el
index bed9024e037..67609820a33 100644
--- a/lisp/emacs-lisp/gv.el
+++ b/lisp/emacs-lisp/gv.el
@@ -218,7 +218,7 @@ return a Lisp form that does the assignment.
218The first arg in ARGLIST (the one that receives VAL) receives an expression 218The first arg in ARGLIST (the one that receives VAL) receives an expression
219which can do arbitrary things, whereas the other arguments are all guaranteed 219which can do arbitrary things, whereas the other arguments are all guaranteed
220to be pure and copyable. Example use: 220to be pure and copyable. Example use:
221 (gv-define-setter aref (v a i) `(aset ,a ,i ,v))" 221 (gv-define-setter aref (v a i) \\=`(aset ,a ,i ,v))"
222 (declare (indent 2) (debug (&define name sexp body))) 222 (declare (indent 2) (debug (&define name sexp body)))
223 `(gv-define-expander ,name 223 `(gv-define-expander ,name
224 (lambda (do &rest args) 224 (lambda (do &rest args)
diff --git a/lisp/erc/erc-backend.el b/lisp/erc/erc-backend.el
index db5f6a63519..eec69256db6 100644
--- a/lisp/erc/erc-backend.el
+++ b/lisp/erc/erc-backend.el
@@ -1082,7 +1082,7 @@ As an example:
1082Would expand to: 1082Would expand to:
1083 1083
1084 (prog2 1084 (prog2
1085 (defvar erc-server-311-functions 'erc-server-311 1085 (defvar erc-server-311-functions \\='erc-server-311
1086 \"Some non-generic variable documentation. 1086 \"Some non-generic variable documentation.
1087 1087
1088 Hook called upon receiving a 311 server response. 1088 Hook called upon receiving a 311 server response.
diff --git a/lisp/erc/erc-networks.el b/lisp/erc/erc-networks.el
index 9de9b257c10..441663f3b3b 100644
--- a/lisp/erc/erc-networks.el
+++ b/lisp/erc/erc-networks.el
@@ -782,9 +782,9 @@ PORTS should be a list of either:
782 numbers between LOW and HIGH (inclusive) is returned. 782 numbers between LOW and HIGH (inclusive) is returned.
783 783
784As an example: 784As an example:
785 (erc-ports-list '(1)) => (1) 785 (erc-ports-list \\='(1)) => (1)
786 (erc-ports-list '((1 5))) => (1 2 3 4 5) 786 (erc-ports-list \\='((1 5))) => (1 2 3 4 5)
787 (erc-ports-list '(1 (3 5))) => (1 3 4 5)" 787 (erc-ports-list \\='(1 (3 5))) => (1 3 4 5)"
788 (let (result) 788 (let (result)
789 (dolist (p ports) 789 (dolist (p ports)
790 (cond ((numberp p) 790 (cond ((numberp p)
@@ -866,4 +866,3 @@ VALUE is the options value.")
866;; indent-tabs-mode: t 866;; indent-tabs-mode: t
867;; tab-width: 8 867;; tab-width: 8
868;; End: 868;; End:
869
diff --git a/lisp/erc/erc-services.el b/lisp/erc/erc-services.el
index 07a4274dcb6..2d2fa6230c3 100644
--- a/lisp/erc/erc-services.el
+++ b/lisp/erc/erc-services.el
@@ -172,7 +172,7 @@ You can also use M-x erc-nickserv-identify-mode to change modes."
172 172
173Example of use: 173Example of use:
174 (setq erc-nickserv-passwords 174 (setq erc-nickserv-passwords
175 '((freenode ((\"nick-one\" . \"password\") 175 \\='((freenode ((\"nick-one\" . \"password\")
176 (\"nick-two\" . \"password\"))) 176 (\"nick-two\" . \"password\")))
177 (DALnet ((\"nick\" . \"password\")))))" 177 (DALnet ((\"nick\" . \"password\")))))"
178 :group 'erc-services 178 :group 'erc-services
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el
index f2821798103..726e9ed9a21 100644
--- a/lisp/erc/erc.el
+++ b/lisp/erc/erc.el
@@ -927,7 +927,7 @@ If no elements match, then the empty string is used.
927 927
928As an example: 928As an example:
929 (setq erc-quit-reason-various-alist 929 (setq erc-quit-reason-various-alist
930 '((\"xmms\" dme:now-playing) 930 \\='((\"xmms\" dme:now-playing)
931 (\"version\" erc-quit-reason-normal) 931 (\"version\" erc-quit-reason-normal)
932 (\"home\" \"Gone home !\") 932 (\"home\" \"Gone home !\")
933 (\"^$\" \"Default Reason\"))) 933 (\"^$\" \"Default Reason\")))
@@ -950,7 +950,7 @@ If no elements match, then the empty string is used.
950 950
951As an example: 951As an example:
952 (setq erc-part-reason-various-alist 952 (setq erc-part-reason-various-alist
953 '((\"xmms\" dme:now-playing) 953 \\='((\"xmms\" dme:now-playing)
954 (\"version\" erc-part-reason-normal) 954 (\"version\" erc-part-reason-normal)
955 (\"home\" \"Gone home !\") 955 (\"home\" \"Gone home !\")
956 (\"^$\" \"Default Reason\"))) 956 (\"^$\" \"Default Reason\")))
diff --git a/lisp/eshell/esh-opt.el b/lisp/eshell/esh-opt.el
index 2e929b05f49..4d28208b234 100644
--- a/lisp/eshell/esh-opt.el
+++ b/lisp/eshell/esh-opt.el
@@ -82,7 +82,7 @@ and `eshell-stringify-list'.
82 82
83For example, OPTIONS might look like: 83For example, OPTIONS might look like:
84 84
85 '((?C nil nil multi-column \"multi-column display\") 85 ((?C nil nil multi-column \"multi-column display\")
86 (nil \"help\" nil nil \"show this usage display\") 86 (nil \"help\" nil nil \"show this usage display\")
87 (?r \"reverse\" nil reverse-list \"reverse order while sorting\") 87 (?r \"reverse\" nil reverse-list \"reverse order while sorting\")
88 :external \"ls\" 88 :external \"ls\"
diff --git a/lisp/filesets.el b/lisp/filesets.el
index 8e2b145d04c..c098879d49d 100644
--- a/lisp/filesets.el
+++ b/lisp/filesets.el
@@ -951,7 +951,7 @@ variable will take effect after rebuilding the menu.
951Caveat: Fileset names have to be unique. 951Caveat: Fileset names have to be unique.
952 952
953Example definition: 953Example definition:
954 '\(\(\"My Wiki\" 954 \\='\(\(\"My Wiki\"
955 \(:ingroup \"~/Etc/My-Wiki/WikiContents\")) 955 \(:ingroup \"~/Etc/My-Wiki/WikiContents\"))
956 \(\"My Homepage\" 956 \(\"My Homepage\"
957 \(:pattern \"~/public_html/\" \"^.+\\\\.html$\") 957 \(:pattern \"~/public_html/\" \"^.+\\\\.html$\")
diff --git a/lisp/font-lock.el b/lisp/font-lock.el
index 5f12c6c129f..b74b60341bd 100644
--- a/lisp/font-lock.el
+++ b/lisp/font-lock.el
@@ -683,9 +683,9 @@ end of the current highlighting list.
683 683
684For example: 684For example:
685 685
686 (font-lock-add-keywords 'c-mode 686 (font-lock-add-keywords \\='c-mode
687 '((\"\\\\\\=<\\\\(FIXME\\\\):\" 1 'font-lock-warning-face prepend) 687 \\='((\"\\\\\\=<\\\\(FIXME\\\\):\" 1 \\='font-lock-warning-face prepend)
688 (\"\\\\\\=<\\\\(and\\\\|or\\\\|not\\\\)\\\\\\=>\" . 'font-lock-keyword-face))) 688 (\"\\\\\\=<\\\\(and\\\\|or\\\\|not\\\\)\\\\\\=>\" . \\='font-lock-keyword-face)))
689 689
690adds two fontification patterns for C mode, to fontify `FIXME:' words, even in 690adds two fontification patterns for C mode, to fontify `FIXME:' words, even in
691comments, and to fontify `and', `or' and `not' words as keywords. 691comments, and to fontify `and', `or' and `not' words as keywords.
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el
index b4a2f6a1773..01eb6c5cd48 100644
--- a/lisp/gnus/gnus-art.el
+++ b/lisp/gnus/gnus-art.el
@@ -330,7 +330,7 @@ to match a mail address in the From: header, BANNER is one of a symbol
330If ADDRESS matches author's mail address, it will remove things like 330If ADDRESS matches author's mail address, it will remove things like
331advertisements. For example: 331advertisements. For example:
332 332
333\((\"@yoo-hoo\\\\.co\\\\.jp\\\\'\" . \"\\n_+\\nDo You Yoo-hoo!\\\\?\\n.*\\n.*\\n\")) 333\((\"@yoo-hoo\\\\.co\\\\.jp\\\\\\='\" . \"\\n_+\\nDo You Yoo-hoo!\\\\?\\n.*\\n.*\\n\"))
334" 334"
335 :type '(repeat 335 :type '(repeat
336 (cons 336 (cons
@@ -886,12 +886,12 @@ Here are examples:
886 886
887;; Specify the altitude of Face images in the From header. 887;; Specify the altitude of Face images in the From header.
888\(setq gnus-face-properties-alist 888\(setq gnus-face-properties-alist
889 '((pbm . (:face gnus-x-face :ascent 80)) 889 \\='((pbm . (:face gnus-x-face :ascent 80))
890 (png . (:ascent 80)))) 890 (png . (:ascent 80))))
891 891
892;; Show Face images as pressed buttons. 892;; Show Face images as pressed buttons.
893\(setq gnus-face-properties-alist 893\(setq gnus-face-properties-alist
894 '((pbm . (:face gnus-x-face :relief -2)) 894 \\='((pbm . (:face gnus-x-face :relief -2))
895 (png . (:relief -2)))) 895 (png . (:relief -2))))
896 896
897See the manual for the valid properties for various image types. 897See the manual for the valid properties for various image types.
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index 447bd5d56f2..6b90204beb6 100644
--- a/lisp/gnus/gnus-sum.el
+++ b/lisp/gnus/gnus-sum.el
@@ -1656,7 +1656,7 @@ while still allowing them to affect operations done in other buffers.
1656For example: 1656For example:
1657 1657
1658\(setq gnus-newsgroup-variables 1658\(setq gnus-newsgroup-variables
1659 '(message-use-followup-to 1659 \\='(message-use-followup-to
1660 (gnus-visible-headers . 1660 (gnus-visible-headers .
1661 \"^From:\\\\|^Newsgroups:\\\\|^Subject:\\\\|^Date:\\\\|^To:\"))) 1661 \"^From:\\\\|^Newsgroups:\\\\|^Subject:\\\\|^Date:\\\\|^To:\")))
1662") 1662")
diff --git a/lisp/gnus/nndiary.el b/lisp/gnus/nndiary.el
index 31344382029..a6e75b739dd 100644
--- a/lisp/gnus/nndiary.el
+++ b/lisp/gnus/nndiary.el
@@ -151,15 +151,15 @@ maximum in the reminder is not that painful, I think. Although this
151scheme might appear somewhat weird at a first glance, it is very powerful. 151scheme might appear somewhat weird at a first glance, it is very powerful.
152In order to make this clear, here are some examples: 152In order to make this clear, here are some examples:
153 153
154- '(0 . day): this is the default value of `nndiary-reminders'. It means 154- (0 . day): this is the default value of `nndiary-reminders'. It means
155 pop up the appointments of the day each morning at 00:00. 155 pop up the appointments of the day each morning at 00:00.
156 156
157- '(1 . day): this means pop up the appointments the day before, at 00:00. 157- (1 . day): this means pop up the appointments the day before, at 00:00.
158 158
159- '(6 . hour): for an appointment at 18:30, this would pop up the 159- (6 . hour): for an appointment at 18:30, this would pop up the
160 appointment message at 12:00. 160 appointment message at 12:00.
161 161
162- '(360 . minute): for an appointment at 18:30 and 15 seconds, this would 162- (360 . minute): for an appointment at 18:30 and 15 seconds, this would
163 pop up the appointment message at 12:30." 163 pop up the appointment message at 12:30."
164 :group 'nndiary 164 :group 'nndiary
165 :type '(repeat (cons :format "%v\n" 165 :type '(repeat (cons :format "%v\n"
diff --git a/lisp/gnus/nnmail.el b/lisp/gnus/nnmail.el
index 2292849ccb1..681116017ba 100644
--- a/lisp/gnus/nnmail.el
+++ b/lisp/gnus/nnmail.el
@@ -217,7 +217,7 @@ will try to match against both the From and the To header.
217Example: 217Example:
218 218
219\(setq nnmail-fancy-expiry-targets 219\(setq nnmail-fancy-expiry-targets
220 '((to-from \"boss\" \"nnfolder:Work\") 220 \\='((to-from \"boss\" \"nnfolder:Work\")
221 (\"Subject\" \"IMPORTANT\" \"nnfolder:IMPORTANT.%Y.%b\") 221 (\"Subject\" \"IMPORTANT\" \"nnfolder:IMPORTANT.%Y.%b\")
222 (\"from\" \".*\" \"nnfolder:Archive-%Y\"))) 222 (\"from\" \".*\" \"nnfolder:Archive-%Y\")))
223 223
@@ -465,7 +465,7 @@ GROUP: Mail will be stored in GROUP (a string).
465junk: Mail will be deleted. Use with care! Do not submerge in water! 465junk: Mail will be deleted. Use with care! Do not submerge in water!
466 Example: 466 Example:
467 (setq nnmail-split-fancy 467 (setq nnmail-split-fancy
468 '(| (\"Subject\" \"MAKE MONEY FAST\" junk) 468 \\='(| (\"Subject\" \"MAKE MONEY FAST\" junk)
469 ...other.rules.omitted...)) 469 ...other.rules.omitted...))
470 470
471FIELD must match a complete field name. VALUE must match a complete 471FIELD must match a complete field name. VALUE must match a complete
diff --git a/lisp/iimage.el b/lisp/iimage.el
index 5852c9497d7..08808b1b4c4 100644
--- a/lisp/iimage.el
+++ b/lisp/iimage.el
@@ -71,7 +71,7 @@ NUM specifies which parenthesized expression in the regexp.
71 71
72Examples of image filename patterns to match: 72Examples of image filename patterns to match:
73 file://foo.png 73 file://foo.png
74 `file://foo.png' 74 \\=`file://foo.png\\='
75 \\[\\[foo.gif]] 75 \\[\\[foo.gif]]
76 <foo.png> 76 <foo.png>
77 foo.JPG 77 foo.JPG
diff --git a/lisp/international/ogonek.el b/lisp/international/ogonek.el
index 9e5a4501357..7caa5d4b30c 100644
--- a/lisp/international/ogonek.el
+++ b/lisp/international/ogonek.el
@@ -244,17 +244,17 @@ The functions come in the following groups.
244 (defun deprefixify-iso8859-2-region (start end) 244 (defun deprefixify-iso8859-2-region (start end)
245 (interactive \"*r\") 245 (interactive \"*r\")
246 (ogonek-deprefixify-region start end ?/ \"iso8859-2\")) 246 (ogonek-deprefixify-region start end ?/ \"iso8859-2\"))
247 (global-set-key \"\\C-cd\" 'deprefixify-iso8859-2-region) ; ctrl-c d 247 (global-set-key \"\\C-cd\" \\='deprefixify-iso8859-2-region) ; ctrl-c d
248 248
249 (defun mazovia-to-iso8859-2 (start end) 249 (defun mazovia-to-iso8859-2 (start end)
250 (interactive \"*r\") 250 (interactive \"*r\")
251 (ogonek-recode-region start end \"mazovia\" \"iso8859-2\")) 251 (ogonek-recode-region start end \"mazovia\" \"iso8859-2\"))
252 (global-set-key \"\\C-cr\" 'mazovia-to-iso8859-2) ; ctrl-c r 252 (global-set-key \"\\C-cr\" \\='mazovia-to-iso8859-2) ; ctrl-c r
253 253
254 (defun prefixify-iso8859-2-region (start end) 254 (defun prefixify-iso8859-2-region (start end)
255 (interactive \"*r\") 255 (interactive \"*r\")
256 (ogonek-prefixify-region start end \"iso8859-2\" ?/)) 256 (ogonek-prefixify-region start end \"iso8859-2\" ?/))
257 (global-set-key \"\\C-cp\" 'prefixify-iso8859-2-region) ; ctrl-c p 257 (global-set-key \"\\C-cp\" \\='prefixify-iso8859-2-region) ; ctrl-c p
258 258
259 Each recoding operation can be called off using the `undo' command.") 259 Each recoding operation can be called off using the `undo' command.")
260 260
diff --git a/lisp/msb.el b/lisp/msb.el
index 03b29202efe..b717dcc8cd9 100644
--- a/lisp/msb.el
+++ b/lisp/msb.el
@@ -777,7 +777,7 @@ SORT-PREDICATE.
777 777
778Example: 778Example:
779\(msb--aggregate-alist 779\(msb--aggregate-alist
780 '((a . a1) (a . a2) (b . b1) (c . c3) (a . a4) (a . a3) (b . b3) (b . b2)) 780 \\='((a . a1) (a . a2) (b . b1) (c . c3) (a . a4) (a . a3) (b . b3) (b . b2))
781 (function string=) 781 (function string=)
782 (lambda (item1 item2) 782 (lambda (item1 item2)
783 (string< (symbol-name item1) (symbol-name item2)))) 783 (string< (symbol-name item1) (symbol-name item2))))
diff --git a/lisp/net/dbus.el b/lisp/net/dbus.el
index 8f7754137cb..a7efaf81dbc 100644
--- a/lisp/net/dbus.el
+++ b/lisp/net/dbus.el
@@ -377,7 +377,7 @@ Example:
377 377
378\(dbus-call-method-asynchronously 378\(dbus-call-method-asynchronously
379 :system \"org.freedesktop.Hal\" \"/org/freedesktop/Hal/devices/computer\" 379 :system \"org.freedesktop.Hal\" \"/org/freedesktop/Hal/devices/computer\"
380 \"org.freedesktop.Hal.Device\" \"GetPropertyString\" 'message 380 \"org.freedesktop.Hal.Device\" \"GetPropertyString\" \\='message
381 \"system.kernel.machine\") 381 \"system.kernel.machine\")
382 382
383 => \(:serial :system 2) 383 => \(:serial :system 2)
@@ -654,7 +654,7 @@ Example:
654 654
655\(dbus-register-signal 655\(dbus-register-signal
656 :system \"org.freedesktop.Hal\" \"/org/freedesktop/Hal/Manager\" 656 :system \"org.freedesktop.Hal\" \"/org/freedesktop/Hal/Manager\"
657 \"org.freedesktop.Hal.Manager\" \"DeviceAdded\" 'my-signal-handler) 657 \"org.freedesktop.Hal.Manager\" \"DeviceAdded\" \\='my-signal-handler)
658 658
659 => \(\(:signal :system \"org.freedesktop.Hal.Manager\" \"DeviceAdded\") 659 => \(\(:signal :system \"org.freedesktop.Hal.Manager\" \"DeviceAdded\")
660 \(\"org.freedesktop.Hal\" \"/org/freedesktop/Hal/Manager\" my-signal-handler)) 660 \(\"org.freedesktop.Hal\" \"/org/freedesktop/Hal/Manager\" my-signal-handler))
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el
index 6bafae01c0a..6cec3c55bc9 100644
--- a/lisp/net/tramp.el
+++ b/lisp/net/tramp.el
@@ -1750,7 +1750,7 @@ Example:
1750 1750
1751 (tramp-set-completion-function 1751 (tramp-set-completion-function
1752 \"ssh\" 1752 \"ssh\"
1753 '((tramp-parse-sconfig \"/etc/ssh_config\") 1753 \\='((tramp-parse-sconfig \"/etc/ssh_config\")
1754 (tramp-parse-sconfig \"~/.ssh/config\")))" 1754 (tramp-parse-sconfig \"~/.ssh/config\")))"
1755 1755
1756 (let ((r function-list) 1756 (let ((r function-list)
diff --git a/lisp/obsolete/sregex.el b/lisp/obsolete/sregex.el
index 0a15f50be28..de0b1d913ba 100644
--- a/lisp/obsolete/sregex.el
+++ b/lisp/obsolete/sregex.el
@@ -262,15 +262,15 @@
262This is exactly like `sregexq' (q.v.) except that it evaluates all its 262This is exactly like `sregexq' (q.v.) except that it evaluates all its
263arguments, so literal sregex clauses must be quoted. For example: 263arguments, so literal sregex clauses must be quoted. For example:
264 264
265 (sregex '(or \"Bob\" \"Robert\")) => \"Bob\\\\|Robert\" 265 (sregex \\='(or \"Bob\" \"Robert\")) => \"Bob\\\\|Robert\"
266 266
267An argument-evaluating sregex interpreter lets you reuse sregex 267An argument-evaluating sregex interpreter lets you reuse sregex
268subexpressions: 268subexpressions:
269 269
270 (let ((dotstar '(0+ any)) 270 (let ((dotstar \\='(0+ any))
271 (whitespace '(1+ (syntax ?-))) 271 (whitespace \\='(1+ (syntax ?-)))
272 (digits '(1+ (char (?0 . ?9))))) 272 (digits \\='(1+ (char (?0 . ?9)))))
273 (sregex 'bol dotstar \":\" whitespace digits)) => \"^.*:\\\\s-+[0-9]+\"" 273 (sregex \\='bol dotstar \":\" whitespace digits)) => \"^.*:\\\\s-+[0-9]+\""
274 (sregex--sequence exps nil)) 274 (sregex--sequence exps nil))
275 275
276(defmacro sregexq (&rest exps) 276(defmacro sregexq (&rest exps)
diff --git a/lisp/org/org-agenda.el b/lisp/org/org-agenda.el
index a3c8b84bfca..3a87f6bedbd 100644
--- a/lisp/org/org-agenda.el
+++ b/lisp/org/org-agenda.el
@@ -1990,8 +1990,8 @@ the lower-case version of all tags."
1990 "Alist of characters and custom functions for bulk actions. 1990 "Alist of characters and custom functions for bulk actions.
1991For example, this value makes those two functions available: 1991For example, this value makes those two functions available:
1992 1992
1993 '((?R set-category) 1993 ((?R set-category)
1994 (?C bulk-cut)) 1994 (?C bulk-cut))
1995 1995
1996With selected entries in an agenda buffer, `B R' will call 1996With selected entries in an agenda buffer, `B R' will call
1997the custom function `set-category' on the selected entries. 1997the custom function `set-category' on the selected entries.
@@ -4937,13 +4937,13 @@ the `regexp' or `notregexp' element.
4937`todo' and `nottodo' accept as an argument a list of todo 4937`todo' and `nottodo' accept as an argument a list of todo
4938keywords, which may include \"*\" to match any todo keyword. 4938keywords, which may include \"*\" to match any todo keyword.
4939 4939
4940 (org-agenda-skip-entry-if 'todo '(\"TODO\" \"WAITING\")) 4940 (org-agenda-skip-entry-if \\='todo \\='(\"TODO\" \"WAITING\"))
4941 4941
4942would skip all entries with \"TODO\" or \"WAITING\" keywords. 4942would skip all entries with \"TODO\" or \"WAITING\" keywords.
4943 4943
4944Instead of a list, a keyword class may be given. For example: 4944Instead of a list, a keyword class may be given. For example:
4945 4945
4946 (org-agenda-skip-entry-if 'nottodo 'done) 4946 (org-agenda-skip-entry-if \\='nottodo \\='done)
4947 4947
4948would skip entries that haven't been marked with any of \"DONE\" 4948would skip entries that haven't been marked with any of \"DONE\"
4949keywords. Possible classes are: `todo', `done', `any'. 4949keywords. Possible classes are: `todo', `done', `any'.
@@ -10005,10 +10005,10 @@ calling the function returns nil. This function takes one
10005argument: an entry from `org-agenda-get-day-entries'. 10005argument: an entry from `org-agenda-get-day-entries'.
10006 10006
10007FILTER can also be an alist with the car of each cell being 10007FILTER can also be an alist with the car of each cell being
10008either 'headline or 'category. For example: 10008either `headline' or `category'. For example:
10009 10009
10010 '((headline \"IMPORTANT\") 10010 ((headline \"IMPORTANT\")
10011 (category \"Work\")) 10011 (category \"Work\"))
10012 10012
10013will only add headlines containing IMPORTANT or headlines 10013will only add headlines containing IMPORTANT or headlines
10014belonging to the \"Work\" category. 10014belonging to the \"Work\" category.
diff --git a/lisp/org/org-protocol.el b/lisp/org/org-protocol.el
index 4d9e79f54ea..ae0f4946832 100644
--- a/lisp/org/org-protocol.el
+++ b/lisp/org/org-protocol.el
@@ -197,7 +197,7 @@ Possible properties are:
197Example: 197Example:
198 198
199 (setq org-protocol-project-alist 199 (setq org-protocol-project-alist
200 '((\"http://orgmode.org/worg/\" 200 \\='((\"http://orgmode.org/worg/\"
201 :online-suffix \".php\" 201 :online-suffix \".php\"
202 :working-suffix \".org\" 202 :working-suffix \".org\"
203 :base-url \"http://orgmode.org/worg/\" 203 :base-url \"http://orgmode.org/worg/\"
@@ -251,7 +251,7 @@ kill-client - If t, kill the client immediately, once the sub-protocol is
251Here is an example: 251Here is an example:
252 252
253 (setq org-protocol-protocol-alist 253 (setq org-protocol-protocol-alist
254 '((\"my-protocol\" 254 \\='((\"my-protocol\"
255 :protocol \"my-protocol\" 255 :protocol \"my-protocol\"
256 :function my-protocol-handler-function) 256 :function my-protocol-handler-function)
257 (\"your-protocol\" 257 (\"your-protocol\"
diff --git a/lisp/org/ox-html.el b/lisp/org/ox-html.el
index 144b58b9bc8..fc4f574a4c4 100644
--- a/lisp/org/ox-html.el
+++ b/lisp/org/ox-html.el
@@ -833,7 +833,7 @@ you can reuse them:
833For example: 833For example:
834 834
835\(setq org-html-table-row-tags 835\(setq org-html-table-row-tags
836 (cons '(cond (top-row-p \"<tr class=\\\"tr-top\\\">\") 836 (cons \\='(cond (top-row-p \"<tr class=\\\"tr-top\\\">\")
837 (bottom-row-p \"<tr class=\\\"tr-bottom\\\">\") 837 (bottom-row-p \"<tr class=\\\"tr-bottom\\\">\")
838 (t (if (= (mod row-number 2) 1) 838 (t (if (= (mod row-number 2) 1)
839 \"<tr class=\\\"tr-odd\\\">\" 839 \"<tr class=\\\"tr-odd\\\">\"
diff --git a/lisp/outline.el b/lisp/outline.el
index d9142c5a604..816cd9ae7c9 100644
--- a/lisp/outline.el
+++ b/lisp/outline.el
@@ -338,7 +338,7 @@ numbered and unnumbered sections), list them set by set and sorted by level
338within each set. For example in texinfo mode: 338within each set. For example in texinfo mode:
339 339
340 (setq outline-heading-alist 340 (setq outline-heading-alist
341 '((\"@chapter\" . 2) (\"@section\" . 3) (\"@subsection\" . 4) 341 \\='((\"@chapter\" . 2) (\"@section\" . 3) (\"@subsection\" . 4)
342 (\"@subsubsection\" . 5) 342 (\"@subsubsection\" . 5)
343 (\"@unnumbered\" . 2) (\"@unnumberedsec\" . 3) 343 (\"@unnumbered\" . 2) (\"@unnumberedsec\" . 3)
344 (\"@unnumberedsubsec\" . 4) (\"@unnumberedsubsubsec\" . 5) 344 (\"@unnumberedsubsec\" . 4) (\"@unnumberedsubsubsec\" . 5)
diff --git a/lisp/printing.el b/lisp/printing.el
index 8ad56f413e2..ae0f3fdbc67 100644
--- a/lisp/printing.el
+++ b/lisp/printing.el
@@ -1746,14 +1746,14 @@ Examples:
1746 1746
1747* On GNU or Unix system: 1747* On GNU or Unix system:
1748 1748
1749 '((unix \".\" \"~/bin\" ghostview mpage PATH) 1749 ((unix \".\" \"~/bin\" ghostview mpage PATH)
1750 (ghostview \"$HOME/bin/gsview-dir\") 1750 (ghostview \"$HOME/bin/gsview-dir\")
1751 (mpage \"$HOME/bin/mpage-dir\") 1751 (mpage \"$HOME/bin/mpage-dir\")
1752 ) 1752 )
1753 1753
1754* On Windows system: 1754* On Windows system:
1755 1755
1756 '((windows \"c:/applications/executables\" PATH ghostview mpage) 1756 ((windows \"c:/applications/executables\" PATH ghostview mpage)
1757 (ghostview \"c:/gs/gsview-dir\") 1757 (ghostview \"c:/gs/gsview-dir\")
1758 (mpage \"c:/mpage-dir\") 1758 (mpage \"c:/mpage-dir\")
1759 )" 1759 )"
@@ -1810,8 +1810,8 @@ Where:
1810SYMBOL It's a symbol to identify a text printer. It's for 1810SYMBOL It's a symbol to identify a text printer. It's for
1811 setting option `pr-txt-name' and for menu selection. 1811 setting option `pr-txt-name' and for menu selection.
1812 Examples: 1812 Examples:
1813 'prt_06a 1813 prt_06a
1814 'my_printer 1814 my_printer
1815 1815
1816COMMAND Name of the program for printing a text file. On MS-DOS and 1816COMMAND Name of the program for printing a text file. On MS-DOS and
1817 MS-Windows systems, if the value is an empty string, then Emacs 1817 MS-Windows systems, if the value is an empty string, then Emacs
@@ -1838,7 +1838,7 @@ SWITCHES List of sexp's to pass as extra options for text printer
1838 instead of including an explicit switch on this list. 1838 instead of including an explicit switch on this list.
1839 Example: 1839 Example:
1840 . for lpr 1840 . for lpr
1841 '(\"-#3\" \"-l\") 1841 (\"-#3\" \"-l\")
1842 nil 1842 nil
1843 1843
1844NAME A string that specifies a text printer name. 1844NAME A string that specifies a text printer name.
@@ -1869,13 +1869,13 @@ Examples:
1869 1869
1870* On GNU or Unix system: 1870* On GNU or Unix system:
1871 1871
1872 '((prt_06a \"lpr\" nil \"prt_06a\") 1872 ((prt_06a \"lpr\" nil \"prt_06a\")
1873 (prt_07c nil nil \"prt_07c\") 1873 (prt_07c nil nil \"prt_07c\")
1874 ) 1874 )
1875 1875
1876* On Windows system: 1876* On Windows system:
1877 1877
1878 '((prt_06a \"print\" nil \"/D:\\\\\\\\printers\\\\prt_06a\") 1878 ((prt_06a \"print\" nil \"/D:\\\\\\\\printers\\\\prt_06a\")
1879 (prt_07c nil nil \"/D:\\\\\\\\printers\\\\prt_07c\") 1879 (prt_07c nil nil \"/D:\\\\\\\\printers\\\\prt_07c\")
1880 (PRN \"\" nil \"PRN\") 1880 (PRN \"\" nil \"PRN\")
1881 (standard \"redpr.exe\" nil \"\") 1881 (standard \"redpr.exe\" nil \"\")
@@ -1961,8 +1961,8 @@ Where:
1961SYMBOL It's a symbol to identify a PostScript printer. It's for 1961SYMBOL It's a symbol to identify a PostScript printer. It's for
1962 setting option `pr-ps-name' and for menu selection. 1962 setting option `pr-ps-name' and for menu selection.
1963 Examples: 1963 Examples:
1964 'prt_06a 1964 prt_06a
1965 'my_printer 1965 my_printer
1966 1966
1967COMMAND Name of the program for printing a PostScript file. On MS-DOS 1967COMMAND Name of the program for printing a PostScript file. On MS-DOS
1968 and MS-Windows systems, if the value is an empty string then 1968 and MS-Windows systems, if the value is an empty string then
@@ -1991,11 +1991,11 @@ SWITCHES List of sexp's to pass as extra options for PostScript printer
1991 instead of including an explicit switch on this list. 1991 instead of including an explicit switch on this list.
1992 Example: 1992 Example:
1993 . for lpr 1993 . for lpr
1994 '(\"-#3\" \"-l\") 1994 (\"-#3\" \"-l\")
1995 nil 1995 nil
1996 1996
1997 . for gsprint.exe 1997 . for gsprint.exe
1998 '(\"-all\" \"-twoup\") 1998 (\"-all\" \"-twoup\")
1999 1999
2000PRINTER-SWITCH A string that specifies PostScript printer name switch. If 2000PRINTER-SWITCH A string that specifies PostScript printer name switch. If
2001 it's necessary to have a space between PRINTER-SWITCH and NAME, 2001 it's necessary to have a space between PRINTER-SWITCH and NAME,
@@ -2057,9 +2057,9 @@ DEFAULT It's a way to set default values when this entry is selected.
2057 which the current setting inherits the context. Take care with 2057 which the current setting inherits the context. Take care with
2058 circular inheritance. 2058 circular inheritance.
2059 Examples: 2059 Examples:
2060 '(ps-landscape-mode . nil) 2060 (ps-landscape-mode . nil)
2061 '(ps-spool-duplex . t) 2061 (ps-spool-duplex . t)
2062 '(pr-gs-device . (my-gs-device t)) 2062 (pr-gs-device . (my-gs-device t))
2063 2063
2064This variable should be modified by customization engine. If this variable is 2064This variable should be modified by customization engine. If this variable is
2065modified by other means (for example, a lisp function), use `pr-update-menus' 2065modified by other means (for example, a lisp function), use `pr-update-menus'
@@ -2069,14 +2069,14 @@ Examples:
2069 2069
2070* On GNU or Unix system: 2070* On GNU or Unix system:
2071 2071
2072 '((lps_06b \"lpr\" nil \"-P\" \"lps_06b\") 2072 ((lps_06b \"lpr\" nil \"-P\" \"lps_06b\")
2073 (lps_07c \"lpr\" nil nil \"lps_07c\") 2073 (lps_07c \"lpr\" nil nil \"lps_07c\")
2074 (lps_08c nil nil nil \"lps_08c\") 2074 (lps_08c nil nil nil \"lps_08c\")
2075 ) 2075 )
2076 2076
2077* On Windows system: 2077* On Windows system:
2078 2078
2079 '((lps_06a \"print\" nil \"/D:\" \"\\\\\\\\printers\\\\lps_06a\") 2079 ((lps_06a \"print\" nil \"/D:\" \"\\\\\\\\printers\\\\lps_06a\")
2080 (lps_06b \"print\" nil nil \"\\\\\\\\printers\\\\lps_06b\") 2080 (lps_06b \"print\" nil nil \"\\\\\\\\printers\\\\lps_06b\")
2081 (lps_07c \"print\" nil \"\" \"/D:\\\\\\\\printers\\\\lps_07c\") 2081 (lps_07c \"print\" nil \"\" \"/D:\\\\\\\\printers\\\\lps_07c\")
2082 (lps_08c nil nil nil \"\\\\\\\\printers\\\\lps_08c\") 2082 (lps_08c nil nil nil \"\\\\\\\\printers\\\\lps_08c\")
@@ -2102,7 +2102,7 @@ Also the gsprint utility comes together with gsview distribution.
2102As an example of gsprint declaration: 2102As an example of gsprint declaration:
2103 2103
2104 (setq pr-ps-printer-alist 2104 (setq pr-ps-printer-alist
2105 '((A \"gsprint\" (\"-all\" \"-twoup\") \"-printer \" \"lps_015\") 2105 \\='((A \"gsprint\" (\"-all\" \"-twoup\") \"-printer \" \"lps_015\")
2106 (B \"gsprint\" (\"-all\" \"-twoup\") nil \"-printer lps_015\") 2106 (B \"gsprint\" (\"-all\" \"-twoup\") nil \"-printer lps_015\")
2107 ;; some other printer declaration 2107 ;; some other printer declaration
2108 )) 2108 ))
@@ -2594,9 +2594,9 @@ DEFAULT It's a way to set default values when this entry is selected.
2594 which the current setting inherits the context. Take care with 2594 which the current setting inherits the context. Take care with
2595 circular inheritance. 2595 circular inheritance.
2596 Examples: 2596 Examples:
2597 '(ps-landscape-mode . nil) 2597 (ps-landscape-mode . nil)
2598 '(ps-spool-duplex . t) 2598 (ps-spool-duplex . t)
2599 '(pr-gs-device . (my-gs-device t))" 2599 (pr-gs-device . (my-gs-device t))"
2600 :type '(repeat 2600 :type '(repeat
2601 (list 2601 (list
2602 :tag "" 2602 :tag ""
@@ -2690,8 +2690,8 @@ Where:
2690SYMBOL It's a symbol to identify a PostScript utility. It's for 2690SYMBOL It's a symbol to identify a PostScript utility. It's for
2691 `pr-ps-utility' variable setting and for menu selection. 2691 `pr-ps-utility' variable setting and for menu selection.
2692 Examples: 2692 Examples:
2693 'mpage 2693 mpage
2694 'psnup 2694 psnup
2695 2695
2696UTILITY Name of utility for processing a PostScript file. 2696UTILITY Name of utility for processing a PostScript file.
2697 See also `pr-path-alist'. 2697 See also `pr-path-alist'.
@@ -2708,7 +2708,7 @@ MUST-SWITCHES List of sexp's to pass as options to the PostScript utility
2708 program and must be placed before any other switches. 2708 program and must be placed before any other switches.
2709 Example: 2709 Example:
2710 . for psnup: 2710 . for psnup:
2711 '(\"-q\") 2711 (\"-q\")
2712 2712
2713PAPERSIZE It's a format string to specify paper size switch. 2713PAPERSIZE It's a format string to specify paper size switch.
2714 Example: 2714 Example:
@@ -2752,7 +2752,7 @@ SWITCHES List of sexp's to pass as extra options to the PostScript utility
2752 program. 2752 program.
2753 Example: 2753 Example:
2754 . for psnup 2754 . for psnup
2755 '(\"-q\") 2755 (\"-q\")
2756 nil 2756 nil
2757 2757
2758DEFAULT It's a way to set default values when this entry is selected. 2758DEFAULT It's a way to set default values when this entry is selected.
@@ -2772,9 +2772,9 @@ DEFAULT It's a way to set default values when this entry is selected.
2772 which the current setting inherits the context. Take care with 2772 which the current setting inherits the context. Take care with
2773 circular inheritance. 2773 circular inheritance.
2774 Examples: 2774 Examples:
2775 '(pr-file-landscape . nil) 2775 (pr-file-landscape . nil)
2776 '(pr-file-duplex . t) 2776 (pr-file-duplex . t)
2777 '(pr-gs-device . (my-gs-device t)) 2777 (pr-gs-device . (my-gs-device t))
2778 2778
2779This variable should be modified by customization engine. If this variable is 2779This variable should be modified by customization engine. If this variable is
2780modified by other means (for example, a lisp function), use `pr-update-menus' 2780modified by other means (for example, a lisp function), use `pr-update-menus'
@@ -2787,14 +2787,14 @@ Examples:
2787 2787
2788* On GNU or Unix system: 2788* On GNU or Unix system:
2789 2789
2790 '((mpage \"mpage\" nil \"-b%s\" \"-%d\" \"-l\" \"-t\" \"-T\" \">\" nil) 2790 ((mpage \"mpage\" nil \"-b%s\" \"-%d\" \"-l\" \"-t\" \"-T\" \">\" nil)
2791 (psnup \"psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \" nil 2791 (psnup \"psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \" nil
2792 (pr-file-duplex . nil) (pr-file-tumble . nil)) 2792 (pr-file-duplex . nil) (pr-file-tumble . nil))
2793 ) 2793 )
2794 2794
2795* On Windows system: 2795* On Windows system:
2796 2796
2797 '((psnup \"c:/psutils/psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \" 2797 ((psnup \"c:/psutils/psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \"
2798 nil (pr-file-duplex . nil) (pr-file-tumble . nil)) 2798 nil (pr-file-duplex . nil) (pr-file-tumble . nil))
2799 ) 2799 )
2800 2800
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index 611ba84e25b..d38a7cd7706 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -171,7 +171,7 @@ is the symbol being selected.
171 171
172Example value: 172Example value:
173 173
174 '((\"Emacs Lisp\" Info-goto-emacs-command-node obarray) 174 ((\"Emacs Lisp\" Info-goto-emacs-command-node obarray)
175 (\"Common Lisp\" common-lisp-hyperspec common-lisp-hyperspec-obarray) 175 (\"Common Lisp\" common-lisp-hyperspec common-lisp-hyperspec-obarray)
176 (\"SCWM\" scwm-documentation scwm-obarray))" 176 (\"SCWM\" scwm-documentation scwm-obarray))"
177 :group 'etags 177 :group 'etags
diff --git a/lisp/progmodes/hideshow.el b/lisp/progmodes/hideshow.el
index fb4d445b595..845abc09842 100644
--- a/lisp/progmodes/hideshow.el
+++ b/lisp/progmodes/hideshow.el
@@ -323,13 +323,13 @@ Hideshow puts a unique overlay on each range of text to be hidden
323in the buffer. Here is a simple example of how to use this variable: 323in the buffer. Here is a simple example of how to use this variable:
324 324
325 (defun display-code-line-counts (ov) 325 (defun display-code-line-counts (ov)
326 (when (eq 'code (overlay-get ov 'hs)) 326 (when (eq \\='code (overlay-get ov \\='hs))
327 (overlay-put ov 'display 327 (overlay-put ov \\='display
328 (format \"... / %d\" 328 (format \"... / %d\"
329 (count-lines (overlay-start ov) 329 (count-lines (overlay-start ov)
330 (overlay-end ov)))))) 330 (overlay-end ov))))))
331 331
332 (setq hs-set-up-overlay 'display-code-line-counts) 332 (setq hs-set-up-overlay \\='display-code-line-counts)
333 333
334This example shows how to get information from the overlay as well 334This example shows how to get information from the overlay as well
335as how to set its `display' property. See `hs-make-overlay' and 335as how to set its `display' property. See `hs-make-overlay' and
diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el
index 18299c7f116..daf919adb2f 100644
--- a/lisp/progmodes/idlwave.el
+++ b/lisp/progmodes/idlwave.el
@@ -1571,11 +1571,11 @@ Otherwise, if SELECT is non-nil then only an action is created.
1571 1571
1572Some examples: 1572Some examples:
1573No spaces before and 1 after a comma 1573No spaces before and 1 after a comma
1574 (idlwave-action-and-binding \",\" '(idlwave-surround 0 1)) 1574 (idlwave-action-and-binding \",\" \\='(idlwave-surround 0 1))
1575A minimum of 1 space before and after `=' (see `idlwave-expand-equal'). 1575A minimum of 1 space before and after `=' (see `idlwave-expand-equal').
1576 (idlwave-action-and-binding \"=\" '(idlwave-expand-equal -1 -1)) 1576 (idlwave-action-and-binding \"=\" \\='(idlwave-expand-equal -1 -1))
1577Capitalize system variables - action only 1577Capitalize system variables - action only
1578 (idlwave-action-and-binding idlwave-sysvar '(capitalize-word 1) t)" 1578 (idlwave-action-and-binding idlwave-sysvar \\='(capitalize-word 1) t)"
1579 (if (not (equal select 'noaction)) 1579 (if (not (equal select 'noaction))
1580 ;; Add action 1580 ;; Add action
1581 (let* ((table (if select 'idlwave-indent-action-table 1581 (let* ((table (if select 'idlwave-indent-action-table
diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el
index 18f445ca5cf..f46c8a99b67 100644
--- a/lisp/progmodes/sql.el
+++ b/lisp/progmodes/sql.el
@@ -2609,8 +2609,8 @@ of the current highlighting list.
2609 2609
2610For example: 2610For example:
2611 2611
2612 (sql-add-product-keywords 'ms 2612 (sql-add-product-keywords \\='ms
2613 '((\"\\\\b\\\\w+_t\\\\b\" . font-lock-type-face))) 2613 \\='((\"\\\\b\\\\w+_t\\\\b\" . font-lock-type-face)))
2614 2614
2615adds a fontification pattern to fontify identifiers ending in 2615adds a fontification pattern to fontify identifiers ending in
2616`_t' as data types." 2616`_t' as data types."
diff --git a/lisp/progmodes/verilog-mode.el b/lisp/progmodes/verilog-mode.el
index 76d85c68c99..caae746779e 100644
--- a/lisp/progmodes/verilog-mode.el
+++ b/lisp/progmodes/verilog-mode.el
@@ -12794,7 +12794,7 @@ Constant signals:
12794 is put into the AUTOSENSE list and is not desired, use the AUTO_CONSTANT 12794 is put into the AUTOSENSE list and is not desired, use the AUTO_CONSTANT
12795 declaration anywhere in the module (parenthesis are required): 12795 declaration anywhere in the module (parenthesis are required):
12796 12796
12797 /* AUTO_CONSTANT ( `this_is_really_constant_dont_autosense_it ) */ 12797 /* AUTO_CONSTANT ( \\=`this_is_really_constant_dont_autosense_it ) */
12798 12798
12799 Better yet, use a parameter, which will be understood to be constant 12799 Better yet, use a parameter, which will be understood to be constant
12800 automatically. 12800 automatically.
@@ -12810,16 +12810,16 @@ OOps!
12810An example: 12810An example:
12811 12811
12812 always @ (/*AS*/) begin 12812 always @ (/*AS*/) begin
12813 /* AUTO_CONSTANT (`constant) */ 12813 /* AUTO_CONSTANT (\\=`constant) */
12814 outin = ina | inb | `constant; 12814 outin = ina | inb | \\=`constant;
12815 out = outin; 12815 out = outin;
12816 end 12816 end
12817 12817
12818Typing \\[verilog-auto] will make this into: 12818Typing \\[verilog-auto] will make this into:
12819 12819
12820 always @ (/*AS*/ina or inb) begin 12820 always @ (/*AS*/ina or inb) begin
12821 /* AUTO_CONSTANT (`constant) */ 12821 /* AUTO_CONSTANT (\\=`constant) */
12822 outin = ina | inb | `constant; 12822 outin = ina | inb | \\=`constant;
12823 out = outin; 12823 out = outin;
12824 end 12824 end
12825 12825
@@ -12827,7 +12827,7 @@ Note in Verilog 2001, you can often get the same result from the new @*
12827operator. (This was added to the language in part due to AUTOSENSE!) 12827operator. (This was added to the language in part due to AUTOSENSE!)
12828 12828
12829 always @* begin 12829 always @* begin
12830 outin = ina | inb | `constant; 12830 outin = ina | inb | \\=`constant;
12831 out = outin; 12831 out = outin;
12832 end" 12832 end"
12833 (save-excursion 12833 (save-excursion
diff --git a/lisp/ps-print.el b/lisp/ps-print.el
index faafe9ce87f..218a02a7f6d 100644
--- a/lisp/ps-print.el
+++ b/lisp/ps-print.el
@@ -1953,7 +1953,7 @@ If you set option `ps-selected-pages', first the pages are
1953filtered by option `ps-selected-pages' and then by `ps-even-or-odd-pages'. 1953filtered by option `ps-selected-pages' and then by `ps-even-or-odd-pages'.
1954For example, if we have: 1954For example, if we have:
1955 1955
1956 (setq ps-selected-pages '(1 4 (6 . 10) (12 . 16) 20)) 1956 (setq ps-selected-pages \\='(1 4 (6 . 10) (12 . 16) 20))
1957 1957
1958Combining with `ps-even-or-odd-pages' and option `ps-n-up-printing', we have: 1958Combining with `ps-even-or-odd-pages' and option `ps-n-up-printing', we have:
1959 1959
@@ -2249,9 +2249,9 @@ X, Y, XSCALE, YSCALE and ROTATION may be a floating point number, an integer
2249number or a string. If it is a string, the string should contain PostScript 2249number or a string. If it is a string, the string should contain PostScript
2250programming that returns a float or integer value. 2250programming that returns a float or integer value.
2251 2251
2252For example, if you wish to print an EPS image on all pages do: 2252For example, if you wish to print an EPS image on all pages use:
2253 2253
2254 '((\"~/images/EPS-image.ps\"))" 2254 ((\"~/images/EPS-image.ps\"))"
2255 :type '(repeat 2255 :type '(repeat
2256 (list 2256 (list
2257 (file :tag "EPS File") 2257 (file :tag "EPS File")
@@ -2300,9 +2300,9 @@ X, Y, FONTSIZE, GRAY and ROTATION may be a floating point number, an integer
2300number or a string. If it is a string, the string should contain PostScript 2300number or a string. If it is a string, the string should contain PostScript
2301programming that returns a float or integer value. 2301programming that returns a float or integer value.
2302 2302
2303For example, if you wish to print text \"Preliminary\" on all pages do: 2303For example, if you wish to print text \"Preliminary\" on all pages use:
2304 2304
2305 '((\"Preliminary\"))" 2305 ((\"Preliminary\"))"
2306 :type '(repeat 2306 :type '(repeat
2307 (list 2307 (list
2308 (string :tag "Text") 2308 (string :tag "Text")
diff --git a/lisp/server.el b/lisp/server.el
index 57c16af0cd5..b16a06e79f0 100644
--- a/lisp/server.el
+++ b/lisp/server.el
@@ -1649,7 +1649,7 @@ only these files will be asked to be saved."
1649 "Contact the Emacs server named SERVER and evaluate FORM there. 1649 "Contact the Emacs server named SERVER and evaluate FORM there.
1650Returns the result of the evaluation, or signals an error if it 1650Returns the result of the evaluation, or signals an error if it
1651cannot contact the specified server. For example: 1651cannot contact the specified server. For example:
1652 (server-eval-at \"server\" '(emacs-pid)) 1652 (server-eval-at \"server\" \\='(emacs-pid))
1653returns the process ID of the Emacs instance running \"server\"." 1653returns the process ID of the Emacs instance running \"server\"."
1654 (let* ((server-dir (if server-use-tcp server-auth-dir server-socket-dir)) 1654 (let* ((server-dir (if server-use-tcp server-auth-dir server-socket-dir))
1655 (server-file (expand-file-name server server-dir)) 1655 (server-file (expand-file-name server server-dir))
diff --git a/lisp/ses.el b/lisp/ses.el
index 0bc43ec8b58..ec1359bbbcb 100644
--- a/lisp/ses.el
+++ b/lisp/ses.el
@@ -1491,11 +1491,11 @@ by (ROWINCR,COLINCR)."
1491 "Produce a copy of FORMULA where all symbols that refer to cells in row 1491 "Produce a copy of FORMULA where all symbols that refer to cells in row
1492STARTROW or above, and col STARTCOL or above, are altered by adding ROWINCR 1492STARTROW or above, and col STARTCOL or above, are altered by adding ROWINCR
1493and COLINCR. STARTROW and STARTCOL are 0-based. Example: 1493and COLINCR. STARTROW and STARTCOL are 0-based. Example:
1494 (ses-relocate-formula '(+ A1 B2 D3) 1 2 1 -1) 1494 (ses-relocate-formula \\='(+ A1 B2 D3) 1 2 1 -1)
1495 => (+ A1 B2 C4) 1495 => (+ A1 B2 C4)
1496If ROWINCR or COLINCR is negative, references to cells being deleted are 1496If ROWINCR or COLINCR is negative, references to cells being deleted are
1497removed. Example: 1497removed. Example:
1498 (ses-relocate-formula '(+ A1 B2 D3) 0 1 0 -1) 1498 (ses-relocate-formula \\='(+ A1 B2 D3) 0 1 0 -1)
1499 => (+ A1 C3) 1499 => (+ A1 C3)
1500Sets `ses-relocate-return' to 'delete if cell-references were removed." 1500Sets `ses-relocate-return' to 'delete if cell-references were removed."
1501 (let (rowcol result) 1501 (let (rowcol result)
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el
index 93b31d5c86c..9c50eca6419 100644
--- a/lisp/textmodes/table.el
+++ b/lisp/textmodes/table.el
@@ -3349,17 +3349,17 @@ Example:
3349 (progn 3349 (progn
3350 (table-insert 16 3 5 1) 3350 (table-insert 16 3 5 1)
3351 (table-forward-cell 15) 3351 (table-forward-cell 15)
3352 (table-insert-sequence \"D0\" -16 1 1 'center) 3352 (table-insert-sequence \"D0\" -16 1 1 \\='center)
3353 (table-forward-cell 16) 3353 (table-forward-cell 16)
3354 (table-insert-sequence \"A[0]\" -16 1 1 'center) 3354 (table-insert-sequence \"A[0]\" -16 1 1 \\='center)
3355 (table-forward-cell 1) 3355 (table-forward-cell 1)
3356 (table-insert-sequence \"-\" 16 0 1 'center)) 3356 (table-insert-sequence \"-\" 16 0 1 \\='center))
3357 3357
3358 (progn 3358 (progn
3359 (table-insert 16 8 5 1) 3359 (table-insert 16 8 5 1)
3360 (table-insert-sequence \"@\" 0 1 2 'right) 3360 (table-insert-sequence \"@\" 0 1 2 \\='right)
3361 (table-forward-cell 1) 3361 (table-forward-cell 1)
3362 (table-insert-sequence \"64\" 0 1 2 'left))" 3362 (table-insert-sequence \"64\" 0 1 2 \\='left))"
3363 (interactive 3363 (interactive
3364 (progn 3364 (progn
3365 (barf-if-buffer-read-only) 3365 (barf-if-buffer-read-only)
diff --git a/lisp/textmodes/tildify.el b/lisp/textmodes/tildify.el
index 4e385a0fbd3..c94e417a7ea 100644
--- a/lisp/textmodes/tildify.el
+++ b/lisp/textmodes/tildify.el
@@ -291,8 +291,8 @@ BEG argument is ignored.
291This function is meant to be used to set `tildify-foreach-region-function' 291This function is meant to be used to set `tildify-foreach-region-function'
292variable. For example, for an XML file one might use: 292variable. For example, for an XML file one might use:
293 (setq-local tildify-foreach-region-function 293 (setq-local tildify-foreach-region-function
294 (apply-partially 'tildify-foreach-ignore-environments 294 (apply-partially \\='tildify-foreach-ignore-environments
295 '((\"<! *--\" . \"-- *>\") (\"<\" . \">\"))))" 295 \\='((\"<! *--\" . \"-- *>\") (\"<\" . \">\"))))"
296 (let ((beg-re (concat "\\(?:" (mapconcat 'car pairs "\\)\\|\\(?:") "\\)")) 296 (let ((beg-re (concat "\\(?:" (mapconcat 'car pairs "\\)\\|\\(?:") "\\)"))
297 p end-re) 297 p end-re)
298 (save-excursion 298 (save-excursion
diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el
index 0c8f4af58e1..b64de4759d7 100644
--- a/lisp/wid-edit.el
+++ b/lisp/wid-edit.el
@@ -3477,10 +3477,10 @@ themselves. A list, for example, is defined as either nil, or a cons
3477cell whose cdr itself is a list. The obvious way to translate this 3477cell whose cdr itself is a list. The obvious way to translate this
3478into a widget type would be 3478into a widget type would be
3479 3479
3480 (define-widget 'my-list 'choice 3480 (define-widget \\='my-list \\='choice
3481 \"A list of sexps.\" 3481 \"A list of sexps.\"
3482 :tag \"Sexp list\" 3482 :tag \"Sexp list\"
3483 :args '((const nil) (cons :value (nil) sexp my-list))) 3483 :args \\='((const nil) (cons :value (nil) sexp my-list)))
3484 3484
3485Here we attempt to define my-list as a choice of either the constant 3485Here we attempt to define my-list as a choice of either the constant
3486nil, or a cons-cell containing a sexp and my-lisp. This will not work 3486nil, or a cons-cell containing a sexp and my-lisp. This will not work
@@ -3489,10 +3489,10 @@ because the `choice' widget does not allow recursion.
3489Using the `lazy' widget you can overcome this problem, as in this 3489Using the `lazy' widget you can overcome this problem, as in this
3490example: 3490example:
3491 3491
3492 (define-widget 'sexp-list 'lazy 3492 (define-widget \\='sexp-list \\='lazy
3493 \"A list of sexps.\" 3493 \"A list of sexps.\"
3494 :tag \"Sexp list\" 3494 :tag \"Sexp list\"
3495 :type '(choice (const nil) (cons :value (nil) sexp sexp-list)))" 3495 :type \\='(choice (const nil) (cons :value (nil) sexp sexp-list)))"
3496 :format "%{%t%}: %v" 3496 :format "%{%t%}: %v"
3497 ;; We don't convert :type because we want to allow recursive 3497 ;; We don't convert :type because we want to allow recursive
3498 ;; data structures. This is slow, so we should not create speed 3498 ;; data structures. This is slow, so we should not create speed
diff --git a/src/category.c b/src/category.c
index ab90f5ff093..bb4a75d3a4d 100644
--- a/src/category.c
+++ b/src/category.c
@@ -491,7 +491,7 @@ between C1 and C2.
491 491
492For instance, to tell that there's a word boundary between Hiragana 492For instance, to tell that there's a word boundary between Hiragana
493and Katakana (both are in the same script `kana'), 493and Katakana (both are in the same script `kana'),
494the element `(?H . ?K) should be in this list. */); 494the element `(?H . ?K)' should be in this list. */);
495 495
496 Vword_combining_categories = Qnil; 496 Vword_combining_categories = Qnil;
497 497