diff options
| author | Paul Eggert | 2015-08-20 17:33:48 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-08-20 17:34:57 -0700 |
| commit | 760701ebe1b2061619c91c72d41666d3bd42366f (patch) | |
| tree | 6a34543480af4f7c030d344c408d5eae54b6f318 | |
| parent | daf390b5e927ef87d6d3ccad793cc3fb389acd30 (diff) | |
| download | emacs-760701ebe1b2061619c91c72d41666d3bd42366f.tar.gz emacs-760701ebe1b2061619c91c72d41666d3bd42366f.zip | |
Don't quote symbols 'like-this' in docstrings etc.
* admin/unidata/uvs.el (uvs-insert-fields-as-bytes):
* lisp/allout-widgets.el (allout-widgets-count-buttons-in-region):
* lisp/allout.el (allout-add-resumptions, allout-mode):
* lisp/calculator.el (calculator-operators):
* lisp/cedet/data-debug.el (dd-propertize):
* lisp/cedet/ede/proj-prog.el (ede-proj-target-makefile-program):
* lisp/cedet/semantic/analyze/debug.el:
(semantic-analyzer-debug-global-miss-text):
* lisp/cedet/semantic/lex-spp.el:
(semantic-lex-spp-replace-or-symbol-or-keyword):
* lisp/cedet/semantic/symref.el:
(semantic-symref-cleanup-recent-buffers-fcn):
* lisp/cedet/semantic/tag.el (semantic-tag-class):
* lisp/cedet/srecode/el.el (srecode-semantic-handle-:el-custom):
* lisp/gnus/nnmairix.el (nnmairix-propagate-marks-upon-close):
* lisp/gnus/pop3.el (pop3-authentication-scheme):
* lisp/help-fns.el (describe-function-orig-buffer):
* lisp/imenu.el (imenu--history-list):
* lisp/mail/feedmail.el (feedmail-confirm-outgoing)
(feedmail-display-full-frame, feedmail-deduce-bcc-where)
(feedmail-queue-default-file-slug)
(feedmail-queue-buffer-file-name):
* lisp/net/mairix.el (mairix-searches-mode-map):
* lisp/net/newst-backend.el (newsticker-retrieval-method)
(newsticker-auto-mark-filter-list):
* lisp/obsolete/vi.el (vi-mode):
* lisp/progmodes/cc-engine.el (c-literal-type):
* lisp/progmodes/cpp.el (cpp-face):
* lisp/progmodes/ebrowse.el (ebrowse-electric-list-looper):
* lisp/progmodes/elisp-mode.el (elisp--xref-make-xref):
* lisp/progmodes/pascal.el (pascal-auto-lineup):
* lisp/progmodes/prog-mode.el (prog-widen):
* lisp/progmodes/verilog-mode.el (verilog-regexp-words)
(verilog-auto-lineup, verilog-auto-reset-widths)
(verilog-auto-arg-format, verilog-auto-inst-template-numbers):
* lisp/textmodes/flyspell.el (flyspell-maybe-correct-transposition)
(flyspell-maybe-correct-doubling):
* lisp/textmodes/table.el (table-justify, table-justify-cell)
(table-justify-row, table-justify-column, table-insert-sequence)
(table--justify-cell-contents):
* lisp/url/url-auth.el (url-get-authentication):
* lisp/window.el (display-buffer-record-window):
* lisp/xml.el (xml-parse-file, xml-parse-region):
* src/gfilenotify.c (Fgfile_add_watch):
Don't quote symbols with apostrophes in doc strings.
Use asymmetric quotes instead.
* lisp/cedet/semantic/complete.el (semantic-displayor-show-request):
Likewise for symbol in diagnostic.
* lisp/image.el (image-extension-data):
* lisp/register.el (frame-configuration-to-register):
* src/buffer.c (syms_of_buffer):
Remove bogus apostrophes after symbols.
* lisp/thumbs.el (thumbs-conversion-program):
Quote Lisp string values using double-quotes, not apostrophes.
37 files changed, 103 insertions, 103 deletions
diff --git a/admin/unidata/uvs.el b/admin/unidata/uvs.el index a6beac97db4..8d3ffe20699 100644 --- a/admin/unidata/uvs.el +++ b/admin/unidata/uvs.el | |||
| @@ -114,7 +114,7 @@ The most significant byte comes first." | |||
| 114 | "Insert VALUES for FIELDS as a sequence of bytes to the current buffer. | 114 | "Insert VALUES for FIELDS as a sequence of bytes to the current buffer. |
| 115 | VALUES and FIELDS are lists of integers and field symbols, | 115 | VALUES and FIELDS are lists of integers and field symbols, |
| 116 | respectively. Byte length of each value is determined by the | 116 | respectively. Byte length of each value is determined by the |
| 117 | 'uvs-field-size' property of the corresponding field." | 117 | `uvs-field-size' property of the corresponding field." |
| 118 | (while fields | 118 | (while fields |
| 119 | (let ((field (car fields)) | 119 | (let ((field (car fields)) |
| 120 | (value (car values))) | 120 | (value (car values))) |
diff --git a/lisp/allout-widgets.el b/lisp/allout-widgets.el index c6dba89e31a..578510d6919 100644 --- a/lisp/allout-widgets.el +++ b/lisp/allout-widgets.el | |||
| @@ -2372,7 +2372,7 @@ The elements of LIST are not copied, just the list structure itself." | |||
| 2372 | (car list))) | 2372 | (car list))) |
| 2373 | ;;;_ . allout-widgets-count-buttons-in-region (start end) | 2373 | ;;;_ . allout-widgets-count-buttons-in-region (start end) |
| 2374 | (defun allout-widgets-count-buttons-in-region (start end) | 2374 | (defun allout-widgets-count-buttons-in-region (start end) |
| 2375 | "Debugging/diagnostic tool - count overlays with 'button' property in region." | 2375 | "Debugging/diagnostic tool - count overlays with `button' property in region." |
| 2376 | (interactive "r") | 2376 | (interactive "r") |
| 2377 | (setq start (or start (point-min)) | 2377 | (setq start (or start (point-min)) |
| 2378 | end (or end (point-max))) | 2378 | end (or end (point-max))) |
diff --git a/lisp/allout.el b/lisp/allout.el index 025cb17c203..5c43f9bb5d4 100644 --- a/lisp/allout.el +++ b/lisp/allout.el | |||
| @@ -1330,11 +1330,11 @@ cdr is the new value: '(some-var some-value)'. The pairs can actually be | |||
| 1330 | triples, where the third element qualifies the disposition of the setting, | 1330 | triples, where the third element qualifies the disposition of the setting, |
| 1331 | as described further below. | 1331 | as described further below. |
| 1332 | 1332 | ||
| 1333 | If the optional third element is the symbol 'extend, then the new value | 1333 | If the optional third element is the symbol `extend', then the new value |
| 1334 | created by `cons'ing the second element of the pair onto the front of the | 1334 | created by `cons'ing the second element of the pair onto the front of the |
| 1335 | existing value. | 1335 | existing value. |
| 1336 | 1336 | ||
| 1337 | If the optional third element is the symbol 'append, then the new value is | 1337 | If the optional third element is the symbol `append', then the new value is |
| 1338 | extended from the existing one by `append'ing a list containing the second | 1338 | extended from the existing one by `append'ing a list containing the second |
| 1339 | element of the pair onto the end of the existing value. | 1339 | element of the pair onto the end of the existing value. |
| 1340 | 1340 | ||
| @@ -1838,7 +1838,7 @@ M-x outlineify-sticky Activate outline mode for current buffer, | |||
| 1838 | buffer with name derived from derived from that | 1838 | buffer with name derived from derived from that |
| 1839 | of current buffer -- \"*BUFFERNAME exposed*\". | 1839 | of current buffer -- \"*BUFFERNAME exposed*\". |
| 1840 | \\[allout-flatten-exposed-to-buffer] `allout-flatten-exposed-to-buffer' | 1840 | \\[allout-flatten-exposed-to-buffer] `allout-flatten-exposed-to-buffer' |
| 1841 | Like above 'copy-exposed', but convert topic | 1841 | Like above `copy-exposed', but convert topic |
| 1842 | prefixes to section.subsection... numeric | 1842 | prefixes to section.subsection... numeric |
| 1843 | format. | 1843 | format. |
| 1844 | \\[customize-variable] allout-auto-activation | 1844 | \\[customize-variable] allout-auto-activation |
diff --git a/lisp/calculator.el b/lisp/calculator.el index 4027887fb07..55229bc03fb 100644 --- a/lisp/calculator.el +++ b/lisp/calculator.el | |||
| @@ -311,7 +311,7 @@ user-defined operators, use `calculator-user-operators' instead.") | |||
| 311 | 9 (highest) (optional, defaults to 1); | 311 | 9 (highest) (optional, defaults to 1); |
| 312 | 312 | ||
| 313 | It it possible have a unary prefix version of a binary operator if it | 313 | It it possible have a unary prefix version of a binary operator if it |
| 314 | comes later in this list. If the list begins with the symbol 'nobind, | 314 | comes later in this list. If the list begins with the symbol `nobind', |
| 315 | then no key binding will take place -- this is only useful for | 315 | then no key binding will take place -- this is only useful for |
| 316 | predefined keys. | 316 | predefined keys. |
| 317 | 317 | ||
diff --git a/lisp/cedet/data-debug.el b/lisp/cedet/data-debug.el index 8a8af4e184d..300bd04600b 100644 --- a/lisp/cedet/data-debug.el +++ b/lisp/cedet/data-debug.el | |||
| @@ -55,7 +55,7 @@ | |||
| 55 | (defalias 'data-debug-overlay-p 'extentp) | 55 | (defalias 'data-debug-overlay-p 'extentp) |
| 56 | (if (not (fboundp 'propertize)) | 56 | (if (not (fboundp 'propertize)) |
| 57 | (defun dd-propertize (string &rest properties) | 57 | (defun dd-propertize (string &rest properties) |
| 58 | "Mimic 'propertize' in from Emacs 23." | 58 | "Mimic `propertize' in from Emacs 23." |
| 59 | (add-text-properties 0 (length string) properties string) | 59 | (add-text-properties 0 (length string) properties string) |
| 60 | string | 60 | string |
| 61 | ) | 61 | ) |
diff --git a/lisp/cedet/ede/proj-prog.el b/lisp/cedet/ede/proj-prog.el index b1b26d4d1f4..a59317cf99a 100644 --- a/lisp/cedet/ede/proj-prog.el +++ b/lisp/cedet/ede/proj-prog.el | |||
| @@ -62,7 +62,7 @@ specified with ldlibs.") | |||
| 62 | "Libraries, such as \"m\" or \"Xt\" which this program depends on. | 62 | "Libraries, such as \"m\" or \"Xt\" which this program depends on. |
| 63 | The linker flag \"-l\" is automatically prepended. Do not include a \"lib\" | 63 | The linker flag \"-l\" is automatically prepended. Do not include a \"lib\" |
| 64 | prefix, or a \".so\" suffix. | 64 | prefix, or a \".so\" suffix. |
| 65 | Use the 'ldflags' slot to specify where in-project libraries might be. | 65 | Use the `ldflags' slot to specify where in-project libraries might be. |
| 66 | 66 | ||
| 67 | Note: Currently only used for Automake projects." | 67 | Note: Currently only used for Automake projects." |
| 68 | ) | 68 | ) |
diff --git a/lisp/cedet/semantic/analyze/debug.el b/lisp/cedet/semantic/analyze/debug.el index 9f9270f8543..d0ab7c82c13 100644 --- a/lisp/cedet/semantic/analyze/debug.el +++ b/lisp/cedet/semantic/analyze/debug.el | |||
| @@ -512,7 +512,7 @@ Optional argument CLASSCONSTRAINT says to output to tags of that class." | |||
| 512 | ) | 512 | ) |
| 513 | 513 | ||
| 514 | (defun semantic-analyzer-debug-global-miss-text (name-in) | 514 | (defun semantic-analyzer-debug-global-miss-text (name-in) |
| 515 | "Use 'princ' to show text describing not finding symbol NAME-IN. | 515 | "Use `princ' to show text describing not finding symbol NAME-IN. |
| 516 | NAME is the name of the unfound symbol." | 516 | NAME is the name of the unfound symbol." |
| 517 | (let ((name (cond ((stringp name-in) | 517 | (let ((name (cond ((stringp name-in) |
| 518 | name-in) | 518 | name-in) |
diff --git a/lisp/cedet/semantic/complete.el b/lisp/cedet/semantic/complete.el index 1e121906a04..509f8020c2a 100644 --- a/lisp/cedet/semantic/complete.el +++ b/lisp/cedet/semantic/complete.el | |||
| @@ -1665,7 +1665,7 @@ Display mechanism using tooltip for a list of possible completions.") | |||
| 1665 | (when (>= (oref obj typing-count) 5) | 1665 | (when (>= (oref obj typing-count) 5) |
| 1666 | (oset obj mode 'standard) | 1666 | (oset obj mode 'standard) |
| 1667 | (setq mode 'standard) | 1667 | (setq mode 'standard) |
| 1668 | (message "Resetting inline-mode to 'standard'.")) | 1668 | (message "Resetting inline-mode to ‘standard’.")) |
| 1669 | (when (and (> numcompl max-tags) | 1669 | (when (and (> numcompl max-tags) |
| 1670 | (< (oref obj typing-count) 2)) | 1670 | (< (oref obj typing-count) 2)) |
| 1671 | ;; Discretely hint at completion availability. | 1671 | ;; Discretely hint at completion availability. |
diff --git a/lisp/cedet/semantic/lex-spp.el b/lisp/cedet/semantic/lex-spp.el index 0aa2f9504d9..761cc1af5ed 100644 --- a/lisp/cedet/semantic/lex-spp.el +++ b/lisp/cedet/semantic/lex-spp.el | |||
| @@ -919,7 +919,7 @@ STR occurs in the current buffer between BEG and END." | |||
| 919 | )) | 919 | )) |
| 920 | 920 | ||
| 921 | (define-lex-regex-analyzer semantic-lex-spp-replace-or-symbol-or-keyword | 921 | (define-lex-regex-analyzer semantic-lex-spp-replace-or-symbol-or-keyword |
| 922 | "Like 'semantic-lex-symbol-or-keyword' plus preprocessor macro replacement." | 922 | "Like `semantic-lex-symbol-or-keyword' plus preprocessor macro replacement." |
| 923 | "\\(\\sw\\|\\s_\\)+" | 923 | "\\(\\sw\\|\\s_\\)+" |
| 924 | (let ((str (match-string 0)) | 924 | (let ((str (match-string 0)) |
| 925 | (beg (match-beginning 0)) | 925 | (beg (match-beginning 0)) |
diff --git a/lisp/cedet/semantic/symref.el b/lisp/cedet/semantic/symref.el index ca5dd7dd073..89e8b40632d 100644 --- a/lisp/cedet/semantic/symref.el +++ b/lisp/cedet/semantic/symref.el | |||
| @@ -337,7 +337,7 @@ Use the `semantic-symref-hit-tags' method to get this list.") | |||
| 337 | "List of buffers opened by `semantic-symref-result-get-tags'.") | 337 | "List of buffers opened by `semantic-symref-result-get-tags'.") |
| 338 | 338 | ||
| 339 | (defun semantic-symref-cleanup-recent-buffers-fcn () | 339 | (defun semantic-symref-cleanup-recent-buffers-fcn () |
| 340 | "Hook function to be used in 'post-command-hook' to cleanup buffers. | 340 | "Hook function to be used in `post-command-hook' to cleanup buffers. |
| 341 | Buffers collected during symref can result in some files being | 341 | Buffers collected during symref can result in some files being |
| 342 | opened multiple times for one operation. This will keep buffers open | 342 | opened multiple times for one operation. This will keep buffers open |
| 343 | until the next command is executed." | 343 | until the next command is executed." |
diff --git a/lisp/cedet/semantic/tag.el b/lisp/cedet/semantic/tag.el index 545ca914d19..6c6616d7009 100644 --- a/lisp/cedet/semantic/tag.el +++ b/lisp/cedet/semantic/tag.el | |||
| @@ -95,7 +95,7 @@ print statement." | |||
| 95 | 95 | ||
| 96 | (defsubst semantic-tag-class (tag) | 96 | (defsubst semantic-tag-class (tag) |
| 97 | "Return the class of TAG. | 97 | "Return the class of TAG. |
| 98 | That is, the symbol 'variable, 'function, 'type, or other. | 98 | This is a symbol like `variable', `function', or `type'. |
| 99 | There is no limit to the symbols that may represent the class of a tag. | 99 | There is no limit to the symbols that may represent the class of a tag. |
| 100 | Each parser generates tags with classes defined by it. | 100 | Each parser generates tags with classes defined by it. |
| 101 | 101 | ||
diff --git a/lisp/cedet/srecode/el.el b/lisp/cedet/srecode/el.el index 2bdf804d858..7e91a612638 100644 --- a/lisp/cedet/srecode/el.el +++ b/lisp/cedet/srecode/el.el | |||
| @@ -50,7 +50,7 @@ Adds the following: | |||
| 50 | (defun srecode-semantic-handle-:el-custom (dict) | 50 | (defun srecode-semantic-handle-:el-custom (dict) |
| 51 | "Add macros into the dictionary DICT based on the current Emacs Lisp file. | 51 | "Add macros into the dictionary DICT based on the current Emacs Lisp file. |
| 52 | Adds the following: | 52 | Adds the following: |
| 53 | GROUP - The 'defgroup' name we guess you want for variables. | 53 | GROUP - The `defgroup' name we guess you want for variables. |
| 54 | FACEGROUP - The `defgroup' name you might want for faces." | 54 | FACEGROUP - The `defgroup' name you might want for faces." |
| 55 | (require 'semantic/db-find) | 55 | (require 'semantic/db-find) |
| 56 | (let ((groups (semanticdb-strip-find-results | 56 | (let ((groups (semanticdb-strip-find-results |
diff --git a/lisp/gnus/nnmairix.el b/lisp/gnus/nnmairix.el index 96b40e5b845..0a4dbff9ff4 100644 --- a/lisp/gnus/nnmairix.el +++ b/lisp/gnus/nnmairix.el | |||
| @@ -311,7 +311,7 @@ The default chooses the largest window in the current frame." | |||
| 311 | The default of this variable is t. If set to 'ask, the | 311 | The default of this variable is t. If set to 'ask, the |
| 312 | user will be asked if the flags should be propagated when the | 312 | user will be asked if the flags should be propagated when the |
| 313 | group is closed. If set to nil, the user will have to manually | 313 | group is closed. If set to nil, the user will have to manually |
| 314 | call 'nnmairix-propagate-marks'." | 314 | call `nnmairix-propagate-marks'." |
| 315 | :version "23.1" | 315 | :version "23.1" |
| 316 | :type '(choice (const :tag "always" t) | 316 | :type '(choice (const :tag "always" t) |
| 317 | (const :tag "ask" ask) | 317 | (const :tag "ask" ask) |
diff --git a/lisp/gnus/pop3.el b/lisp/gnus/pop3.el index 4d9dfdaf2aa..696c6e46b70 100644 --- a/lisp/gnus/pop3.el +++ b/lisp/gnus/pop3.el | |||
| @@ -82,7 +82,7 @@ | |||
| 82 | (defcustom pop3-authentication-scheme 'pass | 82 | (defcustom pop3-authentication-scheme 'pass |
| 83 | "*POP3 authentication scheme. | 83 | "*POP3 authentication scheme. |
| 84 | Defaults to `pass', for the standard USER/PASS authentication. The other | 84 | Defaults to `pass', for the standard USER/PASS authentication. The other |
| 85 | valid value is 'apop'." | 85 | valid value is `apop'." |
| 86 | :type '(choice (const :tag "Normal user/password" pass) | 86 | :type '(choice (const :tag "Normal user/password" pass) |
| 87 | (const :tag "APOP" apop)) | 87 | (const :tag "APOP" apop)) |
| 88 | :version "22.1" ;; Oort Gnus | 88 | :version "22.1" ;; Oort Gnus |
diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 71bcdb6e759..8ed9a477399 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el | |||
| @@ -44,7 +44,7 @@ The functions will receive the function name as argument.") | |||
| 44 | ;; Functions | 44 | ;; Functions |
| 45 | 45 | ||
| 46 | (defvar describe-function-orig-buffer nil | 46 | (defvar describe-function-orig-buffer nil |
| 47 | "Buffer that was current when 'describe-function' was invoked. | 47 | "Buffer that was current when `describe-function' was invoked. |
| 48 | Functions on 'help-fns-describe-function-functions' can use this | 48 | Functions on 'help-fns-describe-function-functions' can use this |
| 49 | to get buffer-local values.") | 49 | to get buffer-local values.") |
| 50 | 50 | ||
diff --git a/lisp/image.el b/lisp/image.el index 1c268c4fb08..99a65e3258f 100644 --- a/lisp/image.el +++ b/lisp/image.el | |||
| @@ -357,7 +357,7 @@ Optional DATA-P non-nil means SOURCE is a string containing image data." | |||
| 357 | 357 | ||
| 358 | (if (fboundp 'image-metadata) ; eg not --without-x | 358 | (if (fboundp 'image-metadata) ; eg not --without-x |
| 359 | (define-obsolete-function-alias 'image-extension-data | 359 | (define-obsolete-function-alias 'image-extension-data |
| 360 | 'image-metadata' "24.1")) | 360 | 'image-metadata "24.1")) |
| 361 | 361 | ||
| 362 | (define-obsolete-variable-alias | 362 | (define-obsolete-variable-alias |
| 363 | 'image-library-alist | 363 | 'image-library-alist |
diff --git a/lisp/imenu.el b/lisp/imenu.el index 3a856b88397..158718b08a9 100644 --- a/lisp/imenu.el +++ b/lisp/imenu.el | |||
| @@ -476,7 +476,7 @@ element recalculates the buffer's index alist.") | |||
| 476 | 476 | ||
| 477 | (defvar imenu--history-list nil | 477 | (defvar imenu--history-list nil |
| 478 | ;; Making this buffer local caused it not to work! | 478 | ;; Making this buffer local caused it not to work! |
| 479 | "History list for 'jump-to-function-in-buffer'.") | 479 | "History list for `jump-to-function-in-buffer'.") |
| 480 | 480 | ||
| 481 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 481 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 482 | ;;; | 482 | ;;; |
diff --git a/lisp/mail/feedmail.el b/lisp/mail/feedmail.el index 7f27599edf2..857cfcc05e6 100644 --- a/lisp/mail/feedmail.el +++ b/lisp/mail/feedmail.el | |||
| @@ -399,10 +399,10 @@ | |||
| 399 | "If non-nil, give a y-or-n confirmation prompt before sending mail. | 399 | "If non-nil, give a y-or-n confirmation prompt before sending mail. |
| 400 | This is done after the message is completely prepped, and you'll be | 400 | This is done after the message is completely prepped, and you'll be |
| 401 | looking at the top of the message in a buffer when you get the prompt. | 401 | looking at the top of the message in a buffer when you get the prompt. |
| 402 | If set to the symbol 'queued, give the confirmation prompt only while | 402 | If set to the symbol `queued', give the confirmation prompt only while |
| 403 | running the queue (however, the prompt is always suppressed if you are | 403 | running the queue (however, the prompt is always suppressed if you are |
| 404 | processing the queue via `feedmail-run-the-queue-no-prompts'). If set | 404 | processing the queue via `feedmail-run-the-queue-no-prompts'). If set |
| 405 | to the symbol 'immediate, give the confirmation prompt only when | 405 | to the symbol `immediate', give the confirmation prompt only when |
| 406 | sending immediately. For any other non-nil value, prompt in both | 406 | sending immediately. For any other non-nil value, prompt in both |
| 407 | cases. You can give a timeout for the prompt; see variable | 407 | cases. You can give a timeout for the prompt; see variable |
| 408 | `feedmail-confirm-outgoing-timeout'." | 408 | `feedmail-confirm-outgoing-timeout'." |
| @@ -418,9 +418,9 @@ cases. You can give a timeout for the prompt; see variable | |||
| 418 | If nil, the prepped message will be shown, for confirmation or | 418 | If nil, the prepped message will be shown, for confirmation or |
| 419 | otherwise, in some window in the current frame without resizing | 419 | otherwise, in some window in the current frame without resizing |
| 420 | anything. That may or may not display enough of the message to | 420 | anything. That may or may not display enough of the message to |
| 421 | distinguish it from others. If set to the symbol 'queued, take | 421 | distinguish it from others. If set to the symbol ‘queued’, take |
| 422 | this action only when running the queue. If set to the symbol | 422 | this action only when running the queue. If set to the symbol |
| 423 | 'immediate, take this action only when sending immediately. For | 423 | ‘immediate’, take this action only when sending immediately. For |
| 424 | any other non-nil value, take the action in both cases. Even if | 424 | any other non-nil value, take the action in both cases. Even if |
| 425 | you're not confirming the sending of immediate or queued messages, | 425 | you're not confirming the sending of immediate or queued messages, |
| 426 | it can still be interesting to see a lot about them as they are | 426 | it can still be interesting to see a lot about them as they are |
| @@ -471,9 +471,9 @@ Addresses for the message envelope are deduced by examining | |||
| 471 | appropriate address headers in the message. Generally, they will show | 471 | appropriate address headers in the message. Generally, they will show |
| 472 | up in the list of deduced addresses in the order that the headers | 472 | up in the list of deduced addresses in the order that the headers |
| 473 | happen to appear (duplicate addresses are eliminated in any case). | 473 | happen to appear (duplicate addresses are eliminated in any case). |
| 474 | This variable can be set to the symbol 'first, in which case the | 474 | This variable can be set to the symbol ‘first’, in which case the |
| 475 | Bcc:/Resent-Bcc: addresses will appear at the beginning in the list; | 475 | Bcc:/Resent-Bcc: addresses will appear at the beginning in the list; |
| 476 | or, it can be set to the symbol 'last, in which case they will appear | 476 | or, it can be set to the symbol ‘last’, in which case they will appear |
| 477 | at the end of the list. | 477 | at the end of the list. |
| 478 | 478 | ||
| 479 | Why should you care? Well, maybe you don't, and certainly the same | 479 | Why should you care? Well, maybe you don't, and certainly the same |
| @@ -484,7 +484,7 @@ addresses are not handled first, there can be substantial delays in | |||
| 484 | seeing the message again. Some configurations of sendmail, for example, | 484 | seeing the message again. Some configurations of sendmail, for example, |
| 485 | seem to try to deliver to each addressee at least once, immediately | 485 | seem to try to deliver to each addressee at least once, immediately |
| 486 | and serially, so slow SMTP conversations can add up to a delay. There | 486 | and serially, so slow SMTP conversations can add up to a delay. There |
| 487 | is an option for either 'first or 'last because you might have a | 487 | is an option for either ‘first’ or ‘last’ because you might have a |
| 488 | delivery agent that processes the addresses backwards." | 488 | delivery agent that processes the addresses backwards." |
| 489 | :group 'feedmail-headers | 489 | :group 'feedmail-headers |
| 490 | :type '(choice (const nil) | 490 | :type '(choice (const nil) |
| @@ -1231,7 +1231,7 @@ If a string, it is used directly. | |||
| 1231 | If a function, it is called with no arguments from the buffer containing the raw | 1231 | If a function, it is called with no arguments from the buffer containing the raw |
| 1232 | text of the message. It must return a string (which may be empty). | 1232 | text of the message. It must return a string (which may be empty). |
| 1233 | 1233 | ||
| 1234 | If the symbol 'ask, you will be prompted for a string in the mini-buffer. | 1234 | If the symbol `ask', you will be prompted for a string in the mini-buffer. |
| 1235 | Filename completion is available so that you can inspect what's already been | 1235 | Filename completion is available so that you can inspect what's already been |
| 1236 | used, but feedmail will do further manipulation on the string you return, so | 1236 | used, but feedmail will do further manipulation on the string you return, so |
| 1237 | it's not expected to be a complete filename." | 1237 | it's not expected to be a complete filename." |
| @@ -1301,27 +1301,27 @@ the fact in the messages buffer." | |||
| 1301 | 1301 | ||
| 1302 | 1302 | ||
| 1303 | (defvar feedmail-queue-buffer-file-name nil | 1303 | (defvar feedmail-queue-buffer-file-name nil |
| 1304 | "If non-nil, has the value normally expected of 'buffer-file-name'. | 1304 | "If non-nil, has the value normally expected of `buffer-file-name'. |
| 1305 | You are not intended to set this to something in your configuration. Rather, | 1305 | You are not intended to set this to something in your configuration. Rather, |
| 1306 | you might programmatically set it to something via a hook or function | 1306 | you might programmatically set it to something via a hook or function |
| 1307 | advice or whatever. You might like to do this if you are using a mail | 1307 | advice or whatever. You might like to do this if you are using a mail |
| 1308 | composition program that eventually uses sendmail.el's 'mail-send' | 1308 | composition program that eventually uses sendmail.el's `mail-send' |
| 1309 | function to process the message. If there is a filename associated | 1309 | function to process the message. If there is a filename associated |
| 1310 | with the message buffer, 'mail-send' will ask you for confirmation. | 1310 | with the message buffer, `mail-send' will ask you for confirmation. |
| 1311 | There's no trivial way to avoid it. It's unwise to just set the value | 1311 | There's no trivial way to avoid it. It's unwise to just set the value |
| 1312 | of 'buffer-file-name' to nil because that will defeat feedmail's file | 1312 | of `buffer-file-name' to nil because that will defeat feedmail's file |
| 1313 | management features. Instead, arrange for this variable to be set to | 1313 | management features. Instead, arrange for this variable to be set to |
| 1314 | the value of 'buffer-file-name' before setting that to nil. An easy way | 1314 | the value of `buffer-file-name' before setting that to nil. An easy way |
| 1315 | to do that would be with defadvice on 'mail-send' \(undoing the | 1315 | to do that would be with defadvice on `mail-send' \(undoing the |
| 1316 | assignments in a later advice\). | 1316 | assignments in a later advice\). |
| 1317 | 1317 | ||
| 1318 | feedmail will pretend that 'buffer-file-name', if nil, has the value | 1318 | feedmail will pretend that `buffer-file-name', if nil, has the value |
| 1319 | assigned of 'feedmail-queue-buffer-file-name' and carry out its normal | 1319 | assigned of `feedmail-queue-buffer-file-name' and carry out its normal |
| 1320 | activities. feedmail does not restore the non-nil value of | 1320 | activities. feedmail does not restore the non-nil value of |
| 1321 | 'buffer-file-name'. For safe bookkeeping, the user should insure that | 1321 | `buffer-file-name'. For safe bookkeeping, the user should insure that |
| 1322 | feedmail-queue-buffer-file-name is restored to nil. | 1322 | feedmail-queue-buffer-file-name is restored to nil. |
| 1323 | 1323 | ||
| 1324 | Example 'defadvice' for mail-send: | 1324 | Example `defadvice' for mail-send: |
| 1325 | 1325 | ||
| 1326 | (defadvice mail-send (before feedmail-mail-send-before-advice activate) | 1326 | (defadvice mail-send (before feedmail-mail-send-before-advice activate) |
| 1327 | (setq feedmail-queue-buffer-file-name buffer-file-name) | 1327 | (setq feedmail-queue-buffer-file-name buffer-file-name) |
diff --git a/lisp/net/mairix.el b/lisp/net/mairix.el index 087ae439f3f..2d7d46bdcd8 100644 --- a/lisp/net/mairix.el +++ b/lisp/net/mairix.el | |||
| @@ -762,7 +762,7 @@ VALUES may contain values for editable fields from current article." | |||
| 762 | (define-key map [(d)] 'mairix-select-delete) | 762 | (define-key map [(d)] 'mairix-select-delete) |
| 763 | (define-key map [(s)] 'mairix-select-save) | 763 | (define-key map [(s)] 'mairix-select-save) |
| 764 | map) | 764 | map) |
| 765 | "'mairix-searches-mode' keymap.") | 765 | "`mairix-searches-mode' keymap.") |
| 766 | 766 | ||
| 767 | (defvar mairix-searches-mode-font-lock-keywords | 767 | (defvar mairix-searches-mode-font-lock-keywords |
| 768 | '(("^\\([0-9]+\\)" | 768 | '(("^\\([0-9]+\\)" |
diff --git a/lisp/net/newst-backend.el b/lisp/net/newst-backend.el index 5db04eb6745..435851cc504 100644 --- a/lisp/net/newst-backend.el +++ b/lisp/net/newst-backend.el | |||
| @@ -235,7 +235,7 @@ which apply for this feed only, overriding the value of | |||
| 235 | 'intern | 235 | 'intern |
| 236 | "Method for retrieving news from the web, either `intern' or `extern'. | 236 | "Method for retrieving news from the web, either `intern' or `extern'. |
| 237 | Default value `intern' uses Emacs' built-in asynchronous download | 237 | Default value `intern' uses Emacs' built-in asynchronous download |
| 238 | capabilities ('url-retrieve'). If set to `extern' the external | 238 | capabilities (`url-retrieve'). If set to `extern' the external |
| 239 | program wget is used, see `newsticker-wget-name'." | 239 | program wget is used, see `newsticker-wget-name'." |
| 240 | :type '(choice :tag "Method" | 240 | :type '(choice :tag "Method" |
| 241 | (const :tag "Intern" intern) | 241 | (const :tag "Intern" intern) |
| @@ -332,9 +332,9 @@ deleted at the next retrieval." | |||
| 332 | This is an alist of the form (FEED-NAME PATTERN-LIST). I.e. each | 332 | This is an alist of the form (FEED-NAME PATTERN-LIST). I.e. each |
| 333 | element consists of a FEED-NAME a PATTERN-LIST. Each element of | 333 | element consists of a FEED-NAME a PATTERN-LIST. Each element of |
| 334 | the pattern-list has the form (AGE TITLE-OR-DESCRIPTION REGEXP). | 334 | the pattern-list has the form (AGE TITLE-OR-DESCRIPTION REGEXP). |
| 335 | AGE must be one of the symbols 'old or 'immortal. | 335 | AGE must be one of the symbols `old' or `immortal'. |
| 336 | TITLE-OR-DESCRIPTION must be on of the symbols 'title, | 336 | TITLE-OR-DESCRIPTION must be one of the symbols `title', |
| 337 | 'description, or 'all. REGEXP is a regular expression, i.e. a | 337 | `description', or `all'. REGEXP is a regular expression, i.e., a |
| 338 | string. | 338 | string. |
| 339 | 339 | ||
| 340 | This filter is checked after a new headline has been retrieved. | 340 | This filter is checked after a new headline has been retrieved. |
diff --git a/lisp/obsolete/vi.el b/lisp/obsolete/vi.el index c5dc0efd706..40d2e22eda2 100644 --- a/lisp/obsolete/vi.el +++ b/lisp/obsolete/vi.el | |||
| @@ -444,11 +444,11 @@ Major differences between this mode and real vi : | |||
| 444 | * Extensions | 444 | * Extensions |
| 445 | - Some standard (or modified) Emacs commands were integrated, such as | 445 | - Some standard (or modified) Emacs commands were integrated, such as |
| 446 | incremental search, query replace, transpose objects, and keyboard macros. | 446 | incremental search, query replace, transpose objects, and keyboard macros. |
| 447 | - In command state, ^X links to the 'ctl-x-map', and ESC can be linked to | 447 | - In command state, ^X links to the `ctl-x-map', and ESC can be linked to |
| 448 | esc-map or set undefined. These can give you the full power of Emacs. | 448 | esc-map or set undefined. These can give you the full power of Emacs. |
| 449 | - See vi-com-map for those keys that are extensions to standard vi, e.g. | 449 | - See vi-com-map for those keys that are extensions to standard vi, e.g. |
| 450 | `vi-name-last-change-or-macro', `vi-verify-spelling', `vi-locate-def', | 450 | `vi-name-last-change-or-macro', `vi-verify-spelling', `vi-locate-def', |
| 451 | `vi-mark-region', and 'vi-quote-words'. Some of them are quite handy. | 451 | `vi-mark-region', and `vi-quote-words'. Some of them are quite handy. |
| 452 | - Use \\[vi-switch-mode] to switch among different modes quickly. | 452 | - Use \\[vi-switch-mode] to switch among different modes quickly. |
| 453 | 453 | ||
| 454 | Syntax table and abbrevs while in vi mode remain as they were in Emacs." | 454 | Syntax table and abbrevs while in vi mode remain as they were in Emacs." |
diff --git a/lisp/progmodes/cc-engine.el b/lisp/progmodes/cc-engine.el index 520b7e573bf..a0f44a23bca 100644 --- a/lisp/progmodes/cc-engine.el +++ b/lisp/progmodes/cc-engine.el | |||
| @@ -4616,7 +4616,7 @@ comment at the start of cc-engine.el for more info." | |||
| 4616 | (defun c-literal-type (range) | 4616 | (defun c-literal-type (range) |
| 4617 | "Convenience function that given the result of `c-literal-limits', | 4617 | "Convenience function that given the result of `c-literal-limits', |
| 4618 | returns nil or the type of literal that the range surrounds, one | 4618 | returns nil or the type of literal that the range surrounds, one |
| 4619 | of the symbols 'c, 'c++ or 'string. It's much faster than using | 4619 | of the symbols `c', `c++' or `string'. It's much faster than using |
| 4620 | `c-in-literal' and is intended to be used when you need both the | 4620 | `c-in-literal' and is intended to be used when you need both the |
| 4621 | type of a literal and its limits. | 4621 | type of a literal and its limits. |
| 4622 | 4622 | ||
diff --git a/lisp/progmodes/cpp.el b/lisp/progmodes/cpp.el index 0a51add68b6..685bb21b430 100644 --- a/lisp/progmodes/cpp.el +++ b/lisp/progmodes/cpp.el | |||
| @@ -57,7 +57,7 @@ | |||
| 57 | :group 'cpp) | 57 | :group 'cpp) |
| 58 | 58 | ||
| 59 | (define-widget 'cpp-face 'lazy | 59 | (define-widget 'cpp-face 'lazy |
| 60 | "Either a face or the special symbol 'invisible'." | 60 | "Either a face or the special symbol `invisible'." |
| 61 | :type '(choice (const invisible) (face))) | 61 | :type '(choice (const invisible) (face))) |
| 62 | 62 | ||
| 63 | (defcustom cpp-known-face 'invisible | 63 | (defcustom cpp-known-face 'invisible |
diff --git a/lisp/progmodes/ebrowse.el b/lisp/progmodes/ebrowse.el index 8d7c8aa0267..7c785d4ac20 100644 --- a/lisp/progmodes/ebrowse.el +++ b/lisp/progmodes/ebrowse.el | |||
| @@ -2015,7 +2015,7 @@ COLLAPSE non-nil means collapse the branch." | |||
| 2015 | (defun ebrowse-electric-list-looper (state condition) | 2015 | (defun ebrowse-electric-list-looper (state condition) |
| 2016 | "Prevent cursor from moving beyond the buffer end. | 2016 | "Prevent cursor from moving beyond the buffer end. |
| 2017 | Don't let it move into the title lines. | 2017 | Don't let it move into the title lines. |
| 2018 | See 'Electric-command-loop' for a description of STATE and CONDITION." | 2018 | See `Electric-command-loop' for a description of STATE and CONDITION." |
| 2019 | (cond ((and condition | 2019 | (cond ((and condition |
| 2020 | (not (memq (car condition) | 2020 | (not (memq (car condition) |
| 2021 | '(buffer-read-only end-of-buffer | 2021 | '(buffer-read-only end-of-buffer |
diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el index 6ad803d9be8..a96fca15cc2 100644 --- a/lisp/progmodes/elisp-mode.el +++ b/lisp/progmodes/elisp-mode.el | |||
| @@ -624,7 +624,7 @@ It can be quoted, or be inside a quoted form." | |||
| 624 | 624 | ||
| 625 | (defun elisp--xref-make-xref (type symbol file &optional summary) | 625 | (defun elisp--xref-make-xref (type symbol file &optional summary) |
| 626 | "Return an xref for TYPE SYMBOL in FILE. | 626 | "Return an xref for TYPE SYMBOL in FILE. |
| 627 | TYPE must be a type in 'find-function-regexp-alist' (use nil for | 627 | TYPE must be a type in `find-function-regexp-alist' (use nil for |
| 628 | 'defun). If SUMMARY is non-nil, use it for the summary; | 628 | 'defun). If SUMMARY is non-nil, use it for the summary; |
| 629 | otherwise build the summary from TYPE and SYMBOL." | 629 | otherwise build the summary from TYPE and SYMBOL." |
| 630 | (xref-make (or summary | 630 | (xref-make (or summary |
diff --git a/lisp/progmodes/pascal.el b/lisp/progmodes/pascal.el index c05bda5c925..454367c10fa 100644 --- a/lisp/progmodes/pascal.el +++ b/lisp/progmodes/pascal.el | |||
| @@ -234,9 +234,9 @@ The name of the function or case is included between the braces." | |||
| 234 | 234 | ||
| 235 | (defcustom pascal-auto-lineup '(all) | 235 | (defcustom pascal-auto-lineup '(all) |
| 236 | "List of contexts where auto lineup of :'s or ='s should be done. | 236 | "List of contexts where auto lineup of :'s or ='s should be done. |
| 237 | Elements can be of type: 'paramlist', 'declaration' or 'case', which will | 237 | Elements can be of type: `paramlist', `declaration' or `case', which will |
| 238 | do auto lineup in parameterlist, declarations or case-statements | 238 | do auto lineup in parameterlist, declarations or case-statements |
| 239 | respectively. The word 'all' will do all lineups. '(case paramlist) for | 239 | respectively. The word `all' will do all lineups. '(case paramlist) for |
| 240 | instance will do lineup in case-statements and parameterlist, while '(all) | 240 | instance will do lineup in case-statements and parameterlist, while '(all) |
| 241 | will do all lineups." | 241 | will do all lineups." |
| 242 | :type '(set :extra-offset 8 | 242 | :type '(set :extra-offset 8 |
diff --git a/lisp/progmodes/prog-mode.el b/lisp/progmodes/prog-mode.el index cb8aaad589d..994eaaf926f 100644 --- a/lisp/progmodes/prog-mode.el +++ b/lisp/progmodes/prog-mode.el | |||
| @@ -116,7 +116,7 @@ This function can be used instead of `widen' in any function used | |||
| 116 | by the indentation engine to make it respect the value | 116 | by the indentation engine to make it respect the value |
| 117 | `prog-indentation-context'. | 117 | `prog-indentation-context'. |
| 118 | 118 | ||
| 119 | This function (like 'widen') is useful inside a | 119 | This function (like `widen') is useful inside a |
| 120 | `save-restriction' to make the indentation correctly work when | 120 | `save-restriction' to make the indentation correctly work when |
| 121 | narrowing is in effect." | 121 | narrowing is in effect." |
| 122 | (let ((chunk (cadr prog-indentation-context))) | 122 | (let ((chunk (cadr prog-indentation-context))) |
diff --git a/lisp/progmodes/verilog-mode.el b/lisp/progmodes/verilog-mode.el index 3ce185f601b..32448055308 100644 --- a/lisp/progmodes/verilog-mode.el +++ b/lisp/progmodes/verilog-mode.el | |||
| @@ -346,10 +346,10 @@ wherever possible, since it is slow." | |||
| 346 | 346 | ||
| 347 | (eval-when-compile | 347 | (eval-when-compile |
| 348 | (defun verilog-regexp-words (a) | 348 | (defun verilog-regexp-words (a) |
| 349 | "Call 'regexp-opt' with word delimiters for the words A." | 349 | "Call `regexp-opt' with word delimiters for the words A." |
| 350 | (concat "\\<" (verilog-regexp-opt a t) "\\>"))) | 350 | (concat "\\<" (verilog-regexp-opt a t) "\\>"))) |
| 351 | (defun verilog-regexp-words (a) | 351 | (defun verilog-regexp-words (a) |
| 352 | "Call 'regexp-opt' with word delimiters for the words A." | 352 | "Call `regexp-opt' with word delimiters for the words A." |
| 353 | ;; The FAQ references this function, so user LISP sometimes calls it | 353 | ;; The FAQ references this function, so user LISP sometimes calls it |
| 354 | (concat "\\<" (verilog-regexp-opt a t) "\\>")) | 354 | (concat "\\<" (verilog-regexp-opt a t) "\\>")) |
| 355 | 355 | ||
| @@ -541,9 +541,9 @@ entry \"Fontify Buffer\"). XEmacs: turn off and on font locking." | |||
| 541 | 541 | ||
| 542 | (defcustom verilog-auto-lineup 'declarations | 542 | (defcustom verilog-auto-lineup 'declarations |
| 543 | "Type of statements to lineup across multiple lines. | 543 | "Type of statements to lineup across multiple lines. |
| 544 | If 'all' is selected, then all line ups described below are done. | 544 | If `all' is selected, then all line ups described below are done. |
| 545 | 545 | ||
| 546 | If 'declarations', then just declarations are lined up with any | 546 | If `declarations', then just declarations are lined up with any |
| 547 | preceding declarations, taking into account widths and the like, | 547 | preceding declarations, taking into account widths and the like, |
| 548 | so or example the code: | 548 | so or example the code: |
| 549 | reg [31:0] a; | 549 | reg [31:0] a; |
| @@ -552,7 +552,7 @@ would become | |||
| 552 | reg [31:0] a; | 552 | reg [31:0] a; |
| 553 | reg b; | 553 | reg b; |
| 554 | 554 | ||
| 555 | If 'assignment', then assignments are lined up with any preceding | 555 | If `assignment', then assignments are lined up with any preceding |
| 556 | assignments, so for example the code | 556 | assignments, so for example the code |
| 557 | a_long_variable <= b + c; | 557 | a_long_variable <= b + c; |
| 558 | d = e + f; | 558 | d = e + f; |
| @@ -1054,7 +1054,7 @@ the MSB or LSB of a signal inside an AUTORESET. | |||
| 1054 | 1054 | ||
| 1055 | If nil, AUTORESET uses \"0\" as the constant. | 1055 | If nil, AUTORESET uses \"0\" as the constant. |
| 1056 | 1056 | ||
| 1057 | If 'unbased', AUTORESET used the unbased unsized literal \"'0\" | 1057 | If `unbased', AUTORESET used the unbased unsized literal \"'0\" |
| 1058 | as the constant. This setting is strongly recommended for | 1058 | as the constant. This setting is strongly recommended for |
| 1059 | SystemVerilog designs." | 1059 | SystemVerilog designs." |
| 1060 | :type 'boolean | 1060 | :type 'boolean |
| @@ -1070,10 +1070,10 @@ SystemVerilog designs." | |||
| 1070 | 1070 | ||
| 1071 | (defcustom verilog-auto-arg-format 'packed | 1071 | (defcustom verilog-auto-arg-format 'packed |
| 1072 | "Formatting to use for AUTOARG signal names. | 1072 | "Formatting to use for AUTOARG signal names. |
| 1073 | If 'packed', then as many inputs and outputs that fit within | 1073 | If `packed', then as many inputs and outputs that fit within |
| 1074 | `fill-column' will be put onto one line. | 1074 | `fill-column' will be put onto one line. |
| 1075 | 1075 | ||
| 1076 | If 'single', then a single input or output will be put onto each | 1076 | If `single', then a single input or output will be put onto each |
| 1077 | line." | 1077 | line." |
| 1078 | :version "25.1" | 1078 | :version "25.1" |
| 1079 | :type '(radio (const :tag "Line up Assignments and Declarations" packed) | 1079 | :type '(radio (const :tag "Line up Assignments and Declarations" packed) |
| @@ -1172,7 +1172,7 @@ was used for that port declaration. This setting is suggested | |||
| 1172 | only for debugging use, as regular use may cause a large numbers | 1172 | only for debugging use, as regular use may cause a large numbers |
| 1173 | of merge conflicts. | 1173 | of merge conflicts. |
| 1174 | 1174 | ||
| 1175 | If 'lhs', the comment will show the left hand side of the | 1175 | If `lhs', the comment will show the left hand side of the |
| 1176 | AUTO_TEMPLATE rule that is matched. This is less precise than | 1176 | AUTO_TEMPLATE rule that is matched. This is less precise than |
| 1177 | numbering (t) when multiple rules have the same pin name, but | 1177 | numbering (t) when multiple rules have the same pin name, but |
| 1178 | won't merge conflict." | 1178 | won't merge conflict." |
diff --git a/lisp/register.el b/lisp/register.el index 7afbc06c7fc..110c36f04c7 100644 --- a/lisp/register.el +++ b/lisp/register.el | |||
| @@ -220,7 +220,7 @@ Interactively, reads the register using `register-read-with-preview'." | |||
| 220 | (set-advertised-calling-convention 'frame-configuration-to-register | 220 | (set-advertised-calling-convention 'frame-configuration-to-register |
| 221 | '(register) "24.4") | 221 | '(register) "24.4") |
| 222 | 222 | ||
| 223 | (make-obsolete 'frame-configuration-to-register 'frameset-to-register' "24.4") | 223 | (make-obsolete 'frame-configuration-to-register 'frameset-to-register "24.4") |
| 224 | 224 | ||
| 225 | (defalias 'register-to-point 'jump-to-register) | 225 | (defalias 'register-to-point 'jump-to-register) |
| 226 | (defun jump-to-register (register &optional delete) | 226 | (defun jump-to-register (register &optional delete) |
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index 64aa3de146e..14f8744077a 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el | |||
| @@ -2326,7 +2326,7 @@ If the text between BEG and END is equal to a correction suggested by | |||
| 2326 | Ispell, after transposing two adjacent characters, correct the text, | 2326 | Ispell, after transposing two adjacent characters, correct the text, |
| 2327 | and return t. | 2327 | and return t. |
| 2328 | 2328 | ||
| 2329 | The third arg POSS is either the symbol 'doublon' or a list of | 2329 | The third arg POSS is either the symbol `doublon' or a list of |
| 2330 | possible corrections as returned by `ispell-parse-output'. | 2330 | possible corrections as returned by `ispell-parse-output'. |
| 2331 | 2331 | ||
| 2332 | This function is meant to be added to `flyspell-incorrect-hook'." | 2332 | This function is meant to be added to `flyspell-incorrect-hook'." |
| @@ -2356,7 +2356,7 @@ If the text between BEG and END is equal to a correction suggested by | |||
| 2356 | Ispell, after removing a pair of doubled characters, correct the text, | 2356 | Ispell, after removing a pair of doubled characters, correct the text, |
| 2357 | and return t. | 2357 | and return t. |
| 2358 | 2358 | ||
| 2359 | The third arg POSS is either the symbol 'doublon' or a list of | 2359 | The third arg POSS is either the symbol `doublon' or a list of |
| 2360 | possible corrections as returned by `ispell-parse-output'. | 2360 | possible corrections as returned by `ispell-parse-output'. |
| 2361 | 2361 | ||
| 2362 | This function is meant to be added to `flyspell-incorrect-hook'." | 2362 | This function is meant to be added to `flyspell-incorrect-hook'." |
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el index fa9f0fa638a..93b31d5c86c 100644 --- a/lisp/textmodes/table.el +++ b/lisp/textmodes/table.el | |||
| @@ -2806,8 +2806,8 @@ ORIENTATION is a symbol either horizontally or vertically." | |||
| 2806 | ;;;###autoload | 2806 | ;;;###autoload |
| 2807 | (defun table-justify (what justify) | 2807 | (defun table-justify (what justify) |
| 2808 | "Justify contents of a cell, a row of cells or a column of cells. | 2808 | "Justify contents of a cell, a row of cells or a column of cells. |
| 2809 | WHAT is a symbol 'cell, 'row or 'column. JUSTIFY is a symbol 'left, | 2809 | WHAT is a symbol ‘cell’, ‘row’ or ‘column’. JUSTIFY is a symbol |
| 2810 | 'center, 'right, 'top, 'middle, 'bottom or 'none." | 2810 | ‘left’, ‘center’, ‘right’, ‘top’, ‘middle’, ‘bottom’ or ‘none’." |
| 2811 | (interactive | 2811 | (interactive |
| 2812 | (list (let* ((_ (barf-if-buffer-read-only)) | 2812 | (list (let* ((_ (barf-if-buffer-read-only)) |
| 2813 | (completion-ignore-case t) | 2813 | (completion-ignore-case t) |
| @@ -2822,8 +2822,8 @@ WHAT is a symbol 'cell, 'row or 'column. JUSTIFY is a symbol 'left, | |||
| 2822 | ;;;###autoload | 2822 | ;;;###autoload |
| 2823 | (defun table-justify-cell (justify &optional paragraph) | 2823 | (defun table-justify-cell (justify &optional paragraph) |
| 2824 | "Justify cell contents. | 2824 | "Justify cell contents. |
| 2825 | JUSTIFY is a symbol 'left, 'center or 'right for horizontal, or 'top, | 2825 | JUSTIFY is a symbol ‘left’, ‘center’ or ‘right’ for horizontal, or ‘top’, |
| 2826 | 'middle, 'bottom or 'none for vertical. When optional PARAGRAPH is | 2826 | ‘middle’, ‘bottom’ or ‘none’ for vertical. When optional PARAGRAPH is |
| 2827 | non-nil the justify operation is limited to the current paragraph, | 2827 | non-nil the justify operation is limited to the current paragraph, |
| 2828 | otherwise the entire cell contents is justified." | 2828 | otherwise the entire cell contents is justified." |
| 2829 | (interactive | 2829 | (interactive |
| @@ -2835,8 +2835,8 @@ otherwise the entire cell contents is justified." | |||
| 2835 | ;;;###autoload | 2835 | ;;;###autoload |
| 2836 | (defun table-justify-row (justify) | 2836 | (defun table-justify-row (justify) |
| 2837 | "Justify cells of a row. | 2837 | "Justify cells of a row. |
| 2838 | JUSTIFY is a symbol 'left, 'center or 'right for horizontal, or top, | 2838 | JUSTIFY is a symbol ‘left’, ‘center’ or ‘right’ for horizontal, |
| 2839 | 'middle, 'bottom or 'none for vertical." | 2839 | or ‘top’, ‘middle’, ‘bottom’ or ‘none’ for vertical." |
| 2840 | (interactive | 2840 | (interactive |
| 2841 | (list (table--query-justification))) | 2841 | (list (table--query-justification))) |
| 2842 | (let((cell-list (table--horizontal-cell-list nil nil 'top))) | 2842 | (let((cell-list (table--horizontal-cell-list nil nil 'top))) |
| @@ -2852,8 +2852,8 @@ JUSTIFY is a symbol 'left, 'center or 'right for horizontal, or top, | |||
| 2852 | ;;;###autoload | 2852 | ;;;###autoload |
| 2853 | (defun table-justify-column (justify) | 2853 | (defun table-justify-column (justify) |
| 2854 | "Justify cells of a column. | 2854 | "Justify cells of a column. |
| 2855 | JUSTIFY is a symbol 'left, 'center or 'right for horizontal, or top, | 2855 | JUSTIFY is a symbol ‘left’, ‘center’ or ‘right’ for horizontal, |
| 2856 | 'middle, 'bottom or 'none for vertical." | 2856 | or ‘top’, ‘middle’, ‘bottom’ or ‘none’ for vertical." |
| 2857 | (interactive | 2857 | (interactive |
| 2858 | (list (table--query-justification))) | 2858 | (list (table--query-justification))) |
| 2859 | (let((cell-list (table--vertical-cell-list nil nil 'left))) | 2859 | (let((cell-list (table--vertical-cell-list nil nil 'left))) |
| @@ -3341,8 +3341,8 @@ INTERVAL is the number of cells to travel between sequence element | |||
| 3341 | insertion which is normally 1. When zero or less is given for | 3341 | insertion which is normally 1. When zero or less is given for |
| 3342 | INTERVAL it is interpreted as number of cells per row so that sequence | 3342 | INTERVAL it is interpreted as number of cells per row so that sequence |
| 3343 | is placed straight down vertically as long as the table's cell | 3343 | is placed straight down vertically as long as the table's cell |
| 3344 | structure is uniform. JUSTIFY is one of the symbol 'left, 'center or | 3344 | structure is uniform. JUSTIFY is a symbol ‘left’, ‘center’ or |
| 3345 | 'right, that specifies justification of the inserted string. | 3345 | ‘right’ that specifies justification of the inserted string. |
| 3346 | 3346 | ||
| 3347 | Example: | 3347 | Example: |
| 3348 | 3348 | ||
| @@ -4461,8 +4461,8 @@ looking at the appearance of the CELL contents." | |||
| 4461 | 4461 | ||
| 4462 | (defun table--justify-cell-contents (justify &optional paragraph) | 4462 | (defun table--justify-cell-contents (justify &optional paragraph) |
| 4463 | "Justify the current cell contents. | 4463 | "Justify the current cell contents. |
| 4464 | JUSTIFY is a symbol 'left, 'center or 'right for horizontal, or 'top, | 4464 | JUSTIFY is a symbol ‘left’, ‘center’ or ‘right’ for horizontal, or ‘top’, |
| 4465 | 'middle, 'bottom or 'none for vertical. When PARAGRAPH is non-nil the | 4465 | ‘middle’, ‘bottom’ or ‘none’ for vertical. When PARAGRAPH is non-nil the |
| 4466 | justify operation is limited to the current paragraph." | 4466 | justify operation is limited to the current paragraph." |
| 4467 | (table-with-cache-buffer | 4467 | (table-with-cache-buffer |
| 4468 | (let ((beg (point-min)) | 4468 | (let ((beg (point-min)) |
diff --git a/lisp/thumbs.el b/lisp/thumbs.el index d8bb8cb34f9..409ba7c65c9 100644 --- a/lisp/thumbs.el +++ b/lisp/thumbs.el | |||
| @@ -102,7 +102,7 @@ When it reaches that size (in bytes), a warning is sent." | |||
| 102 | (or (executable-find "convert") | 102 | (or (executable-find "convert") |
| 103 | "/usr/X11R6/bin/convert")) | 103 | "/usr/X11R6/bin/convert")) |
| 104 | "Name of conversion program for thumbnails generation. | 104 | "Name of conversion program for thumbnails generation. |
| 105 | It must be 'convert'." | 105 | It must be \"convert\"." |
| 106 | :type 'string | 106 | :type 'string |
| 107 | :group 'thumbs) | 107 | :group 'thumbs) |
| 108 | 108 | ||
diff --git a/lisp/url/url-auth.el b/lisp/url/url-auth.el index 58bf45b0226..64f56f0cc15 100644 --- a/lisp/url/url-auth.el +++ b/lisp/url/url-auth.el | |||
| @@ -262,12 +262,12 @@ URL is the url you are requesting authorization to. This can be either a | |||
| 262 | string representing the URL, or the parsed representation returned by | 262 | string representing the URL, or the parsed representation returned by |
| 263 | `url-generic-parse-url' | 263 | `url-generic-parse-url' |
| 264 | REALM is the realm at a specific site we are looking for. This should be a | 264 | REALM is the realm at a specific site we are looking for. This should be a |
| 265 | string specifying the exact realm, or nil or the symbol 'any' to | 265 | string specifying the exact realm, or nil or the symbol `any' to |
| 266 | specify that the filename portion of the URL should be used as the | 266 | specify that the filename portion of the URL should be used as the |
| 267 | realm | 267 | realm |
| 268 | TYPE is the type of authentication to be returned. This is either a string | 268 | TYPE is the type of authentication to be returned. This is either a string |
| 269 | representing the type (basic, digest, etc), or nil or the symbol 'any' | 269 | representing the type (basic, digest, etc), or nil or the symbol `any' |
| 270 | to specify that any authentication is acceptable. If requesting 'any' | 270 | to specify that any authentication is acceptable. If requesting `any' |
| 271 | the strongest matching authentication will be returned. If this is | 271 | the strongest matching authentication will be returned. If this is |
| 272 | wrong, it's no big deal, the error from the server will specify exactly | 272 | wrong, it's no big deal, the error from the server will specify exactly |
| 273 | what type of auth to use | 273 | what type of auth to use |
diff --git a/lisp/window.el b/lisp/window.el index ebe7054b090..c783b0d5b10 100644 --- a/lisp/window.el +++ b/lisp/window.el | |||
| @@ -5596,18 +5596,18 @@ windows can get as small as `window-safe-min-height' and | |||
| 5596 | (defun display-buffer-record-window (type window buffer) | 5596 | (defun display-buffer-record-window (type window buffer) |
| 5597 | "Record information for window used by `display-buffer'. | 5597 | "Record information for window used by `display-buffer'. |
| 5598 | TYPE specifies the type of the calling operation and must be one | 5598 | TYPE specifies the type of the calling operation and must be one |
| 5599 | of the symbols 'reuse (when WINDOW existed already and was | 5599 | of the symbols `reuse' (when WINDOW existed already and was |
| 5600 | reused for displaying BUFFER), 'window (when WINDOW was created | 5600 | reused for displaying BUFFER), `window' (when WINDOW was created |
| 5601 | on an already existing frame), or 'frame (when WINDOW was | 5601 | on an already existing frame), or `frame' (when WINDOW was |
| 5602 | created on a new frame). WINDOW is the window used for or created | 5602 | created on a new frame). WINDOW is the window used for or created |
| 5603 | by the `display-buffer' routines. BUFFER is the buffer that | 5603 | by the `display-buffer' routines. BUFFER is the buffer that |
| 5604 | shall be displayed. | 5604 | shall be displayed. |
| 5605 | 5605 | ||
| 5606 | This function installs or updates the quit-restore parameter of | 5606 | This function installs or updates the quit-restore parameter of |
| 5607 | WINDOW. The quit-restore parameter is a list of four elements: | 5607 | WINDOW. The quit-restore parameter is a list of four elements: |
| 5608 | The first element is one of the symbols 'window, 'frame, 'same or | 5608 | The first element is one of the symbols `window', `frame', `same' or |
| 5609 | 'other. The second element is either one of the symbols 'window | 5609 | `other'. The second element is either one of the symbols `window' |
| 5610 | or 'frame or a list whose elements are the buffer previously | 5610 | or `frame' or a list whose elements are the buffer previously |
| 5611 | shown in the window, that buffer's window start and window point, | 5611 | shown in the window, that buffer's window start and window point, |
| 5612 | and the window's height. The third element is the window | 5612 | and the window's height. The third element is the window |
| 5613 | selected at the time the parameter was created. The fourth | 5613 | selected at the time the parameter was created. The fourth |
diff --git a/lisp/xml.el b/lisp/xml.el index b3dce41ce11..f5a9a3f8f0b 100644 --- a/lisp/xml.el +++ b/lisp/xml.el | |||
| @@ -326,8 +326,8 @@ URIs, and expanded names will be returned as a cons | |||
| 326 | If PARSE-NS is an alist, it will be used as the mapping from | 326 | If PARSE-NS is an alist, it will be used as the mapping from |
| 327 | namespace to URIs instead. | 327 | namespace to URIs instead. |
| 328 | 328 | ||
| 329 | If it is the symbol 'symbol-qnames, expanded names will be | 329 | If it is the symbol `symbol-qnames', expanded names will be |
| 330 | returned as a plain symbol 'namespace:foo instead of a cons. | 330 | returned as a plain symbol `namespace:foo' instead of a cons. |
| 331 | 331 | ||
| 332 | Both features can be combined by providing a cons cell | 332 | Both features can be combined by providing a cons cell |
| 333 | 333 | ||
| @@ -356,8 +356,8 @@ URIs, and expanded names will be returned as a cons | |||
| 356 | If PARSE-NS is an alist, it will be used as the mapping from | 356 | If PARSE-NS is an alist, it will be used as the mapping from |
| 357 | namespace to URIs instead. | 357 | namespace to URIs instead. |
| 358 | 358 | ||
| 359 | If it is the symbol 'symbol-qnames, expanded names will be | 359 | If it is the symbol `symbol-qnames', expanded names will be |
| 360 | returned as a plain symbol 'namespace:foo instead of a cons. | 360 | returned as a plain symbol `namespace:foo' instead of a cons. |
| 361 | 361 | ||
| 362 | Both features can be combined by providing a cons cell | 362 | Both features can be combined by providing a cons cell |
| 363 | 363 | ||
diff --git a/src/buffer.c b/src/buffer.c index bd7c82c062f..fb1502a13a4 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5540,12 +5540,12 @@ This is the same as (default-value 'indicate-buffer-boundaries). */); | |||
| 5540 | DEFVAR_BUFFER_DEFAULTS ("default-fringe-indicator-alist", | 5540 | DEFVAR_BUFFER_DEFAULTS ("default-fringe-indicator-alist", |
| 5541 | fringe_indicator_alist, | 5541 | fringe_indicator_alist, |
| 5542 | doc: /* Default value of `fringe-indicator-alist' for buffers that don't override it. | 5542 | doc: /* Default value of `fringe-indicator-alist' for buffers that don't override it. |
| 5543 | This is the same as (default-value 'fringe-indicator-alist'). */); | 5543 | This is the same as (default-value 'fringe-indicator-alist). */); |
| 5544 | 5544 | ||
| 5545 | DEFVAR_BUFFER_DEFAULTS ("default-fringe-cursor-alist", | 5545 | DEFVAR_BUFFER_DEFAULTS ("default-fringe-cursor-alist", |
| 5546 | fringe_cursor_alist, | 5546 | fringe_cursor_alist, |
| 5547 | doc: /* Default value of `fringe-cursor-alist' for buffers that don't override it. | 5547 | doc: /* Default value of `fringe-cursor-alist' for buffers that don't override it. |
| 5548 | This is the same as (default-value 'fringe-cursor-alist'). */); | 5548 | This is the same as (default-value 'fringe-cursor-alist). */); |
| 5549 | 5549 | ||
| 5550 | DEFVAR_BUFFER_DEFAULTS ("default-scroll-up-aggressively", | 5550 | DEFVAR_BUFFER_DEFAULTS ("default-scroll-up-aggressively", |
| 5551 | scroll_up_aggressively, | 5551 | scroll_up_aggressively, |
diff --git a/src/gfilenotify.c b/src/gfilenotify.c index 08713a8fce3..5488fa38507 100644 --- a/src/gfilenotify.c +++ b/src/gfilenotify.c | |||
| @@ -119,9 +119,9 @@ watched for some reason, this function signals a `file-notify-error' error. | |||
| 119 | FLAGS is a list of conditions to set what will be watched for. It can | 119 | FLAGS is a list of conditions to set what will be watched for. It can |
| 120 | include the following symbols: | 120 | include the following symbols: |
| 121 | 121 | ||
| 122 | 'watch-mounts' -- watch for mount events | 122 | `watch-mounts' -- watch for mount events |
| 123 | 'send-moved' -- pair 'deleted' and 'created' events caused by file | 123 | `send-moved' -- pair `deleted' and `created' events caused by file |
| 124 | renames and send a single 'renamed' event instead | 124 | renames and send a single `renamed' event instead |
| 125 | 125 | ||
| 126 | When any event happens, Emacs will call the CALLBACK function passing | 126 | When any event happens, Emacs will call the CALLBACK function passing |
| 127 | it a single argument EVENT, which is of the form | 127 | it a single argument EVENT, which is of the form |
| @@ -132,18 +132,18 @@ DESCRIPTOR is the same object as the one returned by this function. | |||
| 132 | ACTION is the description of the event. It could be any one of the | 132 | ACTION is the description of the event. It could be any one of the |
| 133 | following: | 133 | following: |
| 134 | 134 | ||
| 135 | 'changed' -- FILE has changed | 135 | `changed' -- FILE has changed |
| 136 | 'changes-done-hint' -- a hint that this was probably the last change | 136 | `changes-done-hint' -- a hint that this was probably the last change |
| 137 | in a set of changes | 137 | in a set of changes |
| 138 | 'deleted' -- FILE was deleted | 138 | `deleted' -- FILE was deleted |
| 139 | 'created' -- FILE was created | 139 | `created' -- FILE was created |
| 140 | 'attribute-changed' -- a FILE attribute was changed | 140 | `attribute-changed' -- a FILE attribute was changed |
| 141 | 'pre-unmount' -- the FILE location will soon be unmounted | 141 | `pre-unmount' -- the FILE location will soon be unmounted |
| 142 | 'unmounted' -- the FILE location was unmounted | 142 | `unmounted' -- the FILE location was unmounted |
| 143 | 'moved' -- FILE was moved to FILE1 | 143 | `moved' -- FILE was moved to FILE1 |
| 144 | 144 | ||
| 145 | FILE is the name of the file whose event is being reported. FILE1 | 145 | FILE is the name of the file whose event is being reported. FILE1 |
| 146 | will be reported only in case of the 'moved' event. */) | 146 | will be reported only in case of the `moved' event. */) |
| 147 | (Lisp_Object file, Lisp_Object flags, Lisp_Object callback) | 147 | (Lisp_Object file, Lisp_Object flags, Lisp_Object callback) |
| 148 | { | 148 | { |
| 149 | Lisp_Object watch_object; | 149 | Lisp_Object watch_object; |