diff options
| author | Paul Eggert | 2019-11-11 10:30:13 -0800 |
|---|---|---|
| committer | Paul Eggert | 2019-11-11 10:32:53 -0800 |
| commit | 6b4a97c1c78f39ce890d100acceceb652d14e20d (patch) | |
| tree | 9d9f8347a952226adcd73680ed89c5679d6e5326 | |
| parent | 269796288a43520a1dcc481337af472d086faaa4 (diff) | |
| download | emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.tar.gz emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.zip | |
Fix some quoting glitches in doc strings
74 files changed, 176 insertions, 175 deletions
diff --git a/lisp/calendar/cal-dst.el b/lisp/calendar/cal-dst.el index 355f72cd15f..a757a8bf91d 100644 --- a/lisp/calendar/cal-dst.el +++ b/lisp/calendar/cal-dst.el | |||
| @@ -61,11 +61,11 @@ list and for correcting times of day in the solar and lunar calculations. | |||
| 61 | For example, if daylight saving time is mandated to start on October 1, | 61 | For example, if daylight saving time is mandated to start on October 1, |
| 62 | you would set `calendar-daylight-savings-starts' to | 62 | you would set `calendar-daylight-savings-starts' to |
| 63 | 63 | ||
| 64 | '(10 1 year) | 64 | (10 1 year) |
| 65 | 65 | ||
| 66 | If it starts on the first Sunday in April, you would set it to | 66 | If it starts on the first Sunday in April, you would set it to |
| 67 | 67 | ||
| 68 | '(calendar-nth-named-day 1 0 4 year) | 68 | (calendar-nth-named-day 1 0 4 year) |
| 69 | 69 | ||
| 70 | If the locale never uses daylight saving time, set this to nil." | 70 | If the locale never uses daylight saving time, set this to nil." |
| 71 | :type 'sexp | 71 | :type 'sexp |
diff --git a/lisp/calendar/cal-tex.el b/lisp/calendar/cal-tex.el index f46c07407d6..e93ee2118e3 100644 --- a/lisp/calendar/cal-tex.el +++ b/lisp/calendar/cal-tex.el | |||
| @@ -71,7 +71,7 @@ | |||
| 71 | (defcustom cal-tex-which-days '(0 1 2 3 4 5 6) | 71 | (defcustom cal-tex-which-days '(0 1 2 3 4 5 6) |
| 72 | "The days of the week that are displayed on the portrait monthly calendar. | 72 | "The days of the week that are displayed on the portrait monthly calendar. |
| 73 | Sunday is 0, Monday is 1, and so on. The default is to print from Sunday to | 73 | Sunday is 0, Monday is 1, and so on. The default is to print from Sunday to |
| 74 | Saturday. For example, use '(1 3 5) to only print Monday, Wednesday, Friday." | 74 | Saturday. For example, (1 3 5) prints only Monday, Wednesday, Friday." |
| 75 | :type '(repeat integer) | 75 | :type '(repeat integer) |
| 76 | :group 'calendar-tex) | 76 | :group 'calendar-tex) |
| 77 | 77 | ||
| @@ -109,7 +109,7 @@ date in the weekly calendars, and in the top center of daily calendars. | |||
| 109 | The default is ordinal day number of the year and the number of | 109 | The default is ordinal day number of the year and the number of |
| 110 | days remaining. As an example, setting this to | 110 | days remaining. As an example, setting this to |
| 111 | 111 | ||
| 112 | '(calendar-hebrew-date-string date) | 112 | (calendar-hebrew-date-string date) |
| 113 | 113 | ||
| 114 | will put the Hebrew date at the bottom of each day." | 114 | will put the Hebrew date at the bottom of each day." |
| 115 | :type 'sexp | 115 | :type 'sexp |
diff --git a/lisp/cedet/cedet-cscope.el b/lisp/cedet/cedet-cscope.el index 19a4ef98519..6987e4e1439 100644 --- a/lisp/cedet/cedet-cscope.el +++ b/lisp/cedet/cedet-cscope.el | |||
| @@ -39,12 +39,12 @@ | |||
| 39 | (defun cedet-cscope-search (searchtext texttype type scope) | 39 | (defun cedet-cscope-search (searchtext texttype type scope) |
| 40 | "Perform a search with CScope, return the created buffer. | 40 | "Perform a search with CScope, return the created buffer. |
| 41 | SEARCHTEXT is text to find. | 41 | SEARCHTEXT is text to find. |
| 42 | TEXTTYPE is the type of text, such as 'regexp, 'string, 'tagname, | 42 | TEXTTYPE is the type of text, such as `regexp', `string', `tagname', |
| 43 | 'tagregexp, or 'tagcompletions. | 43 | `tagregexp', or `tagcompletions'. |
| 44 | TYPE is the type of search, meaning that SEARCHTEXT is compared to | 44 | TYPE is the type of search, meaning that SEARCHTEXT is compared to |
| 45 | filename, tagname (tags table), references (uses of a tag) , or | 45 | filename, tagname (tags table), references (uses of a tag) , or |
| 46 | symbol (uses of something not in the tag table.) | 46 | symbol (uses of something not in the tag table.) |
| 47 | SCOPE is the scope of the search, such as 'project or 'subdirs." | 47 | SCOPE is the scope of the search, such as `project' or `subdir'." |
| 48 | ;; CScope is an interactive program. It uses number flags | 48 | ;; CScope is an interactive program. It uses number flags |
| 49 | ;; in order to perform command line searches. Useful for this | 49 | ;; in order to perform command line searches. Useful for this |
| 50 | ;; tool are: | 50 | ;; tool are: |
diff --git a/lisp/cedet/cedet-global.el b/lisp/cedet/cedet-global.el index e3cd7a852a8..bc058f3d4e6 100644 --- a/lisp/cedet/cedet-global.el +++ b/lisp/cedet/cedet-global.el | |||
| @@ -44,12 +44,12 @@ GTAGS is used to create the tags table queried by the `global' command." | |||
| 44 | (defun cedet-gnu-global-search (searchtext texttype type scope) | 44 | (defun cedet-gnu-global-search (searchtext texttype type scope) |
| 45 | "Perform a search with GNU Global, return the created buffer. | 45 | "Perform a search with GNU Global, return the created buffer. |
| 46 | SEARCHTEXT is text to find. | 46 | SEARCHTEXT is text to find. |
| 47 | TEXTTYPE is the type of text, such as 'regexp, 'string, 'tagname, | 47 | TEXTTYPE is the type of text, such as `regexp', `string', `tagname', |
| 48 | 'tagregexp, or 'tagcompletions. | 48 | `tagregexp', or `tagcompletions'. |
| 49 | TYPE is the type of search, meaning that SEARCHTEXT is compared to | 49 | TYPE is the type of search, meaning that SEARCHTEXT is compared to |
| 50 | filename, tagname (tags table), references (uses of a tag) , or | 50 | filename, tagname (tags table), references (uses of a tag) , or |
| 51 | symbol (uses of something not in the tag table.) | 51 | symbol (uses of something not in the tag table.) |
| 52 | SCOPE is the scope of the search, such as 'project or 'subdirs." | 52 | SCOPE is the scope of the search, such as `project' or `subdirs'." |
| 53 | (let ((flgs (cond ((eq type 'file) | 53 | (let ((flgs (cond ((eq type 'file) |
| 54 | "-a") | 54 | "-a") |
| 55 | (t "-xa"))) | 55 | (t "-xa"))) |
diff --git a/lisp/cedet/cedet-idutils.el b/lisp/cedet/cedet-idutils.el index f2fbe193621..57f522bf5b4 100644 --- a/lisp/cedet/cedet-idutils.el +++ b/lisp/cedet/cedet-idutils.el | |||
| @@ -52,12 +52,12 @@ | |||
| 52 | (defun cedet-idutils-search (searchtext texttype type scope) | 52 | (defun cedet-idutils-search (searchtext texttype type scope) |
| 53 | "Perform a search with ID Utils, return the created buffer. | 53 | "Perform a search with ID Utils, return the created buffer. |
| 54 | SEARCHTEXT is text to find. | 54 | SEARCHTEXT is text to find. |
| 55 | TEXTTYPE is the type of text, such as 'regexp, 'string, 'tagname, | 55 | TEXTTYPE is the type of text, such as `regexp', `string', `tagname', |
| 56 | 'tagregexp, or 'tagcompletions. | 56 | `tagregexp', or `tagcompletions'. |
| 57 | TYPE is the type of search, meaning that SEARCHTEXT is compared to | 57 | TYPE is the type of search, meaning that SEARCHTEXT is compared to |
| 58 | filename, tagname (tags table), references (uses of a tag) , or | 58 | filename, tagname (tags table), references (uses of a tag) , or |
| 59 | symbol (uses of something not in the tag table.) | 59 | symbol (uses of something not in the tag table.) |
| 60 | SCOPE is the scope of the search, such as 'project or 'subdirs. | 60 | SCOPE is the scope of the search, such as `project' or `subdirs'. |
| 61 | Note: Scope is not yet supported." | 61 | Note: Scope is not yet supported." |
| 62 | (if (eq type 'file) | 62 | (if (eq type 'file) |
| 63 | ;; Calls for file stuff is very simple. | 63 | ;; Calls for file stuff is very simple. |
diff --git a/lisp/cedet/ede/files.el b/lisp/cedet/ede/files.el index a6a0af100f5..cc67d9f8bb6 100644 --- a/lisp/cedet/ede/files.el +++ b/lisp/cedet/ede/files.el | |||
| @@ -425,7 +425,7 @@ FILENAME should be just a filename which occurs in a directory controlled | |||
| 425 | by this project. | 425 | by this project. |
| 426 | Optional argument FORCE forces the default filename to be provided even if it | 426 | Optional argument FORCE forces the default filename to be provided even if it |
| 427 | doesn't exist. | 427 | doesn't exist. |
| 428 | If FORCE equals 'newfile, then the cache is ignored and a new file in THIS | 428 | If FORCE equals `newfile', then the cache is ignored and a new file in THIS |
| 429 | is returned." | 429 | is returned." |
| 430 | (require 'ede/locate) | 430 | (require 'ede/locate) |
| 431 | (let* ((loc (ede-get-locator-object this)) | 431 | (let* ((loc (ede-get-locator-object this)) |
diff --git a/lisp/cedet/ede/srecode.el b/lisp/cedet/ede/srecode.el index 2d3636006f9..dee52cab8f9 100644 --- a/lisp/cedet/ede/srecode.el +++ b/lisp/cedet/ede/srecode.el | |||
| @@ -75,7 +75,7 @@ updated in FORMS." | |||
| 75 | TEMPLATE should specify a context by using a string format of: | 75 | TEMPLATE should specify a context by using a string format of: |
| 76 | context:templatename | 76 | context:templatename |
| 77 | Add DICTIONARY-ENTRIES into the dictionary before insertion. | 77 | Add DICTIONARY-ENTRIES into the dictionary before insertion. |
| 78 | Note: Just like `srecode-insert', but templates found in 'ede app." | 78 | Note: Just like `srecode-insert', but templates found in `ede' app." |
| 79 | (require 'srecode/insert) | 79 | (require 'srecode/insert) |
| 80 | (ede-srecode-insert-with-dictionary template | 80 | (ede-srecode-insert-with-dictionary template |
| 81 | 81 | ||
diff --git a/lisp/cedet/semantic/analyze.el b/lisp/cedet/semantic/analyze.el index 6851ad556a7..d3cbe610a79 100644 --- a/lisp/cedet/semantic/analyze.el +++ b/lisp/cedet/semantic/analyze.el | |||
| @@ -356,7 +356,7 @@ This function knows of flags: | |||
| 356 | (defun semantic-analyze-find-tag (name &optional tagclass scope) | 356 | (defun semantic-analyze-find-tag (name &optional tagclass scope) |
| 357 | "Return the first tag found with NAME or nil if not found. | 357 | "Return the first tag found with NAME or nil if not found. |
| 358 | Optional argument TAGCLASS specifies the class of tag to return, | 358 | Optional argument TAGCLASS specifies the class of tag to return, |
| 359 | such as 'function or 'variable. | 359 | such as `function' or `variable'. |
| 360 | Optional argument SCOPE specifies a scope object which has | 360 | Optional argument SCOPE specifies a scope object which has |
| 361 | additional tags which are in SCOPE and do not need prefixing to | 361 | additional tags which are in SCOPE and do not need prefixing to |
| 362 | find. | 362 | find. |
diff --git a/lisp/cedet/semantic/ctxt.el b/lisp/cedet/semantic/ctxt.el index 54ef2ee7594..2f6eba467bf 100644 --- a/lisp/cedet/semantic/ctxt.el +++ b/lisp/cedet/semantic/ctxt.el | |||
| @@ -55,7 +55,7 @@ Used for identifying arguments to functions.") | |||
| 55 | Return non-nil if there are no more context levels. | 55 | Return non-nil if there are no more context levels. |
| 56 | Overloaded functions using `up-context' take no parameters. | 56 | Overloaded functions using `up-context' take no parameters. |
| 57 | BOUNDS-TYPE is a symbol representing a tag class to restrict | 57 | BOUNDS-TYPE is a symbol representing a tag class to restrict |
| 58 | movement to. If this is nil, 'function is used. | 58 | movement to. If this is nil, `function' is used. |
| 59 | This will find the smallest tag of that class (function, variable, | 59 | This will find the smallest tag of that class (function, variable, |
| 60 | type, etc) and make sure non-nil is returned if you cannot | 60 | type, etc) and make sure non-nil is returned if you cannot |
| 61 | go up past the bounds of that tag." | 61 | go up past the bounds of that tag." |
diff --git a/lisp/cedet/semantic/db-find.el b/lisp/cedet/semantic/db-find.el index 18c749b098e..9a81d18b7d5 100644 --- a/lisp/cedet/semantic/db-find.el +++ b/lisp/cedet/semantic/db-find.el | |||
| @@ -434,7 +434,7 @@ Default action as described in `semanticdb-find-translate-path'." | |||
| 434 | "All include tags scanned, plus action taken on the tag. | 434 | "All include tags scanned, plus action taken on the tag. |
| 435 | Each entry is an alist: | 435 | Each entry is an alist: |
| 436 | (ACTION . TAG) | 436 | (ACTION . TAG) |
| 437 | where ACTION is one of 'scanned, 'duplicate, 'lost | 437 | where ACTION is one of `scanned', `duplicate', `lost' |
| 438 | and TAG is a clone of the include tag that was found.") | 438 | and TAG is a clone of the include tag that was found.") |
| 439 | (make-variable-buffer-local 'semanticdb-find-scanned-include-tags) | 439 | (make-variable-buffer-local 'semanticdb-find-scanned-include-tags) |
| 440 | 440 | ||
diff --git a/lisp/cedet/semantic/db-typecache.el b/lisp/cedet/semantic/db-typecache.el index 7e0f52fe0b3..a6d9b3c7979 100644 --- a/lisp/cedet/semantic/db-typecache.el +++ b/lisp/cedet/semantic/db-typecache.el | |||
| @@ -412,7 +412,7 @@ found tag to be loaded." | |||
| 412 | (defun semanticdb-typecache-find-by-name-helper (name table) | 412 | (defun semanticdb-typecache-find-by-name-helper (name table) |
| 413 | "Find the tag with NAME in TABLE, which is from a typecache. | 413 | "Find the tag with NAME in TABLE, which is from a typecache. |
| 414 | If more than one tag has NAME in TABLE, we will prefer the tag that | 414 | If more than one tag has NAME in TABLE, we will prefer the tag that |
| 415 | is of class 'type." | 415 | is of class `type'." |
| 416 | (let* ((names (semantic-find-tags-by-name name table)) | 416 | (let* ((names (semantic-find-tags-by-name name table)) |
| 417 | (nmerge (semanticdb-typecache-merge-streams names nil)) | 417 | (nmerge (semanticdb-typecache-merge-streams names nil)) |
| 418 | (types (semantic-find-tags-by-class 'type nmerge))) | 418 | (types (semantic-find-tags-by-class 'type nmerge))) |
diff --git a/lisp/cedet/semantic/edit.el b/lisp/cedet/semantic/edit.el index 2a25bb5db1c..9319e02c417 100644 --- a/lisp/cedet/semantic/edit.el +++ b/lisp/cedet/semantic/edit.el | |||
| @@ -464,7 +464,7 @@ See `semantic-edits-change-leaf-tag' for details on parents." | |||
| 464 | (defun semantic-parse-changes-failed (&rest args) | 464 | (defun semantic-parse-changes-failed (&rest args) |
| 465 | "Signal that Semantic failed to parse changes. | 465 | "Signal that Semantic failed to parse changes. |
| 466 | That is, display a message by passing all ARGS to `format-message', then throw | 466 | That is, display a message by passing all ARGS to `format-message', then throw |
| 467 | a 'semantic-parse-changes-failed exception with value t." | 467 | a `semantic-parse-changes-failed' exception with value t." |
| 468 | (when semantic-edits-verbose-flag | 468 | (when semantic-edits-verbose-flag |
| 469 | (message "Semantic parse changes failed: %S" | 469 | (message "Semantic parse changes failed: %S" |
| 470 | (apply #'format-message args))) | 470 | (apply #'format-message args))) |
| @@ -516,7 +516,7 @@ the semantic cache to see what needs to be changed." | |||
| 516 | (defun semantic-edits-incremental-parser-1 () | 516 | (defun semantic-edits-incremental-parser-1 () |
| 517 | "Incrementally reparse the current buffer. | 517 | "Incrementally reparse the current buffer. |
| 518 | Return the list of tags that changed. | 518 | Return the list of tags that changed. |
| 519 | If the incremental parse fails, throw a 'semantic-parse-changes-failed | 519 | If the incremental parse fails, throw a `semantic-parse-changes-failed' |
| 520 | exception with value t, that can be caught to schedule a full reparse. | 520 | exception with value t, that can be caught to schedule a full reparse. |
| 521 | This function is for internal use by `semantic-edits-incremental-parser'." | 521 | This function is for internal use by `semantic-edits-incremental-parser'." |
| 522 | (let* ((changed-tags nil) | 522 | (let* ((changed-tags nil) |
diff --git a/lisp/cedet/semantic/find.el b/lisp/cedet/semantic/find.el index ec38a37295f..8b01b25d99e 100644 --- a/lisp/cedet/semantic/find.el +++ b/lisp/cedet/semantic/find.el | |||
| @@ -307,7 +307,7 @@ attempting to do completions." | |||
| 307 | (defmacro semantic-find-tags-by-class (class &optional table) | 307 | (defmacro semantic-find-tags-by-class (class &optional table) |
| 308 | "Find all tags of class CLASS in TABLE. | 308 | "Find all tags of class CLASS in TABLE. |
| 309 | CLASS is a symbol representing the class of the token, such as | 309 | CLASS is a symbol representing the class of the token, such as |
| 310 | 'variable, of 'function.. | 310 | `variable' or `function'. |
| 311 | TABLE is a tag table. See `semantic-something-to-tag-table'." | 311 | TABLE is a tag table. See `semantic-something-to-tag-table'." |
| 312 | `(semantic--find-tags-by-macro | 312 | `(semantic--find-tags-by-macro |
| 313 | (eq ,class (semantic-tag-class (car tags))) | 313 | (eq ,class (semantic-tag-class (car tags))) |
| @@ -316,7 +316,7 @@ TABLE is a tag table. See `semantic-something-to-tag-table'." | |||
| 316 | (defmacro semantic-filter-tags-by-class (class &optional table) | 316 | (defmacro semantic-filter-tags-by-class (class &optional table) |
| 317 | "Find all tags of class not in the list CLASS in TABLE. | 317 | "Find all tags of class not in the list CLASS in TABLE. |
| 318 | CLASS is a list of symbols representing the class of the token, | 318 | CLASS is a list of symbols representing the class of the token, |
| 319 | such as 'variable, of 'function.. | 319 | such as `variable' or `function'. |
| 320 | TABLE is a tag table. See `semantic-something-to-tag-table'." | 320 | TABLE is a tag table. See `semantic-something-to-tag-table'." |
| 321 | `(semantic--find-tags-by-macro | 321 | `(semantic--find-tags-by-macro |
| 322 | (not (memq (semantic-tag-class (car tags)) ,class)) | 322 | (not (memq (semantic-tag-class (car tags)) ,class)) |
diff --git a/lisp/cedet/semantic/grammar.el b/lisp/cedet/semantic/grammar.el index 53b5ea61f2d..785a05816b7 100644 --- a/lisp/cedet/semantic/grammar.el +++ b/lisp/cedet/semantic/grammar.el | |||
| @@ -1738,7 +1738,7 @@ Otherwise return nil." | |||
| 1738 | (define-mode-local-override semantic-tag-boundary-p | 1738 | (define-mode-local-override semantic-tag-boundary-p |
| 1739 | semantic-grammar-mode (tag) | 1739 | semantic-grammar-mode (tag) |
| 1740 | "Return non-nil for tags that should have a boundary drawn. | 1740 | "Return non-nil for tags that should have a boundary drawn. |
| 1741 | Only tags of type 'nonterminal will be so marked." | 1741 | Only tags of type `nonterminal' will be so marked." |
| 1742 | (let ((c (semantic-tag-class tag))) | 1742 | (let ((c (semantic-tag-class tag))) |
| 1743 | (eq c 'nonterminal))) | 1743 | (eq c 'nonterminal))) |
| 1744 | 1744 | ||
diff --git a/lisp/cedet/semantic/java.el b/lisp/cedet/semantic/java.el index b103c3ce157..f81ad74cf90 100644 --- a/lisp/cedet/semantic/java.el +++ b/lisp/cedet/semantic/java.el | |||
| @@ -281,7 +281,7 @@ Optional argument COLOR indicates that color should be mixed in." | |||
| 281 | Java have documentation set in a comment preceding TAG's definition. | 281 | Java have documentation set in a comment preceding TAG's definition. |
| 282 | Attempt to strip out comment syntactic sugar, unless optional argument | 282 | Attempt to strip out comment syntactic sugar, unless optional argument |
| 283 | NOSNARF is non-nil. | 283 | NOSNARF is non-nil. |
| 284 | If NOSNARF is 'lex, then return the semantic lex token." | 284 | If NOSNARF is `lex', then return the semantic lex token." |
| 285 | (when (or tag (setq tag (semantic-current-tag))) | 285 | (when (or tag (setq tag (semantic-current-tag))) |
| 286 | (with-current-buffer (semantic-tag-buffer tag) | 286 | (with-current-buffer (semantic-tag-buffer tag) |
| 287 | (save-excursion | 287 | (save-excursion |
diff --git a/lisp/cedet/semantic/lex-spp.el b/lisp/cedet/semantic/lex-spp.el index a81b23ca750..2de579b5b3a 100644 --- a/lisp/cedet/semantic/lex-spp.el +++ b/lisp/cedet/semantic/lex-spp.el | |||
| @@ -698,7 +698,7 @@ and what valid VAL values are." | |||
| 698 | 698 | ||
| 699 | (defun semantic-lex-spp-symbol-merge (txt) | 699 | (defun semantic-lex-spp-symbol-merge (txt) |
| 700 | "Merge the tokens listed in TXT. | 700 | "Merge the tokens listed in TXT. |
| 701 | TXT might contain further 'spp-symbol-merge, which will | 701 | TXT might contain further `spp-symbol-merge', which will |
| 702 | be merged recursively." | 702 | be merged recursively." |
| 703 | ;; We need to merge the tokens in the 'text segment together, | 703 | ;; We need to merge the tokens in the 'text segment together, |
| 704 | ;; and produce a single symbol from it. | 704 | ;; and produce a single symbol from it. |
| @@ -1272,7 +1272,7 @@ VALFORM are forms that return the name of the thing being included, and the | |||
| 1272 | type of include. The return value should be of the form: | 1272 | type of include. The return value should be of the form: |
| 1273 | (NAME . TYPE) | 1273 | (NAME . TYPE) |
| 1274 | where NAME is the name of the include, and TYPE is the type of the include, | 1274 | where NAME is the name of the include, and TYPE is the type of the include, |
| 1275 | where a valid symbol is 'system, or nil." | 1275 | where a valid symbol is `system', or nil." |
| 1276 | (let ((start (make-symbol "start")) | 1276 | (let ((start (make-symbol "start")) |
| 1277 | (end (make-symbol "end")) | 1277 | (end (make-symbol "end")) |
| 1278 | (val (make-symbol "val")) | 1278 | (val (make-symbol "val")) |
diff --git a/lisp/cedet/semantic/mru-bookmark.el b/lisp/cedet/semantic/mru-bookmark.el index 13cfc586fd7..461097ecb7c 100644 --- a/lisp/cedet/semantic/mru-bookmark.el +++ b/lisp/cedet/semantic/mru-bookmark.el | |||
| @@ -77,7 +77,7 @@ Set this when the tag gets unlinked from the buffer it belongs to.") | |||
| 77 | :initform t | 77 | :initform t |
| 78 | :documentation | 78 | :documentation |
| 79 | "The reason this tag is interesting. | 79 | "The reason this tag is interesting. |
| 80 | Nice values are 'edit, 'read, 'jump, and 'mark. | 80 | Nice values include the following: |
| 81 | edit - created because the tag text was edited. | 81 | edit - created because the tag text was edited. |
| 82 | read - created because point lingered in tag text. | 82 | read - created because point lingered in tag text. |
| 83 | jump - jumped to another tag from this tag. | 83 | jump - jumped to another tag from this tag. |
diff --git a/lisp/cedet/semantic/scope.el b/lisp/cedet/semantic/scope.el index 3b38e8a61c3..5dc49d6cb3c 100644 --- a/lisp/cedet/semantic/scope.el +++ b/lisp/cedet/semantic/scope.el | |||
| @@ -461,8 +461,8 @@ implicit \"object\"." | |||
| 461 | (define-overloadable-function semantic-analyze-scope-calculate-access (type scope) | 461 | (define-overloadable-function semantic-analyze-scope-calculate-access (type scope) |
| 462 | "Calculate the access class for TYPE as defined by the current SCOPE. | 462 | "Calculate the access class for TYPE as defined by the current SCOPE. |
| 463 | Access is related to the :parents in SCOPE. If type is a member of SCOPE | 463 | Access is related to the :parents in SCOPE. If type is a member of SCOPE |
| 464 | then access would be 'private. If TYPE is inherited by a member of SCOPE, | 464 | then access would be `private'. If TYPE is inherited by a member of SCOPE, |
| 465 | the access would be 'protected. Otherwise, access is 'public") | 465 | the access would be `protected'. Otherwise, access is `public'.") |
| 466 | 466 | ||
| 467 | (defun semantic-analyze-scope-calculate-access-default (type scope) | 467 | (defun semantic-analyze-scope-calculate-access-default (type scope) |
| 468 | "Calculate the access class for TYPE as defined by the current SCOPE." | 468 | "Calculate the access class for TYPE as defined by the current SCOPE." |
| @@ -545,7 +545,8 @@ tag is not something you can complete from within TYPE." | |||
| 545 | "Return all parts of TYPE, a tag representing a TYPE declaration. | 545 | "Return all parts of TYPE, a tag representing a TYPE declaration. |
| 546 | SCOPE is the scope object. | 546 | SCOPE is the scope object. |
| 547 | NOINHERIT turns off searching of inherited tags. | 547 | NOINHERIT turns off searching of inherited tags. |
| 548 | PROTECTION specifies the type of access requested, such as 'public or 'private." | 548 | PROTECTION specifies the type of access requested, |
| 549 | such as `public' or `private'." | ||
| 549 | (if (not type) | 550 | (if (not type) |
| 550 | nil | 551 | nil |
| 551 | (let* ((access (semantic-analyze-scope-calculate-access type scope)) | 552 | (let* ((access (semantic-analyze-scope-calculate-access type scope)) |
| @@ -593,8 +594,8 @@ whose tags can be searched when needed, OR it may be a scope object. | |||
| 593 | ACCESS is the level of access we filter on child supplied tags. | 594 | ACCESS is the level of access we filter on child supplied tags. |
| 594 | For languages with protection on specific methods or slots, | 595 | For languages with protection on specific methods or slots, |
| 595 | it should strip out those not accessible by methods of TYPE. | 596 | it should strip out those not accessible by methods of TYPE. |
| 596 | An ACCESS of 'public means not in a method of a subclass of type. | 597 | An ACCESS of `public' means not in a method of a subclass of type. |
| 597 | A value of 'private means we can access private parts of the originating | 598 | A value of `private' means we can access private parts of the originating |
| 598 | type." | 599 | type." |
| 599 | (let ((ret nil)) | 600 | (let ((ret nil)) |
| 600 | (semantic-analyze-scoped-inherited-tag-map | 601 | (semantic-analyze-scoped-inherited-tag-map |
diff --git a/lisp/cedet/semantic/symref.el b/lisp/cedet/semantic/symref.el index 85acd50712b..f7404fc0177 100644 --- a/lisp/cedet/semantic/symref.el +++ b/lisp/cedet/semantic/symref.el | |||
| @@ -78,7 +78,7 @@ | |||
| 78 | ;;; Code: | 78 | ;;; Code: |
| 79 | (defcustom semantic-symref-tool 'detect | 79 | (defcustom semantic-symref-tool 'detect |
| 80 | "The active symbol reference tool name. | 80 | "The active symbol reference tool name. |
| 81 | The tool symbol can be 'detect, or a symbol that is the name of | 81 | The tool symbol can be `detect', or a symbol that is the name of |
| 82 | a tool that can be used for symbol referencing." | 82 | a tool that can be used for symbol referencing." |
| 83 | :type 'symbol | 83 | :type 'symbol |
| 84 | :group 'semantic) | 84 | :group 'semantic) |
| @@ -309,9 +309,9 @@ Can be 'project, 'target, or 'file.") | |||
| 309 | :type symbol | 309 | :type symbol |
| 310 | :documentation | 310 | :documentation |
| 311 | "The kind of search results desired. | 311 | "The kind of search results desired. |
| 312 | Can be 'line, 'file, or 'tag. | 312 | Can be `line', `file', or `tag'. |
| 313 | The type of result can be converted from 'line to 'file, or 'line to 'tag, | 313 | The type of result can be converted from `line' to `file', or `line' to `tag', |
| 314 | but not from 'file to 'line or 'tag.") | 314 | but not from `file' to `line' or `tag'.") |
| 315 | ) | 315 | ) |
| 316 | "Baseclass for all symbol references tools. | 316 | "Baseclass for all symbol references tools. |
| 317 | A symbol reference tool supplies functionality to identify the locations of | 317 | A symbol reference tool supplies functionality to identify the locations of |
diff --git a/lisp/cedet/semantic/tag-ls.el b/lisp/cedet/semantic/tag-ls.el index ad072a40960..04a6b4e99ff 100644 --- a/lisp/cedet/semantic/tag-ls.el +++ b/lisp/cedet/semantic/tag-ls.el | |||
| @@ -199,7 +199,7 @@ Other languages qualify names within a Namespace (such as C++) which | |||
| 199 | result in a different package like structure. | 199 | result in a different package like structure. |
| 200 | 200 | ||
| 201 | Languages which do not override this function will just search the | 201 | Languages which do not override this function will just search the |
| 202 | stream for a tag of class 'package, and return that." | 202 | stream for a tag of class `package', and return that." |
| 203 | (let ((stream (semantic-something-to-tag-table | 203 | (let ((stream (semantic-something-to-tag-table |
| 204 | (or stream-or-buffer tag)))) | 204 | (or stream-or-buffer tag)))) |
| 205 | (:override-with-args (tag stream)))) | 205 | (:override-with-args (tag stream)))) |
diff --git a/lisp/cedet/semantic/texi.el b/lisp/cedet/semantic/texi.el index 7d663f3e3ac..e5b5823dad5 100644 --- a/lisp/cedet/semantic/texi.el +++ b/lisp/cedet/semantic/texi.el | |||
| @@ -300,8 +300,8 @@ can handle the @menu environment.") | |||
| 300 | texinfo-mode (&optional point) | 300 | texinfo-mode (&optional point) |
| 301 | "Determine the class of tags that can be used at POINT. | 301 | "Determine the class of tags that can be used at POINT. |
| 302 | For texinfo, there two possibilities returned. | 302 | For texinfo, there two possibilities returned. |
| 303 | 1) 'function - for a call to a texinfo function | 303 | 1) `function' - for a call to a texinfo function |
| 304 | 2) 'word - indicates an english word. | 304 | 2) `word' - indicates an English word. |
| 305 | It would be nice to know function arguments too, but not today." | 305 | It would be nice to know function arguments too, but not today." |
| 306 | (let ((sym (semantic-ctxt-current-symbol))) | 306 | (let ((sym (semantic-ctxt-current-symbol))) |
| 307 | (if (and sym (= (aref (car sym) 0) ?@)) | 307 | (if (and sym (= (aref (car sym) 0) ?@)) |
diff --git a/lisp/cedet/semantic/wisent/comp.el b/lisp/cedet/semantic/wisent/comp.el index 787e30c342a..ace05e9f4b6 100644 --- a/lisp/cedet/semantic/wisent/comp.el +++ b/lisp/cedet/semantic/wisent/comp.el | |||
| @@ -2641,7 +2641,7 @@ Decide what to do for each type of token if seen as the lookahead | |||
| 2641 | token in specified state. The value returned is used as the default | 2641 | token in specified state. The value returned is used as the default |
| 2642 | action for the state. In addition, ACTROW is filled with what to do | 2642 | action for the state. In addition, ACTROW is filled with what to do |
| 2643 | for each kind of token, index by symbol number, with nil meaning do | 2643 | for each kind of token, index by symbol number, with nil meaning do |
| 2644 | the default action. The value 'error, means this situation is an | 2644 | the default action. The value `error', means this situation is an |
| 2645 | error. The parser recognizes this value specially. | 2645 | error. The parser recognizes this value specially. |
| 2646 | 2646 | ||
| 2647 | This is where conflicts are resolved. The loop over lookahead rules | 2647 | This is where conflicts are resolved. The loop over lookahead rules |
diff --git a/lisp/cedet/semantic/wisent/javascript.el b/lisp/cedet/semantic/wisent/javascript.el index 4c93c0dc4fa..e17dc68e1f6 100644 --- a/lisp/cedet/semantic/wisent/javascript.el +++ b/lisp/cedet/semantic/wisent/javascript.el | |||
| @@ -88,8 +88,8 @@ is to return a symbol based on type modifiers." | |||
| 88 | (define-mode-local-override semantic-analyze-scope-calculate-access js-mode (type scope) | 88 | (define-mode-local-override semantic-analyze-scope-calculate-access js-mode (type scope) |
| 89 | "Calculate the access class for TYPE as defined by the current SCOPE. | 89 | "Calculate the access class for TYPE as defined by the current SCOPE. |
| 90 | Access is related to the :parents in SCOPE. If type is a member of SCOPE | 90 | Access is related to the :parents in SCOPE. If type is a member of SCOPE |
| 91 | then access would be 'private. If TYPE is inherited by a member of SCOPE, | 91 | then access would be `private'. If TYPE is inherited by a member of SCOPE, |
| 92 | the access would be 'protected. Otherwise, access is 'public." | 92 | the access would be `protected'. Otherwise, access is `public'." |
| 93 | nil) | 93 | nil) |
| 94 | 94 | ||
| 95 | (define-mode-local-override semantic-ctxt-current-symbol js-mode (&optional point) | 95 | (define-mode-local-override semantic-ctxt-current-symbol js-mode (&optional point) |
diff --git a/lisp/cedet/srecode/dictionary.el b/lisp/cedet/srecode/dictionary.el index a0205177caa..de6f21be094 100644 --- a/lisp/cedet/srecode/dictionary.el +++ b/lisp/cedet/srecode/dictionary.el | |||
| @@ -560,7 +560,7 @@ where | |||
| 560 | 560 | ||
| 561 | ENTRY_N = (NAME ENTRY_N_1 ENTRY_N_2 ...) | TAG | 561 | ENTRY_N = (NAME ENTRY_N_1 ENTRY_N_2 ...) | TAG |
| 562 | 562 | ||
| 563 | where TAG is a semantic tag of class 'variable. The (NAME ... ) | 563 | where TAG is a semantic tag of class `variable'. The (NAME ... ) |
| 564 | form creates a child dictionary which is stored under the name | 564 | form creates a child dictionary which is stored under the name |
| 565 | NAME. The TAG form creates a value entry or section dictionary | 565 | NAME. The TAG form creates a value entry or section dictionary |
| 566 | entry whose name is the name of the tag. | 566 | entry whose name is the name of the tag. |
diff --git a/lisp/cedet/srecode/document.el b/lisp/cedet/srecode/document.el index ad15b3ef6fd..21acc61fef2 100644 --- a/lisp/cedet/srecode/document.el +++ b/lisp/cedet/srecode/document.el | |||
| @@ -385,7 +385,7 @@ It is assumed that the comment occurs just in front of FCN-IN." | |||
| 385 | 385 | ||
| 386 | (when (or (not fcn-in) | 386 | (when (or (not fcn-in) |
| 387 | (not (semantic-tag-of-class-p fcn-in 'function))) | 387 | (not (semantic-tag-of-class-p fcn-in 'function))) |
| 388 | (error "No tag of class 'function to insert comment for")) | 388 | (error "No tag of class `function' to insert comment for")) |
| 389 | 389 | ||
| 390 | (if (not (eq (current-buffer) (semantic-tag-buffer fcn-in))) | 390 | (if (not (eq (current-buffer) (semantic-tag-buffer fcn-in))) |
| 391 | (error "Only insert comments for tags in the current buffer")) | 391 | (error "Only insert comments for tags in the current buffer")) |
| @@ -496,7 +496,7 @@ It is assumed that the comment occurs just after VAR-IN." | |||
| 496 | 496 | ||
| 497 | (when (or (not var-in) | 497 | (when (or (not var-in) |
| 498 | (not (semantic-tag-of-class-p var-in 'variable))) | 498 | (not (semantic-tag-of-class-p var-in 'variable))) |
| 499 | (error "No tag of class 'variable to insert comment for")) | 499 | (error "No tag of class `variable' to insert comment for")) |
| 500 | 500 | ||
| 501 | (if (not (eq (current-buffer) (semantic-tag-buffer var-in))) | 501 | (if (not (eq (current-buffer) (semantic-tag-buffer var-in))) |
| 502 | (error "Only insert comments for tags in the current buffer")) | 502 | (error "Only insert comments for tags in the current buffer")) |
diff --git a/lisp/cedet/srecode/insert.el b/lisp/cedet/srecode/insert.el index 4e25e1f5ca0..455977bbe03 100644 --- a/lisp/cedet/srecode/insert.el +++ b/lisp/cedet/srecode/insert.el | |||
| @@ -373,8 +373,8 @@ Can't be blank, or it might be used by regular variable insertion.") | |||
| 373 | :initarg :where | 373 | :initarg :where |
| 374 | :documentation | 374 | :documentation |
| 375 | "This should be `begin' or `end', indicating where to insert a CR. | 375 | "This should be `begin' or `end', indicating where to insert a CR. |
| 376 | When `begin', insert a CR if not at 'bol'. | 376 | When `begin', insert a CR if not at `bol'. |
| 377 | When `end', insert a CR if not at 'eol'.") | 377 | When `end', insert a CR if not at `eol'.") |
| 378 | ;; @TODO - Add slot and control for the number of blank | 378 | ;; @TODO - Add slot and control for the number of blank |
| 379 | ;; lines before and after point. | 379 | ;; lines before and after point. |
| 380 | ) | 380 | ) |
diff --git a/lisp/cedet/srecode/semantic.el b/lisp/cedet/srecode/semantic.el index 344b908da32..5195016e22a 100644 --- a/lisp/cedet/srecode/semantic.el +++ b/lisp/cedet/srecode/semantic.el | |||
| @@ -210,7 +210,7 @@ variable default values, and other things." | |||
| 210 | ;;; :tagtype ARGUMENT HANDLING | 210 | ;;; :tagtype ARGUMENT HANDLING |
| 211 | ;; | 211 | ;; |
| 212 | ;; When a :tagtype argument is required, identify the current tag, of | 212 | ;; When a :tagtype argument is required, identify the current tag, of |
| 213 | ;; cf class 'type. Apply those parameters to the dictionary. | 213 | ;; class 'type'. Apply those parameters to the dictionary. |
| 214 | 214 | ||
| 215 | (defun srecode-semantic-handle-:tagtype (dict) | 215 | (defun srecode-semantic-handle-:tagtype (dict) |
| 216 | "Add macros into the dictionary DICT based on a tag of class type at point. | 216 | "Add macros into the dictionary DICT based on a tag of class type at point. |
| @@ -218,7 +218,7 @@ Assumes the cursor is in a tag of class type. If not, throw an error." | |||
| 218 | (let ((typetag (or srecode-semantic-selected-tag | 218 | (let ((typetag (or srecode-semantic-selected-tag |
| 219 | (semantic-current-tag-of-class 'type)))) | 219 | (semantic-current-tag-of-class 'type)))) |
| 220 | (when (not typetag) | 220 | (when (not typetag) |
| 221 | (error "Cursor is not in a TAG of class 'type")) | 221 | (error "Cursor is not in a TAG of class `type'")) |
| 222 | (srecode-semantic-apply-tag-to-dict | 222 | (srecode-semantic-apply-tag-to-dict |
| 223 | typetag | 223 | typetag |
| 224 | dict))) | 224 | dict))) |
| @@ -285,8 +285,8 @@ CTXT is the pre-calculated context." | |||
| 285 | "Insert TAG into a buffer using srecode templates at point. | 285 | "Insert TAG into a buffer using srecode templates at point. |
| 286 | 286 | ||
| 287 | Optional STYLE-OPTION is a list of minor configuration of styles, | 287 | Optional STYLE-OPTION is a list of minor configuration of styles, |
| 288 | such as the symbol 'prototype for prototype functions, or | 288 | such as the symbol `prototype' for prototype functions, or |
| 289 | 'system for system includes, and 'doxygen, for a doxygen style | 289 | `system' for system includes, and `doxygen', for a doxygen style |
| 290 | comment. | 290 | comment. |
| 291 | 291 | ||
| 292 | Optional third argument POINT-INSERT-FCN is a hook that is run after | 292 | Optional third argument POINT-INSERT-FCN is a hook that is run after |
diff --git a/lisp/dired.el b/lisp/dired.el index 35d883a0115..9d0b13e2279 100644 --- a/lisp/dired.el +++ b/lisp/dired.el | |||
| @@ -107,7 +107,7 @@ Note that `ls-lisp' does not support as many options as GNU ls, though. | |||
| 107 | For more details, see Info node `(emacs)ls in Lisp'." | 107 | For more details, see Info node `(emacs)ls in Lisp'." |
| 108 | :group 'dired | 108 | :group 'dired |
| 109 | :type '(choice (const :tag | 109 | :type '(choice (const :tag |
| 110 | "Use --dired only if 'ls' supports it" unspecified) | 110 | "Use --dired only if `ls' supports it" unspecified) |
| 111 | (const :tag "Do not use --dired" nil) | 111 | (const :tag "Do not use --dired" nil) |
| 112 | (other :tag "Always use --dired" t))) | 112 | (other :tag "Always use --dired" t))) |
| 113 | 113 | ||
diff --git a/lisp/doc-view.el b/lisp/doc-view.el index 15a1dc3b9bd..e5f0e89a369 100644 --- a/lisp/doc-view.el +++ b/lisp/doc-view.el | |||
| @@ -1021,7 +1021,7 @@ If PAGE is nil, convert the whole document." | |||
| 1021 | 1021 | ||
| 1022 | (defun doc-view-pdfdraw-program-subcommand () | 1022 | (defun doc-view-pdfdraw-program-subcommand () |
| 1023 | "Return the mutool subcommand replacing mudraw. | 1023 | "Return the mutool subcommand replacing mudraw. |
| 1024 | Recent MuPDF distributions replaced 'mudraw' with 'mutool draw'." | 1024 | Recent MuPDF distributions replaced `mudraw' with `mutool draw'." |
| 1025 | (when (string-match "mutool[^/\\]*$" doc-view-pdfdraw-program) | 1025 | (when (string-match "mutool[^/\\]*$" doc-view-pdfdraw-program) |
| 1026 | '("draw"))) | 1026 | '("draw"))) |
| 1027 | 1027 | ||
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 6b75ecf7832..26207e03c4f 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -2622,7 +2622,7 @@ Helper function for `describe-package'." | |||
| 2622 | 2622 | ||
| 2623 | (defun package-install-button-action (button) | 2623 | (defun package-install-button-action (button) |
| 2624 | "Run `package-install' on the package BUTTON points to. | 2624 | "Run `package-install' on the package BUTTON points to. |
| 2625 | Used for the 'action property of buttons in the buffer created by | 2625 | Used for the `action' property of buttons in the buffer created by |
| 2626 | `describe-package'." | 2626 | `describe-package'." |
| 2627 | (let ((pkg-desc (button-get button 'package-desc))) | 2627 | (let ((pkg-desc (button-get button 'package-desc))) |
| 2628 | (when (y-or-n-p (format-message "Install package `%s'? " | 2628 | (when (y-or-n-p (format-message "Install package `%s'? " |
| @@ -2633,7 +2633,7 @@ Used for the 'action property of buttons in the buffer created by | |||
| 2633 | 2633 | ||
| 2634 | (defun package-delete-button-action (button) | 2634 | (defun package-delete-button-action (button) |
| 2635 | "Run `package-delete' on the package BUTTON points to. | 2635 | "Run `package-delete' on the package BUTTON points to. |
| 2636 | Used for the 'action property of buttons in the buffer created by | 2636 | Used for the `action' property of buttons in the buffer created by |
| 2637 | `describe-package'." | 2637 | `describe-package'." |
| 2638 | (let ((pkg-desc (button-get button 'package-desc))) | 2638 | (let ((pkg-desc (button-get button 'package-desc))) |
| 2639 | (when (y-or-n-p (format-message "Delete package `%s'? " | 2639 | (when (y-or-n-p (format-message "Delete package `%s'? " |
| @@ -2645,7 +2645,7 @@ Used for the 'action property of buttons in the buffer created by | |||
| 2645 | (defun package-keyword-button-action (button) | 2645 | (defun package-keyword-button-action (button) |
| 2646 | "Show filtered \"*Packages*\" buffer for BUTTON. | 2646 | "Show filtered \"*Packages*\" buffer for BUTTON. |
| 2647 | The buffer is filtered by the `package-keyword' property of BUTTON. | 2647 | The buffer is filtered by the `package-keyword' property of BUTTON. |
| 2648 | Used for the 'action property of buttons in the buffer created by | 2648 | Used for the `action' property of buttons in the buffer created by |
| 2649 | `describe-package'." | 2649 | `describe-package'." |
| 2650 | (let ((pkg-keyword (button-get button 'package-keyword))) | 2650 | (let ((pkg-keyword (button-get button 'package-keyword))) |
| 2651 | (package-show-package-list t (list pkg-keyword)))) | 2651 | (package-show-package-list t (list pkg-keyword)))) |
diff --git a/lisp/erc/erc-autoaway.el b/lisp/erc/erc-autoaway.el index 83a738fd079..608f89902d3 100644 --- a/lisp/erc/erc-autoaway.el +++ b/lisp/erc/erc-autoaway.el | |||
| @@ -37,7 +37,7 @@ yourself back when you type something." | |||
| 37 | 37 | ||
| 38 | (defvar erc-autoaway-idletimer nil | 38 | (defvar erc-autoaway-idletimer nil |
| 39 | "The Emacs idletimer. | 39 | "The Emacs idletimer. |
| 40 | This is only used when `erc-autoaway-idle-method' is set to 'emacs.") | 40 | This is only used when `erc-autoaway-idle-method' is set to `emacs'.") |
| 41 | 41 | ||
| 42 | (defvar erc-autoaway-last-sent-time (erc-current-time) | 42 | (defvar erc-autoaway-last-sent-time (erc-current-time) |
| 43 | "The last time the user sent something.") | 43 | "The last time the user sent something.") |
| @@ -50,7 +50,7 @@ user's away status.") | |||
| 50 | 50 | ||
| 51 | (defun erc-autoaway-reestablish-idletimer () | 51 | (defun erc-autoaway-reestablish-idletimer () |
| 52 | "Reestablish the Emacs idletimer. | 52 | "Reestablish the Emacs idletimer. |
| 53 | If `erc-autoaway-idle-method' is 'emacs, you must call this | 53 | If `erc-autoaway-idle-method' is `emacs', you must call this |
| 54 | function each time you change `erc-autoaway-idle-seconds'." | 54 | function each time you change `erc-autoaway-idle-seconds'." |
| 55 | (interactive) | 55 | (interactive) |
| 56 | (when erc-autoaway-idletimer | 56 | (when erc-autoaway-idletimer |
| @@ -70,7 +70,7 @@ If none is found, return nil." | |||
| 70 | "Add autoaway reset function to `post-command-hook' if at least one | 70 | "Add autoaway reset function to `post-command-hook' if at least one |
| 71 | ERC process is alive. | 71 | ERC process is alive. |
| 72 | 72 | ||
| 73 | This is used when `erc-autoaway-idle-method' is 'user." | 73 | This is used when `erc-autoaway-idle-method' is `user'." |
| 74 | (when (or server (erc-autoaway-some-server-buffer)) | 74 | (when (or server (erc-autoaway-some-server-buffer)) |
| 75 | (add-hook 'post-command-hook 'erc-autoaway-reset-idle-user))) | 75 | (add-hook 'post-command-hook 'erc-autoaway-reset-idle-user))) |
| 76 | 76 | ||
| @@ -78,7 +78,7 @@ This is used when `erc-autoaway-idle-method' is 'user." | |||
| 78 | "Remove the autoaway reset function from `post-command-hook' if | 78 | "Remove the autoaway reset function from `post-command-hook' if |
| 79 | no ERC process is alive. | 79 | no ERC process is alive. |
| 80 | 80 | ||
| 81 | This is used when `erc-autoaway-idle-method' is 'user." | 81 | This is used when `erc-autoaway-idle-method' is `user'." |
| 82 | (unless (erc-autoaway-some-server-buffer) | 82 | (unless (erc-autoaway-some-server-buffer) |
| 83 | (remove-hook 'post-command-hook 'erc-autoaway-reset-idle-user))) | 83 | (remove-hook 'post-command-hook 'erc-autoaway-reset-idle-user))) |
| 84 | 84 | ||
| @@ -140,9 +140,9 @@ Related variables: `erc-public-away-p' and `erc-away-nickname'." | |||
| 140 | 140 | ||
| 141 | (defcustom erc-autoaway-idle-method 'user | 141 | (defcustom erc-autoaway-idle-method 'user |
| 142 | "The method used to determine how long you have been idle. | 142 | "The method used to determine how long you have been idle. |
| 143 | If 'user, the time of the last command sent to Emacs is used. | 143 | If `user', the time of the last command sent to Emacs is used. |
| 144 | If 'emacs, the idle time in Emacs is used. | 144 | If `emacs', the idle time in Emacs is used. |
| 145 | If 'irc, the time of the last IRC command is used. | 145 | If `irc', the time of the last IRC command is used. |
| 146 | 146 | ||
| 147 | The time itself is specified by `erc-autoaway-idle-seconds'. | 147 | The time itself is specified by `erc-autoaway-idle-seconds'. |
| 148 | 148 | ||
diff --git a/lisp/erc/erc-services.el b/lisp/erc/erc-services.el index b8eef7f618f..fcf73507ac2 100644 --- a/lisp/erc/erc-services.el +++ b/lisp/erc/erc-services.el | |||
| @@ -289,7 +289,7 @@ NICK is nickserv's nickname. Use nick@server where necessary/possible. | |||
| 289 | KEYWORD is the keyword to use in the reply message to identify yourself. | 289 | KEYWORD is the keyword to use in the reply message to identify yourself. |
| 290 | USE-CURRENT indicates whether the current nickname must be used when | 290 | USE-CURRENT indicates whether the current nickname must be used when |
| 291 | identifying. | 291 | identifying. |
| 292 | ANSWER is the command to use for the answer. The default is 'privmsg. | 292 | ANSWER is the command to use for the answer. The default is `privmsg'. |
| 293 | SUCCESS-REGEXP is a regular expression matching the message nickserv | 293 | SUCCESS-REGEXP is a regular expression matching the message nickserv |
| 294 | sends when you've successfully identified. | 294 | sends when you've successfully identified. |
| 295 | The last two elements are optional." | 295 | The last two elements are optional." |
diff --git a/lisp/gnus/gnus-diary.el b/lisp/gnus/gnus-diary.el index 16973074be4..1697a633680 100644 --- a/lisp/gnus/gnus-diary.el +++ b/lisp/gnus/gnus-diary.el | |||
| @@ -64,7 +64,7 @@ Please refer to `format-time-string' for information on possible values." | |||
| 64 | "Function called to format a diary delay string. | 64 | "Function called to format a diary delay string. |
| 65 | It is passed two arguments. The first one is non-nil if the delay is in | 65 | It is passed two arguments. The first one is non-nil if the delay is in |
| 66 | the past. The second one is of the form ((NUM . UNIT) ...) where NUM is | 66 | the past. The second one is of the form ((NUM . UNIT) ...) where NUM is |
| 67 | an integer and UNIT is one of 'year 'month 'week 'day 'hour or 'minute. | 67 | an integer and UNIT is one of `year' `month' `week' `day' `hour' or `minute'. |
| 68 | It should return strings like \"In 2 months, 3 weeks\", \"3 hours, | 68 | It should return strings like \"In 2 months, 3 weeks\", \"3 hours, |
| 69 | 1 minute ago\" and so on. | 69 | 1 minute ago\" and so on. |
| 70 | 70 | ||
diff --git a/lisp/gnus/gnus-msg.el b/lisp/gnus/gnus-msg.el index 10793455a52..17f1086195e 100644 --- a/lisp/gnus/gnus-msg.el +++ b/lisp/gnus/gnus-msg.el | |||
| @@ -637,7 +637,7 @@ If ARG is 1, prompt for group name to post to. | |||
| 637 | 637 | ||
| 638 | This function prepares a news even when using mail groups. This is useful | 638 | This function prepares a news even when using mail groups. This is useful |
| 639 | for posting messages to mail groups without actually sending them over the | 639 | for posting messages to mail groups without actually sending them over the |
| 640 | network. The corresponding back end must have a 'request-post method." | 640 | network. The corresponding back end must have a `request-post' method." |
| 641 | (interactive "P") | 641 | (interactive "P") |
| 642 | ;; We can't `let' gnus-newsgroup-name here, since that leads | 642 | ;; We can't `let' gnus-newsgroup-name here, since that leads |
| 643 | ;; to local variables leaking. | 643 | ;; to local variables leaking. |
| @@ -714,7 +714,7 @@ If ARG, don't do that. If ARG is 1, prompt for group name to post to. | |||
| 714 | 714 | ||
| 715 | This function prepares a news even when using mail groups. This is useful | 715 | This function prepares a news even when using mail groups. This is useful |
| 716 | for posting messages to mail groups without actually sending them over the | 716 | for posting messages to mail groups without actually sending them over the |
| 717 | network. The corresponding back end must have a 'request-post method." | 717 | network. The corresponding back end must have a `request-post' method." |
| 718 | (interactive "P") | 718 | (interactive "P") |
| 719 | ;; We can't `let' gnus-newsgroup-name here, since that leads | 719 | ;; We can't `let' gnus-newsgroup-name here, since that leads |
| 720 | ;; to local variables leaking. | 720 | ;; to local variables leaking. |
diff --git a/lisp/gnus/gnus-registry.el b/lisp/gnus/gnus-registry.el index 16e578cc745..e6fb382c2f9 100644 --- a/lisp/gnus/gnus-registry.el +++ b/lisp/gnus/gnus-registry.el | |||
| @@ -145,7 +145,7 @@ recipients." | |||
| 145 | '("delayed$" "drafts$" "queue$" "INBOX$" "^nnmairix:" "archive") | 145 | '("delayed$" "drafts$" "queue$" "INBOX$" "^nnmairix:" "archive") |
| 146 | "List of groups that gnus-registry-split-fancy-with-parent won't return. | 146 | "List of groups that gnus-registry-split-fancy-with-parent won't return. |
| 147 | The group names are matched, they don't have to be fully | 147 | The group names are matched, they don't have to be fully |
| 148 | qualified. This parameter tells the Gnus registry 'never split a | 148 | qualified. This parameter tells the Gnus registry `never split a |
| 149 | message into a group that matches one of these, regardless of | 149 | message into a group that matches one of these, regardless of |
| 150 | references.' | 150 | references.' |
| 151 | 151 | ||
| @@ -211,7 +211,7 @@ groups." | |||
| 211 | 211 | ||
| 212 | (defcustom gnus-registry-extra-entries-precious '(mark) | 212 | (defcustom gnus-registry-extra-entries-precious '(mark) |
| 213 | "What extra keys are precious, meaning entries with them won't get pruned. | 213 | "What extra keys are precious, meaning entries with them won't get pruned. |
| 214 | By default, 'mark is included, so articles with marks are | 214 | By default, `mark' is included, so articles with marks are |
| 215 | considered precious. | 215 | considered precious. |
| 216 | 216 | ||
| 217 | Before you save the Gnus registry, it's pruned. Any entries with | 217 | Before you save the Gnus registry, it's pruned. Any entries with |
diff --git a/lisp/gnus/gnus-score.el b/lisp/gnus/gnus-score.el index 72fcc641559..b66489aae95 100644 --- a/lisp/gnus/gnus-score.el +++ b/lisp/gnus/gnus-score.el | |||
| @@ -826,7 +826,7 @@ HEADER is the header being scored. | |||
| 826 | MATCH is the string we are looking for. | 826 | MATCH is the string we are looking for. |
| 827 | TYPE is the match type: substring, regexp, exact, fuzzy. | 827 | TYPE is the match type: substring, regexp, exact, fuzzy. |
| 828 | SCORE is the score to add. | 828 | SCORE is the score to add. |
| 829 | DATE is the expire date, or nil for no expire, or 'now for immediate expire. | 829 | DATE is the expire date, or nil for no expire, or `now' for immediate expire. |
| 830 | If optional argument `PROMPT' is non-nil, allow user to edit match. | 830 | If optional argument `PROMPT' is non-nil, allow user to edit match. |
| 831 | If optional argument `SILENT' is nil, show effect of score entry. | 831 | If optional argument `SILENT' is nil, show effect of score entry. |
| 832 | If optional argument `EXTRA' is non-nil, it's a non-standard overview header." | 832 | If optional argument `EXTRA' is non-nil, it's a non-standard overview header." |
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index f21bc7584e5..b8859528d0b 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el | |||
| @@ -9127,7 +9127,7 @@ a non-numeric prefix arg will use nnir to search the entire | |||
| 9127 | server; without a prefix arg only the current group is | 9127 | server; without a prefix arg only the current group is |
| 9128 | searched. If the variable `gnus-refer-thread-use-nnir' is | 9128 | searched. If the variable `gnus-refer-thread-use-nnir' is |
| 9129 | non-nil the prefix arg has the reverse meaning. If no | 9129 | non-nil the prefix arg has the reverse meaning. If no |
| 9130 | backend-specific 'request-thread function is available fetch | 9130 | backend-specific `request-thread' function is available fetch |
| 9131 | LIMIT (the numerical prefix) old headers. If LIMIT is | 9131 | LIMIT (the numerical prefix) old headers. If LIMIT is |
| 9132 | non-numeric or nil fetch the number specified by the | 9132 | non-numeric or nil fetch the number specified by the |
| 9133 | `gnus-refer-thread-limit' variable." | 9133 | `gnus-refer-thread-limit' variable." |
diff --git a/lisp/gnus/nndiary.el b/lisp/gnus/nndiary.el index f79d8f17072..a340804064f 100644 --- a/lisp/gnus/nndiary.el +++ b/lisp/gnus/nndiary.el | |||
| @@ -124,13 +124,13 @@ Hortense, would you be so kind as to remind me of my appointments 3 days | |||
| 124 | before the date, thank you very much. Anda, hmmm... by the way, are you | 124 | before the date, thank you very much. Anda, hmmm... by the way, are you |
| 125 | doing anything special tonight ?\". | 125 | doing anything special tonight ?\". |
| 126 | 126 | ||
| 127 | The units of measure are 'minute 'hour 'day 'week 'month and 'year (no, | 127 | The units of measure are `minute' `hour' `day' `week' `month' and `year' (no, |
| 128 | not 'century, sorry). | 128 | not `century', sorry). |
| 129 | 129 | ||
| 130 | NOTE: the units of measure actually express dates, not durations: if you | 130 | NOTE: the units of measure actually express dates, not durations: if you |
| 131 | use 'week, messages will pop up on Sundays at 00:00 (or Mondays if | 131 | use `week', messages will pop up on Sundays at 00:00 (or Mondays if |
| 132 | `nndiary-week-starts-on-monday' is non-nil) and *not* 7 days before the | 132 | `nndiary-week-starts-on-monday' is non-nil) and *not* 7 days before the |
| 133 | appointment, if you use 'month, messages will pop up on the first day of | 133 | appointment, if you use `month', messages will pop up on the first day of |
| 134 | each months, at 00:00 and so on. | 134 | each months, at 00:00 and so on. |
| 135 | 135 | ||
| 136 | If you really want to specify a duration (like 24 hours exactly), you can | 136 | If you really want to specify a duration (like 24 hours exactly), you can |
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el index 856ac75cd66..800ec3b9597 100644 --- a/lisp/gnus/nnimap.el +++ b/lisp/gnus/nnimap.el | |||
| @@ -1134,7 +1134,7 @@ If LIMIT, first try to limit the search to the N last articles." | |||
| 1134 | (nnimap-command "UID EXPUNGE %s" | 1134 | (nnimap-command "UID EXPUNGE %s" |
| 1135 | (nnimap-article-ranges articles)) | 1135 | (nnimap-article-ranges articles)) |
| 1136 | (nnheader-message | 1136 | (nnheader-message |
| 1137 | 3 (concat "nnimap-expunge set to 'immediately, but " | 1137 | 3 (concat "nnimap-expunge set to `immediately', but " |
| 1138 | "server doesn't support UIDPLUS")) | 1138 | "server doesn't support UIDPLUS")) |
| 1139 | nil)) | 1139 | nil)) |
| 1140 | 1140 | ||
diff --git a/lisp/gnus/nnir.el b/lisp/gnus/nnir.el index 7cb2d1615a2..b8a6639719e 100644 --- a/lisp/gnus/nnir.el +++ b/lisp/gnus/nnir.el | |||
| @@ -317,7 +317,7 @@ If nil this will use `gnus-summary-line-format'." | |||
| 317 | (defcustom nnir-retrieve-headers-override-function nil | 317 | (defcustom nnir-retrieve-headers-override-function nil |
| 318 | "If non-nil, a function that accepts an article list and group | 318 | "If non-nil, a function that accepts an article list and group |
| 319 | and populates the `nntp-server-buffer' with the retrieved | 319 | and populates the `nntp-server-buffer' with the retrieved |
| 320 | headers. Must return either 'nov or 'headers indicating the | 320 | headers. Must return either `nov' or `headers' indicating the |
| 321 | retrieved header format. | 321 | retrieved header format. |
| 322 | 322 | ||
| 323 | If this variable is nil, or if the provided function returns nil for | 323 | If this variable is nil, or if the provided function returns nil for |
diff --git a/lisp/gnus/nnmairix.el b/lisp/gnus/nnmairix.el index 6c5502ac3d9..d0a38e17c8e 100644 --- a/lisp/gnus/nnmairix.el +++ b/lisp/gnus/nnmairix.el | |||
| @@ -301,7 +301,7 @@ The default chooses the largest window in the current frame." | |||
| 301 | 301 | ||
| 302 | (defcustom nnmairix-propagate-marks-upon-close t | 302 | (defcustom nnmairix-propagate-marks-upon-close t |
| 303 | "Flag if marks should be propagated upon closing a group. | 303 | "Flag if marks should be propagated upon closing a group. |
| 304 | The default of this variable is t. If set to 'ask, the | 304 | The default of this variable is t. If set to `ask', the |
| 305 | user will be asked if the flags should be propagated when the | 305 | user will be asked if the flags should be propagated when the |
| 306 | group is closed. If set to nil, the user will have to manually | 306 | group is closed. If set to nil, the user will have to manually |
| 307 | call `nnmairix-propagate-marks'." | 307 | call `nnmairix-propagate-marks'." |
| @@ -1400,7 +1400,7 @@ nnmairix with nnml backends." | |||
| 1400 | "Replace folder names in Xref header and correct article numbers. | 1400 | "Replace folder names in Xref header and correct article numbers. |
| 1401 | Do this for all ARTICLES on BACKENDGROUP. Replace using | 1401 | Do this for all ARTICLES on BACKENDGROUP. Replace using |
| 1402 | MAIRIXGROUP. NUMC contains values for article number correction. | 1402 | MAIRIXGROUP. NUMC contains values for article number correction. |
| 1403 | TYPE is either 'nov or 'headers." | 1403 | TYPE is either `nov' or `headers'." |
| 1404 | (nnheader-message 7 "nnmairix: Rewriting headers...") | 1404 | (nnheader-message 7 "nnmairix: Rewriting headers...") |
| 1405 | (cond | 1405 | (cond |
| 1406 | ((eq type 'nov) | 1406 | ((eq type 'nov) |
| @@ -1449,7 +1449,7 @@ TYPE is either 'nov or 'headers." | |||
| 1449 | (defun nnmairix-backend-to-server (server) | 1449 | (defun nnmairix-backend-to-server (server) |
| 1450 | "Return nnmairix server most probably responsible for back end SERVER. | 1450 | "Return nnmairix server most probably responsible for back end SERVER. |
| 1451 | User will be asked if this cannot be determined. Result is saved in | 1451 | User will be asked if this cannot be determined. Result is saved in |
| 1452 | parameter 'indexed-servers of corresponding default search | 1452 | parameter `indexed-servers' of corresponding default search |
| 1453 | group." | 1453 | group." |
| 1454 | (let ((allservers (nnmairix-get-nnmairix-servers)) | 1454 | (let ((allservers (nnmairix-get-nnmairix-servers)) |
| 1455 | mairixserver found defaultgroup) | 1455 | mairixserver found defaultgroup) |
| @@ -1459,7 +1459,7 @@ group." | |||
| 1459 | (while (and allservers (not found)) | 1459 | (while (and allservers (not found)) |
| 1460 | (setq mairixserver (gnus-server-to-method (car (pop allservers)))) | 1460 | (setq mairixserver (gnus-server-to-method (car (pop allservers)))) |
| 1461 | ;; First we look if SERVER is the backend of current nnmairix server | 1461 | ;; First we look if SERVER is the backend of current nnmairix server |
| 1462 | (setq found (and (eq (cadr (assoc 'nnmairix-backend mairixserver)) | 1462 | (setq found (and (eq (cadr (assoc `nnmairix-backend mairixserver)) |
| 1463 | (car server)) | 1463 | (car server)) |
| 1464 | (string= (cadr (assoc 'nnmairix-backend-server mairixserver)) | 1464 | (string= (cadr (assoc 'nnmairix-backend-server mairixserver)) |
| 1465 | (nth 1 server)))) | 1465 | (nth 1 server)))) |
diff --git a/lisp/gnus/spam.el b/lisp/gnus/spam.el index c701e314fc0..83df2f6198f 100644 --- a/lisp/gnus/spam.el +++ b/lisp/gnus/spam.el | |||
| @@ -831,8 +831,8 @@ backend is STATISTICAL." | |||
| 831 | 831 | ||
| 832 | (defun spam-backend-list (&optional type) | 832 | (defun spam-backend-list (&optional type) |
| 833 | "Return a list of all the backend symbols, constrained by TYPE. | 833 | "Return a list of all the backend symbols, constrained by TYPE. |
| 834 | When TYPE is 'non-mover, only non-mover backends are returned. | 834 | When TYPE is `non-mover', only non-mover backends are returned. |
| 835 | When TYPE is 'mover, only mover backends are returned." | 835 | When TYPE is `mover', only mover backends are returned." |
| 836 | (let (list) | 836 | (let (list) |
| 837 | (dolist (backend spam-backends) | 837 | (dolist (backend spam-backends) |
| 838 | (when (or | 838 | (when (or |
| @@ -882,8 +882,8 @@ that the message is definitely a spam." | |||
| 882 | 882 | ||
| 883 | (defun spam-backend-function (backend classification type) | 883 | (defun spam-backend-function (backend classification type) |
| 884 | "Get the BACKEND function for CLASSIFICATION and TYPE. | 884 | "Get the BACKEND function for CLASSIFICATION and TYPE. |
| 885 | TYPE is 'registration or 'unregistration. | 885 | TYPE is `registration' or `unregistration'. |
| 886 | CLASSIFICATION is 'ham or 'spam." | 886 | CLASSIFICATION is `ham' or `spam'." |
| 887 | (if (and | 887 | (if (and |
| 888 | (spam-classification-valid-p classification) | 888 | (spam-classification-valid-p classification) |
| 889 | (spam-backend-function-type-valid-p type)) | 889 | (spam-backend-function-type-valid-p type)) |
| @@ -1520,7 +1520,7 @@ In the case of mover backends, checks the setting of | |||
| 1520 | (defun spam-fetch-field-fast (article field &optional prepared-data-header) | 1520 | (defun spam-fetch-field-fast (article field &optional prepared-data-header) |
| 1521 | "Fetch a FIELD for ARTICLE with the internal `gnus-data-find' function. | 1521 | "Fetch a FIELD for ARTICLE with the internal `gnus-data-find' function. |
| 1522 | When PREPARED-DATA-HEADER is given, don't look in the Gnus data. | 1522 | When PREPARED-DATA-HEADER is given, don't look in the Gnus data. |
| 1523 | When FIELD is 'number, ARTICLE can be any number (since we want | 1523 | When FIELD is `number', ARTICLE can be any number (since we want |
| 1524 | to find it out)." | 1524 | to find it out)." |
| 1525 | (when (numberp article) | 1525 | (when (numberp article) |
| 1526 | (let* ((data-header (or prepared-data-header | 1526 | (let* ((data-header (or prepared-data-header |
diff --git a/lisp/ibuf-ext.el b/lisp/ibuf-ext.el index 44c7e74839f..13223de6e7e 100644 --- a/lisp/ibuf-ext.el +++ b/lisp/ibuf-ext.el | |||
| @@ -1321,8 +1321,8 @@ matches against '/a/b/c.d'." | |||
| 1321 | (define-ibuffer-filter basename | 1321 | (define-ibuffer-filter basename |
| 1322 | "Limit current view to buffers with file basename matching QUALIFIER. | 1322 | "Limit current view to buffers with file basename matching QUALIFIER. |
| 1323 | 1323 | ||
| 1324 | For example, for a buffer associated with file '/a/b/c.d', this | 1324 | For example, for a buffer associated with file `/a/b/c.d', this |
| 1325 | matches against 'c.d'." | 1325 | matches against `c.d'." |
| 1326 | (:description "file basename" | 1326 | (:description "file basename" |
| 1327 | :reader (read-from-minibuffer | 1327 | :reader (read-from-minibuffer |
| 1328 | "Filter by file name, without directory part (regex): ")) | 1328 | "Filter by file name, without directory part (regex): ")) |
| @@ -1335,7 +1335,7 @@ matches against 'c.d'." | |||
| 1335 | 1335 | ||
| 1336 | The separator character (typically `.') is not part of the | 1336 | The separator character (typically `.') is not part of the |
| 1337 | pattern. For example, for a buffer associated with file | 1337 | pattern. For example, for a buffer associated with file |
| 1338 | '/a/b/c.d', this matches against 'd'." | 1338 | `/a/b/c.d', this matches against `d'." |
| 1339 | (:description "filename extension" | 1339 | (:description "filename extension" |
| 1340 | :reader (read-from-minibuffer | 1340 | :reader (read-from-minibuffer |
| 1341 | "Filter by filename extension without separator (regex): ")) | 1341 | "Filter by filename extension without separator (regex): ")) |
| @@ -1596,7 +1596,7 @@ to move by. The default is `ibuffer-marked-char'." | |||
| 1596 | "Hide all of the currently marked lines." | 1596 | "Hide all of the currently marked lines." |
| 1597 | (interactive) | 1597 | (interactive) |
| 1598 | (if (= (ibuffer-count-marked-lines) 0) | 1598 | (if (= (ibuffer-count-marked-lines) 0) |
| 1599 | (message "No buffers marked; use 'm' to mark a buffer") | 1599 | (message "No buffers marked; use `m' to mark a buffer") |
| 1600 | (let ((count | 1600 | (let ((count |
| 1601 | (ibuffer-map-marked-lines | 1601 | (ibuffer-map-marked-lines |
| 1602 | #'(lambda (_buf _mark) | 1602 | #'(lambda (_buf _mark) |
diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el index c81b05efec6..e223e4a436b 100644 --- a/lisp/ibuffer.el +++ b/lisp/ibuffer.el | |||
| @@ -651,24 +651,24 @@ directory, like `default-directory'." | |||
| 651 | (define-key-after map [menu-bar view filter filter-by-filename] | 651 | (define-key-after map [menu-bar view filter filter-by-filename] |
| 652 | '(menu-item "Add filter by full filename..." ibuffer-filter-by-filename | 652 | '(menu-item "Add filter by full filename..." ibuffer-filter-by-filename |
| 653 | :help | 653 | :help |
| 654 | (concat "For a buffer associated with file '/a/b/c.d', " | 654 | (concat "For a buffer associated with file `/a/b/c.d', " |
| 655 | "list buffer if a given pattern matches '/a/b/c.d'"))) | 655 | "list buffer if a given pattern matches `/a/b/c.d'"))) |
| 656 | (define-key-after map [menu-bar view filter filter-by-basename] | 656 | (define-key-after map [menu-bar view filter filter-by-basename] |
| 657 | '(menu-item "Add filter by file basename..." | 657 | '(menu-item "Add filter by file basename..." |
| 658 | ibuffer-filter-by-basename | 658 | ibuffer-filter-by-basename |
| 659 | :help (concat "For a buffer associated with file '/a/b/c.d', " | 659 | :help (concat "For a buffer associated with file `/a/b/c.d', " |
| 660 | "list buffer if a given pattern matches 'c.d'"))) | 660 | "list buffer if a given pattern matches `c.d'"))) |
| 661 | (define-key-after map [menu-bar view filter filter-by-file-extension] | 661 | (define-key-after map [menu-bar view filter filter-by-file-extension] |
| 662 | '(menu-item "Add filter by file name extension..." | 662 | '(menu-item "Add filter by file name extension..." |
| 663 | ibuffer-filter-by-file-extension | 663 | ibuffer-filter-by-file-extension |
| 664 | :help (concat "For a buffer associated with file '/a/b/c.d', " | 664 | :help (concat "For a buffer associated with file `/a/b/c.d', " |
| 665 | "list buffer if a given pattern matches 'd'"))) | 665 | "list buffer if a given pattern matches `d'"))) |
| 666 | (define-key-after map [menu-bar view filter filter-by-directory] | 666 | (define-key-after map [menu-bar view filter filter-by-directory] |
| 667 | '(menu-item "Add filter by filename's directory..." | 667 | '(menu-item "Add filter by filename's directory..." |
| 668 | ibuffer-filter-by-directory | 668 | ibuffer-filter-by-directory |
| 669 | :help | 669 | :help |
| 670 | (concat "For a buffer associated with file '/a/b/c.d', " | 670 | (concat "For a buffer associated with file `/a/b/c.d', " |
| 671 | "list buffer if a given pattern matches '/a/b'"))) | 671 | "list buffer if a given pattern matches `/a/b'"))) |
| 672 | (define-key-after map [menu-bar view filter filter-by-size-lt] | 672 | (define-key-after map [menu-bar view filter filter-by-size-lt] |
| 673 | '(menu-item "Add filter by size less than..." ibuffer-filter-by-size-lt)) | 673 | '(menu-item "Add filter by size less than..." ibuffer-filter-by-size-lt)) |
| 674 | (define-key-after map [menu-bar view filter filter-by-size-gt] | 674 | (define-key-after map [menu-bar view filter filter-by-size-gt] |
| @@ -1377,7 +1377,7 @@ Otherwise, toggle lock status." | |||
| 1377 | "Unmark all buffers with mark MARK." | 1377 | "Unmark all buffers with mark MARK." |
| 1378 | (interactive "cRemove marks (RET means all):") | 1378 | (interactive "cRemove marks (RET means all):") |
| 1379 | (if (= (ibuffer-count-marked-lines t) 0) | 1379 | (if (= (ibuffer-count-marked-lines t) 0) |
| 1380 | (message "No buffers marked; use 'm' to mark a buffer") | 1380 | (message "No buffers marked; use `m' to mark a buffer") |
| 1381 | (let ((fn (lambda (_buf mk) | 1381 | (let ((fn (lambda (_buf mk) |
| 1382 | (unless (eq mk ?\s) | 1382 | (unless (eq mk ?\s) |
| 1383 | (ibuffer-set-mark-1 ?\s)) t))) | 1383 | (ibuffer-set-mark-1 ?\s)) t))) |
diff --git a/lisp/image-dired.el b/lisp/image-dired.el index 85bc9247949..ca3ed58e20d 100644 --- a/lisp/image-dired.el +++ b/lisp/image-dired.el | |||
| @@ -666,7 +666,7 @@ according to the Thumbnail Managing Standard." | |||
| 666 | 666 | ||
| 667 | (defun image-dired-thumb-size (dimension) | 667 | (defun image-dired-thumb-size (dimension) |
| 668 | "Return thumb size depending on `image-dired-thumbnail-storage'. | 668 | "Return thumb size depending on `image-dired-thumbnail-storage'. |
| 669 | DIMENSION should be either the symbol 'width or 'height." | 669 | DIMENSION should be either the symbol `width' or `height'." |
| 670 | (cond | 670 | (cond |
| 671 | ((eq 'standard image-dired-thumbnail-storage) 128) | 671 | ((eq 'standard image-dired-thumbnail-storage) 128) |
| 672 | ((eq 'standard-large image-dired-thumbnail-storage) 256) | 672 | ((eq 'standard-large image-dired-thumbnail-storage) 256) |
diff --git a/lisp/mh-e/mh-identity.el b/lisp/mh-e/mh-identity.el index 0b698395756..12457302eab 100644 --- a/lisp/mh-e/mh-identity.el +++ b/lisp/mh-e/mh-identity.el | |||
| @@ -282,9 +282,9 @@ If VALUE is nil, use `mh-extract-from-attribution-verb'." | |||
| 282 | 282 | ||
| 283 | (defun mh-identity-handler-default (field action top &optional value) | 283 | (defun mh-identity-handler-default (field action top &optional value) |
| 284 | "Process header FIELD. | 284 | "Process header FIELD. |
| 285 | The ACTION is one of 'remove or 'add. If TOP is non-nil, add the | 285 | The ACTION is one of `remove' or `add'. If TOP is non-nil, add the |
| 286 | field and its VALUE at the top of the header, else add it at the | 286 | field and its VALUE at the top of the header, else add it at the |
| 287 | bottom of the header. If action is 'add, the VALUE is added." | 287 | bottom of the header. If action is `add', the VALUE is added." |
| 288 | (let ((field-colon (if (string-match "^.*:$" field) | 288 | (let ((field-colon (if (string-match "^.*:$" field) |
| 289 | field | 289 | field |
| 290 | (concat field ":")))) | 290 | (concat field ":")))) |
diff --git a/lisp/mh-e/mh-letter.el b/lisp/mh-e/mh-letter.el index 46762f12fd3..a27247af5b6 100644 --- a/lisp/mh-e/mh-letter.el +++ b/lisp/mh-e/mh-letter.el | |||
| @@ -952,7 +952,7 @@ callable from a mouse button." | |||
| 952 | (defun mh-insert-prefix-string (mh-ins-string) | 952 | (defun mh-insert-prefix-string (mh-ins-string) |
| 953 | "Insert prefix string before each line in buffer. | 953 | "Insert prefix string before each line in buffer. |
| 954 | The inserted letter is cited using `sc-cite-original' if | 954 | The inserted letter is cited using `sc-cite-original' if |
| 955 | `mh-yank-behavior' is one of 'supercite or 'autosupercite. | 955 | `mh-yank-behavior' is one of `supercite' or `autosupercite'. |
| 956 | Otherwise, simply insert MH-INS-STRING before each line." | 956 | Otherwise, simply insert MH-INS-STRING before each line." |
| 957 | (goto-char (point-min)) | 957 | (goto-char (point-min)) |
| 958 | (cond ((or (eq mh-yank-behavior 'supercite) | 958 | (cond ((or (eq mh-yank-behavior 'supercite) |
diff --git a/lisp/mh-e/mh-search.el b/lisp/mh-e/mh-search.el index 596f00961b2..97f1fddcd0e 100644 --- a/lisp/mh-e/mh-search.el +++ b/lisp/mh-e/mh-search.el | |||
| @@ -1329,7 +1329,7 @@ is used to search." | |||
| 1329 | "Read the next result. | 1329 | "Read the next result. |
| 1330 | Parse it and return the message folder, message index and the | 1330 | Parse it and return the message folder, message index and the |
| 1331 | match. If no other matches left then return nil. If the current | 1331 | match. If no other matches left then return nil. If the current |
| 1332 | record is invalid return 'error." | 1332 | record is invalid return `error'." |
| 1333 | (prog1 | 1333 | (prog1 |
| 1334 | (cl-block nil | 1334 | (cl-block nil |
| 1335 | (when (eobp) | 1335 | (when (eobp) |
diff --git a/lisp/mwheel.el b/lisp/mwheel.el index e3648d98826..c9ece2dfcac 100644 --- a/lisp/mwheel.el +++ b/lisp/mwheel.el | |||
| @@ -151,7 +151,7 @@ face height." | |||
| 151 | :version "26.1") | 151 | :version "26.1") |
| 152 | 152 | ||
| 153 | (defcustom mouse-wheel-flip-direction nil | 153 | (defcustom mouse-wheel-flip-direction nil |
| 154 | "Swap direction of 'wheel-right and 'wheel-left." | 154 | "Swap direction of `wheel-right' and `wheel-left'." |
| 155 | :group 'mouse | 155 | :group 'mouse |
| 156 | :type 'boolean | 156 | :type 'boolean |
| 157 | :version "26.1") | 157 | :version "26.1") |
diff --git a/lisp/net/network-stream.el b/lisp/net/network-stream.el index 4050c83eb0c..1571c761893 100644 --- a/lisp/net/network-stream.el +++ b/lisp/net/network-stream.el | |||
| @@ -62,12 +62,12 @@ | |||
| 62 | "Whether to use client certificates for network connections. | 62 | "Whether to use client certificates for network connections. |
| 63 | 63 | ||
| 64 | When non-nil, `open-network-stream' will automatically look for | 64 | When non-nil, `open-network-stream' will automatically look for |
| 65 | matching client certificates (via 'auth-source') for a | 65 | matching client certificates (via `auth-source') for a |
| 66 | destination server, if it is called without a :client-certificate | 66 | destination server, if it is called without a :client-certificate |
| 67 | keyword. | 67 | keyword. |
| 68 | 68 | ||
| 69 | Set to nil to disable this lookup globally. To disable on a | 69 | Set to nil to disable this lookup globally. To disable on a |
| 70 | per-connection basis, specify ':client-certificate nil' when | 70 | per-connection basis, specify `:client-certificate nil' when |
| 71 | calling `open-network-stream'." | 71 | calling `open-network-stream'." |
| 72 | :group 'network | 72 | :group 'network |
| 73 | :type 'boolean | 73 | :type 'boolean |
diff --git a/lisp/obsolete/lucid.el b/lisp/obsolete/lucid.el index d1b702ed556..b4995609f10 100644 --- a/lisp/obsolete/lucid.el +++ b/lisp/obsolete/lucid.el | |||
| @@ -60,7 +60,7 @@ bottom of the buffer stack." | |||
| 60 | 60 | ||
| 61 | (defun device-class (&optional device) | 61 | (defun device-class (&optional device) |
| 62 | "Return the class (color behavior) of DEVICE. | 62 | "Return the class (color behavior) of DEVICE. |
| 63 | This will be one of 'color, 'grayscale, or 'mono. | 63 | This will be one of `color', `grayscale', or `mono'. |
| 64 | This function exists for compatibility with XEmacs." | 64 | This function exists for compatibility with XEmacs." |
| 65 | (cond | 65 | (cond |
| 66 | ((display-color-p device) 'color) | 66 | ((display-color-p device) 'color) |
diff --git a/lisp/obsolete/mantemp.el b/lisp/obsolete/mantemp.el index ad638422c2b..af4a27bb7e2 100644 --- a/lisp/obsolete/mantemp.el +++ b/lisp/obsolete/mantemp.el | |||
| @@ -148,7 +148,7 @@ the lines." | |||
| 148 | ;; subsequently remove 'class' for functions so we don't need to | 148 | ;; subsequently remove 'class' for functions so we don't need to |
| 149 | ;; both scan for classes and functions. | 149 | ;; both scan for classes and functions. |
| 150 | (goto-char (point-min)) | 150 | (goto-char (point-min)) |
| 151 | (message "Inserting 'template class' for classes") | 151 | (message "Inserting `template class' for classes") |
| 152 | (while (re-search-forward "^.+" nil t) | 152 | (while (re-search-forward "^.+" nil t) |
| 153 | (progn | 153 | (progn |
| 154 | (beginning-of-line) | 154 | (beginning-of-line) |
| @@ -156,7 +156,7 @@ the lines." | |||
| 156 | (insert "template ") | 156 | (insert "template ") |
| 157 | (insert "template class ")))) | 157 | (insert "template class ")))) |
| 158 | (goto-char (point-min)) | 158 | (goto-char (point-min)) |
| 159 | (message "Inserting 'template' for functions") | 159 | (message "Inserting `template' for functions") |
| 160 | (while (re-search-forward | 160 | (while (re-search-forward |
| 161 | "^template class [a-zA-Z :&*<>~=,0-9+!]*(" nil t nil) | 161 | "^template class [a-zA-Z :&*<>~=,0-9+!]*(" nil t nil) |
| 162 | (progn | 162 | (progn |
diff --git a/lisp/obsolete/vip.el b/lisp/obsolete/vip.el index 9943fb2548b..4d24e694a19 100644 --- a/lisp/obsolete/vip.el +++ b/lisp/obsolete/vip.el | |||
| @@ -2250,7 +2250,7 @@ a token has type \(command, address, end-mark\) and value." | |||
| 2250 | (forward-char 1) | 2250 | (forward-char 1) |
| 2251 | (cond ((looking-at "'") (setq ex-token nil)) | 2251 | (cond ((looking-at "'") (setq ex-token nil)) |
| 2252 | ((looking-at "[a-z]") (setq ex-token (following-char))) | 2252 | ((looking-at "[a-z]") (setq ex-token (following-char))) |
| 2253 | (t (error "Marks are ' and a-z"))) | 2253 | (t (error "%s" "Marks are ' and a-z" ?'))) |
| 2254 | (forward-char 1)) | 2254 | (forward-char 1)) |
| 2255 | ((looking-at "\n") | 2255 | ((looking-at "\n") |
| 2256 | (setq ex-token-type "end-mark") | 2256 | (setq ex-token-type "end-mark") |
diff --git a/lisp/org/ob-lua.el b/lisp/org/ob-lua.el index 9b152f29f4e..8712619ecc6 100644 --- a/lisp/org/ob-lua.el +++ b/lisp/org/ob-lua.el | |||
| @@ -56,7 +56,7 @@ | |||
| 56 | 56 | ||
| 57 | (defcustom org-babel-lua-mode 'lua-mode | 57 | (defcustom org-babel-lua-mode 'lua-mode |
| 58 | "Preferred lua mode for use in running lua interactively. | 58 | "Preferred lua mode for use in running lua interactively. |
| 59 | This will typically be 'lua-mode." | 59 | This will typically be `lua-mode'." |
| 60 | :group 'org-babel | 60 | :group 'org-babel |
| 61 | :version "26.1" | 61 | :version "26.1" |
| 62 | :package-version '(Org . "8.3") | 62 | :package-version '(Org . "8.3") |
| @@ -70,7 +70,7 @@ This will typically be 'lua-mode." | |||
| 70 | :type 'string) | 70 | :type 'string) |
| 71 | 71 | ||
| 72 | (defcustom org-babel-lua-None-to 'hline | 72 | (defcustom org-babel-lua-None-to 'hline |
| 73 | "Replace 'None' in lua tables with this before returning." | 73 | "Replace `None' in lua tables with this before returning." |
| 74 | :group 'org-babel | 74 | :group 'org-babel |
| 75 | :version "26.1" | 75 | :version "26.1" |
| 76 | :package-version '(Org . "8.3") | 76 | :package-version '(Org . "8.3") |
| @@ -285,8 +285,8 @@ fd:close()") | |||
| 285 | (defun org-babel-lua-evaluate-external-process | 285 | (defun org-babel-lua-evaluate-external-process |
| 286 | (body &optional result-type result-params preamble) | 286 | (body &optional result-type result-params preamble) |
| 287 | "Evaluate BODY in external lua process. | 287 | "Evaluate BODY in external lua process. |
| 288 | If RESULT-TYPE equals 'output then return standard output as a | 288 | If RESULT-TYPE equals `output' then return standard output as a |
| 289 | string. If RESULT-TYPE equals 'value then return the value of the | 289 | string. If RESULT-TYPE equals `value' then return the value of the |
| 290 | last statement in BODY, as elisp." | 290 | last statement in BODY, as elisp." |
| 291 | (let ((raw | 291 | (let ((raw |
| 292 | (pcase result-type | 292 | (pcase result-type |
| @@ -317,8 +317,8 @@ last statement in BODY, as elisp." | |||
| 317 | (defun org-babel-lua-evaluate-session | 317 | (defun org-babel-lua-evaluate-session |
| 318 | (session body &optional result-type result-params) | 318 | (session body &optional result-type result-params) |
| 319 | "Pass BODY to the Lua process in SESSION. | 319 | "Pass BODY to the Lua process in SESSION. |
| 320 | If RESULT-TYPE equals 'output then return standard output as a | 320 | If RESULT-TYPE equals `output' then return standard output as a |
| 321 | string. If RESULT-TYPE equals 'value then return the value of the | 321 | string. If RESULT-TYPE equals `value' then return the value of the |
| 322 | last statement in BODY, as elisp." | 322 | last statement in BODY, as elisp." |
| 323 | (let* ((send-wait (lambda () (comint-send-input nil t) (sleep-for 0 5))) | 323 | (let* ((send-wait (lambda () (comint-send-input nil t) (sleep-for 0 5))) |
| 324 | (dump-last-value | 324 | (dump-last-value |
diff --git a/lisp/org/org-agenda.el b/lisp/org/org-agenda.el index 66c3d965e09..6870b780fa2 100644 --- a/lisp/org/org-agenda.el +++ b/lisp/org/org-agenda.el | |||
| @@ -3920,7 +3920,7 @@ dimming them." | |||
| 3920 | the header at `org-hd-marker' is blocked according to | 3920 | the header at `org-hd-marker' is blocked according to |
| 3921 | `org-entry-blocked-p', then if `org-agenda-dim-blocked-tasks' is | 3921 | `org-entry-blocked-p', then if `org-agenda-dim-blocked-tasks' is |
| 3922 | 'invisible and the header is not blocked by checkboxes, set the | 3922 | 'invisible and the header is not blocked by checkboxes, set the |
| 3923 | text property `org-todo-blocked' to 'invisible, otherwise set it | 3923 | text property `org-todo-blocked' to `invisible', otherwise set it |
| 3924 | to t." | 3924 | to t." |
| 3925 | (when (get-text-property 0 'todo-state entry) | 3925 | (when (get-text-property 0 'todo-state entry) |
| 3926 | (let ((entry-marker (get-text-property 0 'org-hd-marker entry)) | 3926 | (let ((entry-marker (get-text-property 0 'org-hd-marker entry)) |
diff --git a/lisp/org/ox-latex.el b/lisp/org/ox-latex.el index e617317a062..1ec835a47e9 100644 --- a/lisp/org/ox-latex.el +++ b/lisp/org/ox-latex.el | |||
| @@ -385,7 +385,7 @@ variable is non-nil, Org passes their value to \\label unchanged. | |||
| 385 | You are responsible for ensuring that the value is a valid LaTeX | 385 | You are responsible for ensuring that the value is a valid LaTeX |
| 386 | \\label key, and that no other \\label commands with the same key | 386 | \\label key, and that no other \\label commands with the same key |
| 387 | appear elsewhere in your document. (Keys may contain letters, | 387 | appear elsewhere in your document. (Keys may contain letters, |
| 388 | numbers, and the following punctuation: '_' '.' '-' ':'.) There | 388 | numbers, and the following punctuation: `_' `.' `-' `:'.) There |
| 389 | are no such limitations on CUSTOM_ID and NAME when this variable | 389 | are no such limitations on CUSTOM_ID and NAME when this variable |
| 390 | is nil. | 390 | is nil. |
| 391 | 391 | ||
diff --git a/lisp/progmodes/cc-bytecomp.el b/lisp/progmodes/cc-bytecomp.el index 0cbff579d20..cbffbf47118 100644 --- a/lisp/progmodes/cc-bytecomp.el +++ b/lisp/progmodes/cc-bytecomp.el | |||
| @@ -307,7 +307,7 @@ somewhat intentional." | |||
| 307 | file CC-PART.el in the current directory to be loaded at compile | 307 | file CC-PART.el in the current directory to be loaded at compile |
| 308 | time, (ii) generate code to load the file at load time. | 308 | time, (ii) generate code to load the file at load time. |
| 309 | 309 | ||
| 310 | CC-PART will normally be a quoted name such as 'cc-fix. | 310 | CC-PART will normally be a quoted name such as \\='cc-fix. |
| 311 | CONDITION should not be quoted." | 311 | CONDITION should not be quoted." |
| 312 | (if (eval condition) | 312 | (if (eval condition) |
| 313 | (progn | 313 | (progn |
| @@ -321,7 +321,7 @@ file CC-PART.el in the current directory to be loaded at compile | |||
| 321 | time, (ii) generate an `eval-after-load' form to load CC-PART.el | 321 | time, (ii) generate an `eval-after-load' form to load CC-PART.el |
| 322 | after the loading of FILE. | 322 | after the loading of FILE. |
| 323 | 323 | ||
| 324 | CC-PART will normally be a quoted name such as 'cc-fix. FILE | 324 | CC-PART will normally be a quoted name such as \\='cc-fix. FILE |
| 325 | should be a string. CONDITION should not be quoted." | 325 | should be a string. CONDITION should not be quoted." |
| 326 | (if (eval condition) | 326 | (if (eval condition) |
| 327 | (progn | 327 | (progn |
diff --git a/lisp/progmodes/cc-engine.el b/lisp/progmodes/cc-engine.el index cceb58c290a..15b23bb2e6a 100644 --- a/lisp/progmodes/cc-engine.el +++ b/lisp/progmodes/cc-engine.el | |||
| @@ -5059,10 +5059,10 @@ that region is taken as syntactically significant text. | |||
| 5059 | 5059 | ||
| 5060 | NOERROR, in addition to the values nil, t, and <anything else> | 5060 | NOERROR, in addition to the values nil, t, and <anything else> |
| 5061 | used in `re-search-forward' can also take the values | 5061 | used in `re-search-forward' can also take the values |
| 5062 | 'before-literal and 'after-literal. In these cases, when BOUND | 5062 | `before-literal' and `after-literal'. In these cases, when BOUND |
| 5063 | is also given and is inside a literal, and a search fails, point | 5063 | is also given and is inside a literal, and a search fails, point |
| 5064 | will be left, respectively before or after the literal. Be aware | 5064 | will be left, respectively before or after the literal. Be aware |
| 5065 | that with 'after-literal, if a string or comment is unclosed at | 5065 | that with `after-literal', if a string or comment is unclosed at |
| 5066 | the end of the buffer, point may be left there, even though it is | 5066 | the end of the buffer, point may be left there, even though it is |
| 5067 | inside a literal there. | 5067 | inside a literal there. |
| 5068 | 5068 | ||
diff --git a/lisp/progmodes/idlw-shell.el b/lisp/progmodes/idlw-shell.el index 3367454c1cc..8d6092b5010 100644 --- a/lisp/progmodes/idlw-shell.el +++ b/lisp/progmodes/idlw-shell.el | |||
| @@ -197,7 +197,7 @@ So by default setting a breakpoint will be on C-c C-d C-b." | |||
| 197 | (defcustom idlwave-shell-automatic-electric-debug 'breakpoint | 197 | (defcustom idlwave-shell-automatic-electric-debug 'breakpoint |
| 198 | "Enter the electric-debug minor mode automatically. | 198 | "Enter the electric-debug minor mode automatically. |
| 199 | This occurs at a breakpoint or any other halt. The mode is exited | 199 | This occurs at a breakpoint or any other halt. The mode is exited |
| 200 | upon return to the main level. Can be set to 'breakpoint to enter | 200 | upon return to the main level. Can be set to `breakpoint' to enter |
| 201 | electric debug mode only when breakpoints are tripped." | 201 | electric debug mode only when breakpoints are tripped." |
| 202 | :group 'idlwave-shell-general-setup | 202 | :group 'idlwave-shell-general-setup |
| 203 | :type '(choice | 203 | :type '(choice |
| @@ -281,8 +281,8 @@ is non-nil." | |||
| 281 | (defcustom idlwave-shell-show-commands | 281 | (defcustom idlwave-shell-show-commands |
| 282 | '(run misc breakpoint) | 282 | '(run misc breakpoint) |
| 283 | "A list of command types to show output from in the shell. | 283 | "A list of command types to show output from in the shell. |
| 284 | Possibilities are 'run, 'debug, 'breakpoint, and 'misc. Unselected | 284 | Possibilities are `run', `debug', `breakpoint', and `misc'. Unselected |
| 285 | types are not displayed in the shell. The type 'everything causes all | 285 | types are not displayed in the shell. The type `everything' causes all |
| 286 | the copious shell traffic to be displayed." | 286 | the copious shell traffic to be displayed." |
| 287 | :group 'idlwave-shell-command-setup | 287 | :group 'idlwave-shell-command-setup |
| 288 | :type '(choice | 288 | :type '(choice |
| @@ -571,7 +571,7 @@ before use by the shell.") | |||
| 571 | (defun idlwave-shell-temp-file (type) | 571 | (defun idlwave-shell-temp-file (type) |
| 572 | "Return a temp file, creating it if necessary. | 572 | "Return a temp file, creating it if necessary. |
| 573 | 573 | ||
| 574 | TYPE is either 'pro' or 'rinfo', and `idlwave-shell-temp-pro-file' or | 574 | TYPE is either `pro' or `rinfo', and `idlwave-shell-temp-pro-file' or |
| 575 | `idlwave-shell-temp-rinfo-save-file' is set (respectively)." | 575 | `idlwave-shell-temp-rinfo-save-file' is set (respectively)." |
| 576 | (cond | 576 | (cond |
| 577 | ((eq type 'rinfo) | 577 | ((eq type 'rinfo) |
| @@ -1195,7 +1195,7 @@ See also the variable `idlwave-shell-prompt-pattern'. | |||
| 1195 | 1195 | ||
| 1196 | (defun idlwave-shell-hide-p (type &optional list) | 1196 | (defun idlwave-shell-hide-p (type &optional list) |
| 1197 | "Whether to hide this type of command. | 1197 | "Whether to hide this type of command. |
| 1198 | Return either nil or 'hide." | 1198 | Return either nil or `hide'." |
| 1199 | (let ((list (or list idlwave-shell-show-commands))) | 1199 | (let ((list (or list idlwave-shell-show-commands))) |
| 1200 | (if (listp list) | 1200 | (if (listp list) |
| 1201 | (if (not (memq type list)) 'hide)))) | 1201 | (if (not (memq type list)) 'hide)))) |
| @@ -1222,13 +1222,13 @@ If optional second argument PCMD is non-nil it will be placed on | |||
| 1222 | `idlwave-shell-post-command-hook' when CMD is executed. | 1222 | `idlwave-shell-post-command-hook' when CMD is executed. |
| 1223 | 1223 | ||
| 1224 | If the optional third argument HIDE is non-nil, then hide output from | 1224 | If the optional third argument HIDE is non-nil, then hide output from |
| 1225 | CMD, unless it is the symbol 'mostly, in which case only output | 1225 | CMD, unless it is the symbol `mostly', in which case only output |
| 1226 | beginning with \"%\" is hidden, and all other output (i.e., the | 1226 | beginning with \"%\" is hidden, and all other output (i.e., the |
| 1227 | results of a PRINT command), is shown. This helps with, e.g., | 1227 | results of a PRINT command), is shown. This helps with, e.g., |
| 1228 | stepping through code with output. | 1228 | stepping through code with output. |
| 1229 | 1229 | ||
| 1230 | If optional fourth argument PREEMPT is non-nil CMD is put at front of | 1230 | If optional fourth argument PREEMPT is non-nil CMD is put at front of |
| 1231 | `idlwave-shell-pending-commands'. If PREEMPT is 'wait, wait for all | 1231 | `idlwave-shell-pending-commands'. If PREEMPT is `wait', wait for all |
| 1232 | output to complete and the next prompt to arrive before returning | 1232 | output to complete and the next prompt to arrive before returning |
| 1233 | \(useful if you need an answer now). IDL is considered ready if the | 1233 | \(useful if you need an answer now). IDL is considered ready if the |
| 1234 | prompt is present and if `idlwave-shell-ready' is non-nil. | 1234 | prompt is present and if `idlwave-shell-ready' is non-nil. |
| @@ -1639,8 +1639,8 @@ IDL has stopped. The types of messages we are interested in are | |||
| 1639 | execution halted, stepped, breakpoint, interrupted at and trace | 1639 | execution halted, stepped, breakpoint, interrupted at and trace |
| 1640 | messages. For breakpoint messages process any attached count or | 1640 | messages. For breakpoint messages process any attached count or |
| 1641 | command parameters. Update the stop line if a message is found. | 1641 | command parameters. Update the stop line if a message is found. |
| 1642 | The variable `idlwave-shell-current-state' is set to 'error, 'halt, | 1642 | The variable `idlwave-shell-current-state' is set to `error', `halt', |
| 1643 | or 'breakpoint, which describes the status, or nil for none of | 1643 | or `breakpoint', which describes the status, or nil for none of |
| 1644 | the above." | 1644 | the above." |
| 1645 | (let (trace) | 1645 | (let (trace) |
| 1646 | (cond | 1646 | (cond |
| @@ -2282,8 +2282,8 @@ is used. Does nothing if the resulting frame is nil." | |||
| 2282 | FRAME is a list of file name, line number, and subroutine name. If | 2282 | FRAME is a list of file name, line number, and subroutine name. If |
| 2283 | FRAME is nil then remove overlay. If COL is set, move point to that | 2283 | FRAME is nil then remove overlay. If COL is set, move point to that |
| 2284 | column in the line. If DEBUG is non-nil, enable the electric debug | 2284 | column in the line. If DEBUG is non-nil, enable the electric debug |
| 2285 | mode. If it is 'disable, do not enable no matter what the setting of | 2285 | mode. If it is `disable', do not enable no matter what the setting of |
| 2286 | `idlwave-shell-automatic-electric-debug'. If it is 'force, enable no | 2286 | `idlwave-shell-automatic-electric-debug'. If it is `force', enable no |
| 2287 | matter what the settings of that variable." | 2287 | matter what the settings of that variable." |
| 2288 | (if (not frame) | 2288 | (if (not frame) |
| 2289 | ;; remove stop-line overlay from old position | 2289 | ;; remove stop-line overlay from old position |
| @@ -2560,7 +2560,7 @@ stopped at a breakpoint." | |||
| 2560 | (defun idlwave-shell-toggle-enable-current-bp (&optional bp force | 2560 | (defun idlwave-shell-toggle-enable-current-bp (&optional bp force |
| 2561 | no-update) | 2561 | no-update) |
| 2562 | "Disable or enable current breakpoint or a breakpoint passed in BP. | 2562 | "Disable or enable current breakpoint or a breakpoint passed in BP. |
| 2563 | If FORCE is 'disable or 'enable, for that condition instead of | 2563 | If FORCE is `disable' or `enable', for that condition instead of |
| 2564 | toggling. If NO-UPDATE is non-nil, don't update the breakpoint | 2564 | toggling. If NO-UPDATE is non-nil, don't update the breakpoint |
| 2565 | list after toggling." | 2565 | list after toggling." |
| 2566 | (interactive) | 2566 | (interactive) |
| @@ -3114,7 +3114,7 @@ versions of IDL." | |||
| 3114 | (defun idlwave-shell-help-statement (help expr) | 3114 | (defun idlwave-shell-help-statement (help expr) |
| 3115 | "Construct a help statement for printing expression EXPR. | 3115 | "Construct a help statement for printing expression EXPR. |
| 3116 | 3116 | ||
| 3117 | HELP can be non-nil for `help,', nil for 'print,' or any string into which | 3117 | HELP can be non-nil for `help,', nil for `print,' or any string into which |
| 3118 | to insert expression in place of the marker ___, e.g.: print, | 3118 | to insert expression in place of the marker ___, e.g.: print, |
| 3119 | size(___,/DIMENSIONS)" | 3119 | size(___,/DIMENSIONS)" |
| 3120 | (cond | 3120 | (cond |
| @@ -3287,9 +3287,9 @@ Queries IDL using the string in `idlwave-shell-bp-query'." | |||
| 3287 | "Get a value for a breakpoint. | 3287 | "Get a value for a breakpoint. |
| 3288 | BP has the form of elements in `idlwave-shell-bp-alist'. | 3288 | BP has the form of elements in `idlwave-shell-bp-alist'. |
| 3289 | Optional second arg ITEM is the particular value to retrieve. | 3289 | Optional second arg ITEM is the particular value to retrieve. |
| 3290 | ITEM can be 'file, 'line, 'index, 'module, 'count, 'cmd, | 3290 | ITEM can be `file', `line', `index', `module', `count', `cmd', |
| 3291 | 'condition, 'disabled, 'type, or 'data. 'data returns a list | 3291 | `condition', `disabled', `type', or `data'. `data' returns a list |
| 3292 | of 'count, 'cmd and 'condition. Defaults to 'index." | 3292 | of `count', `cmd' and `condition'. Defaults to `index'." |
| 3293 | (cond | 3293 | (cond |
| 3294 | ;; Frame | 3294 | ;; Frame |
| 3295 | ((eq item 'line) (nth 1 (car bp))) | 3295 | ((eq item 'line) (nth 1 (car bp))) |
| @@ -3636,7 +3636,7 @@ Existing overlays are recycled, in order to minimize consumption." | |||
| 3636 | "Make a new overlay for highlighting breakpoints. | 3636 | "Make a new overlay for highlighting breakpoints. |
| 3637 | 3637 | ||
| 3638 | This stuff is strongly dependent upon the version of Emacs. If TYPE | 3638 | This stuff is strongly dependent upon the version of Emacs. If TYPE |
| 3639 | is passed, make an overlay of that type ('bp or 'bp-cond, currently | 3639 | is passed, make an overlay of that type (`bp' or `bp-cond', currently |
| 3640 | only for glyphs)." | 3640 | only for glyphs)." |
| 3641 | (let ((ov (make-overlay 1 1)) | 3641 | (let ((ov (make-overlay 1 1)) |
| 3642 | (use-glyph (and (memq idlwave-shell-mark-breakpoints '(t glyph)) | 3642 | (use-glyph (and (memq idlwave-shell-mark-breakpoints '(t glyph)) |
diff --git a/lisp/progmodes/mixal-mode.el b/lisp/progmodes/mixal-mode.el index a759709b5c8..8dcd625adc9 100644 --- a/lisp/progmodes/mixal-mode.el +++ b/lisp/progmodes/mixal-mode.el | |||
| @@ -330,7 +330,7 @@ part of the subfield. The default field for STJ is (0:2)." | |||
| 330 | 2) | 330 | 2) |
| 331 | 331 | ||
| 332 | (STZ storing "store zero" 33 field | 332 | (STZ storing "store zero" 33 field |
| 333 | "Store in cell Nr. M '+ 0'. | 333 | "Store in cell Nr. M `+ 0'. |
| 334 | The modification of the operation code represents the subfield of the | 334 | The modification of the operation code represents the subfield of the |
| 335 | memory cell that is to be overwritten with zeros." | 335 | memory cell that is to be overwritten with zeros." |
| 336 | 2) | 336 | 2) |
diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el index c7807f39447..5627a215739 100644 --- a/lisp/progmodes/project.el +++ b/lisp/progmodes/project.el | |||
| @@ -110,7 +110,7 @@ is not a part of a detectable project either, return a | |||
| 110 | (setq dir (read-directory-name "Choose the project directory: " dir nil t) | 110 | (setq dir (read-directory-name "Choose the project directory: " dir nil t) |
| 111 | pr (project--find-in-directory dir)) | 111 | pr (project--find-in-directory dir)) |
| 112 | (unless pr | 112 | (unless pr |
| 113 | (message "Using '%s' as a transient project root" dir) | 113 | (message "Using `%s' as a transient project root" dir) |
| 114 | (setq pr (cons 'transient dir))))) | 114 | (setq pr (cons 'transient dir))))) |
| 115 | pr)) | 115 | pr)) |
| 116 | 116 | ||
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index e672645c734..37e0ccf7198 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -3747,7 +3747,7 @@ Used to extract the current line and module being inspected. | |||
| 3747 | 3747 | ||
| 3748 | Must match lines with real filename, like | 3748 | Must match lines with real filename, like |
| 3749 | > /path/to/file.py(42)<module>()->None | 3749 | > /path/to/file.py(42)<module>()->None |
| 3750 | and lines in which filename starts with '<', e.g. | 3750 | and lines in which filename starts with `<', e.g. |
| 3751 | > <stdin>(1)<module>()->None | 3751 | > <stdin>(1)<module>()->None |
| 3752 | 3752 | ||
| 3753 | In the first case /path/to/file.py file will be visited and overlay icon | 3753 | In the first case /path/to/file.py file will be visited and overlay icon |
| @@ -3762,21 +3762,21 @@ Line number is expected in the second parenthesized expression." | |||
| 3762 | :safe 'stringp) | 3762 | :safe 'stringp) |
| 3763 | 3763 | ||
| 3764 | (defcustom python-pdbtrack-continue-command '("c" "cont" "continue") | 3764 | (defcustom python-pdbtrack-continue-command '("c" "cont" "continue") |
| 3765 | "Pdb 'continue' command aliases. | 3765 | "Pdb `continue' command aliases. |
| 3766 | After one of this commands is sent to pdb, pdbtracking session is | 3766 | After one of these commands is sent to pdb, the pdbtracking session is |
| 3767 | considered over. | 3767 | considered over. |
| 3768 | 3768 | ||
| 3769 | This command is remembered by pdbtracking. If next command sent to pdb | 3769 | This command is remembered by pdbtracking. If the next command sent to pdb |
| 3770 | is empty string, it considered 'continue' command if previous command | 3770 | is the empty string, it is treated as `continue' if the previous command |
| 3771 | was 'continue'. This behavior slightly differentiate 'continue' command | 3771 | was `continue'. This behavior slightly differentiates the `continue' command |
| 3772 | from 'exit' commands listed in `python-pdbtrack-exit-command'. | 3772 | from the `exit' command listed in `python-pdbtrack-exit-command'. |
| 3773 | 3773 | ||
| 3774 | See `python-pdbtrack-activate' for pdbtracking session overview." | 3774 | See `python-pdbtrack-activate' for pdbtracking session overview." |
| 3775 | :type 'list | 3775 | :type 'list |
| 3776 | :version "27.1") | 3776 | :version "27.1") |
| 3777 | 3777 | ||
| 3778 | (defcustom python-pdbtrack-exit-command '("q" "quit" "exit") | 3778 | (defcustom python-pdbtrack-exit-command '("q" "quit" "exit") |
| 3779 | "Pdb 'exit' command aliases. | 3779 | "Pdb `exit' command aliases. |
| 3780 | After one of this commands is sent to pdb, pdbtracking session is | 3780 | After one of this commands is sent to pdb, pdbtracking session is |
| 3781 | considered over. | 3781 | considered over. |
| 3782 | 3782 | ||
| @@ -3801,7 +3801,7 @@ Never set this variable directly, use | |||
| 3801 | "List of buffers to be deleted after tracking finishes.") | 3801 | "List of buffers to be deleted after tracking finishes.") |
| 3802 | 3802 | ||
| 3803 | (defvar python-pdbtrack-prev-command-continue nil | 3803 | (defvar python-pdbtrack-prev-command-continue nil |
| 3804 | "Is t if previous pdb command was 'continue'.") | 3804 | "Is t if previous pdb command was `continue'.") |
| 3805 | 3805 | ||
| 3806 | (defun python-pdbtrack-set-tracked-buffer (file-name) | 3806 | (defun python-pdbtrack-set-tracked-buffer (file-name) |
| 3807 | "Set the buffer for FILE-NAME as the tracked buffer. | 3807 | "Set the buffer for FILE-NAME as the tracked buffer. |
diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el index 69acc7a3944..b9d9347b5b3 100644 --- a/lisp/progmodes/ruby-mode.el +++ b/lisp/progmodes/ruby-mode.el | |||
| @@ -1807,9 +1807,9 @@ If the result is do-end block, it will always be multiline." | |||
| 1807 | (defun ruby-find-library-file (&optional feature-name) | 1807 | (defun ruby-find-library-file (&optional feature-name) |
| 1808 | "Visit a library file denoted by FEATURE-NAME. | 1808 | "Visit a library file denoted by FEATURE-NAME. |
| 1809 | FEATURE-NAME is a relative file name, file extension is optional. | 1809 | FEATURE-NAME is a relative file name, file extension is optional. |
| 1810 | This commands delegates to 'gem which', which searches both | 1810 | This commands delegates to `gem which', which searches both |
| 1811 | installed gems and the standard library. When called | 1811 | installed gems and the standard library. When called |
| 1812 | interactively, defaults to the feature name in the 'require' | 1812 | interactively, defaults to the feature name in the `require' |
| 1813 | statement around point." | 1813 | statement around point." |
| 1814 | (interactive) | 1814 | (interactive) |
| 1815 | (unless feature-name | 1815 | (unless feature-name |
diff --git a/lisp/progmodes/simula.el b/lisp/progmodes/simula.el index 9fc6d54faf3..a894e8e3f75 100644 --- a/lisp/progmodes/simula.el +++ b/lisp/progmodes/simula.el | |||
| @@ -1122,7 +1122,7 @@ If COUNT is negative, move backward instead." | |||
| 1122 | ((eq (following-char) ?\;) | 1122 | ((eq (following-char) ?\;) |
| 1123 | (if (zerop parlevel) | 1123 | (if (zerop parlevel) |
| 1124 | (throw 'simula-out nil) | 1124 | (throw 'simula-out nil) |
| 1125 | (error "Parenthesis mismatch or misplaced ';'"))) | 1125 | (error "Parenthesis mismatch or misplaced `;'"))) |
| 1126 | ((eq (following-char) ?\() | 1126 | ((eq (following-char) ?\() |
| 1127 | (if (zerop parlevel) | 1127 | (if (zerop parlevel) |
| 1128 | (throw 'simula-out (1+ (current-column))) | 1128 | (throw 'simula-out (1+ (current-column))) |
diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el index 16ddcdebc9f..dc5bf203a21 100644 --- a/lisp/progmodes/vhdl-mode.el +++ b/lisp/progmodes/vhdl-mode.el | |||
| @@ -8737,13 +8737,13 @@ project is defined." | |||
| 8737 | ((/= (preceding-char) ?-) ; standard dash (minus) | 8737 | ((/= (preceding-char) ?-) ; standard dash (minus) |
| 8738 | (self-insert-command count)) | 8738 | (self-insert-command count)) |
| 8739 | (t (self-insert-command count) | 8739 | (t (self-insert-command count) |
| 8740 | (message "Enter '-' for horiz. line, 'CR' for commenting-out code, else enter comment") | 8740 | (message "Enter `-' for horiz. line, RET for commenting-out code, else enter comment") |
| 8741 | (let ((next-input (read-char))) | 8741 | (let ((next-input (read-char))) |
| 8742 | (if (= next-input ?-) ; triple dash | 8742 | (if (= next-input ?-) ; triple dash |
| 8743 | (progn | 8743 | (progn |
| 8744 | (vhdl-comment-display-line) | 8744 | (vhdl-comment-display-line) |
| 8745 | (message | 8745 | (message |
| 8746 | "Enter '-' for display comment, else continue coding") | 8746 | "Enter `-' for display comment, else continue coding") |
| 8747 | (let ((next-input (read-char))) | 8747 | (let ((next-input (read-char))) |
| 8748 | (if (= next-input ?-) ; four dashes | 8748 | (if (= next-input ?-) ; four dashes |
| 8749 | (vhdl-comment-display t) | 8749 | (vhdl-comment-display t) |
diff --git a/lisp/so-long.el b/lisp/so-long.el index 43602b48313..b5eb1242156 100644 --- a/lisp/so-long.el +++ b/lisp/so-long.el | |||
| @@ -1342,7 +1342,7 @@ This is the `so-long-revert-function' for `so-long-mode'." | |||
| 1342 | (defun so-long-mode-downgrade (&optional mode) | 1342 | (defun so-long-mode-downgrade (&optional mode) |
| 1343 | "The default value for `so-long-file-local-mode-function'. | 1343 | "The default value for `so-long-file-local-mode-function'. |
| 1344 | 1344 | ||
| 1345 | A buffer-local 'downgrade' from `so-long-mode' to `so-long-minor-mode'. | 1345 | A buffer-local \"downgrade\" from `so-long-mode' to `so-long-minor-mode'. |
| 1346 | 1346 | ||
| 1347 | When `so-long-function' is set to `so-long-mode', then we change it to to | 1347 | When `so-long-function' is set to `so-long-mode', then we change it to to |
| 1348 | `turn-on-so-long-minor-mode' instead -- retaining the file-local major | 1348 | `turn-on-so-long-minor-mode' instead -- retaining the file-local major |
| @@ -1373,13 +1373,13 @@ This is a `so-long-file-local-mode-function' option." | |||
| 1373 | ;; See also "Files with a file-local 'mode'" in the Commentary. | 1373 | ;; See also "Files with a file-local 'mode'" in the Commentary. |
| 1374 | "Handle the header-comments processing in `set-auto-mode'. | 1374 | "Handle the header-comments processing in `set-auto-mode'. |
| 1375 | 1375 | ||
| 1376 | `set-auto-mode' has some special-case code to handle the 'mode' pseudo-variable | 1376 | `set-auto-mode' has some special-case code to handle the `mode' pseudo-variable |
| 1377 | when set in the header comment. This runs outside of `hack-local-variables' | 1377 | when set in the header comment. This runs outside of `hack-local-variables' |
| 1378 | and cannot be conveniently intercepted, so we are forced to replicate it here. | 1378 | and cannot be conveniently intercepted, so we are forced to replicate it here. |
| 1379 | 1379 | ||
| 1380 | This special-case code will ultimately be removed from Emacs, as it exists to | 1380 | This special-case code will ultimately be removed from Emacs, as it exists to |
| 1381 | deal with a deprecated feature; but until then we need to replicate it in order | 1381 | deal with a deprecated feature; but until then we need to replicate it in order |
| 1382 | to inhibit our own behaviour in the presence of a header comment 'mode' | 1382 | to inhibit our own behavior in the presence of a header comment `mode' |
| 1383 | declaration. | 1383 | declaration. |
| 1384 | 1384 | ||
| 1385 | If a file-local mode is detected in the header comment, then we call the | 1385 | If a file-local mode is detected in the header comment, then we call the |
| @@ -1496,7 +1496,7 @@ major mode is a member (or derivative of a member) of `so-long-target-modes'. | |||
| 1496 | 1496 | ||
| 1497 | This advice is needed and enabled only for Emacs versions < 26.1. | 1497 | This advice is needed and enabled only for Emacs versions < 26.1. |
| 1498 | 1498 | ||
| 1499 | If the local 'mode' pseudo-variable is used, `set-auto-mode-0' will call it | 1499 | If the local `mode' pseudo-variable is used, `set-auto-mode-0' will call it |
| 1500 | firstly, and subsequently `hack-one-local-variable' may call it again. | 1500 | firstly, and subsequently `hack-one-local-variable' may call it again. |
| 1501 | 1501 | ||
| 1502 | Usually `hack-one-local-variable' tries to avoid processing that second call, | 1502 | Usually `hack-one-local-variable' tries to avoid processing that second call, |
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index be2e192e5af..dd1eeb45300 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -2472,7 +2472,7 @@ SPC: Accept word this time. | |||
| 2472 | (help-2 (concat "[l]ook a word up in alternate dictionary; " | 2472 | (help-2 (concat "[l]ook a word up in alternate dictionary; " |
| 2473 | "e[x/X]it; [q]uit session")) | 2473 | "e[x/X]it; [q]uit session")) |
| 2474 | (help-3 (concat "[u]ncapitalized insert into dict. " | 2474 | (help-3 (concat "[u]ncapitalized insert into dict. " |
| 2475 | "Type 'x C-h f ispell-help' for more help"))) | 2475 | "Type `x C-h f ispell-help' for more help"))) |
| 2476 | (save-window-excursion | 2476 | (save-window-excursion |
| 2477 | (if ispell-help-in-bufferp | 2477 | (if ispell-help-in-bufferp |
| 2478 | (let ((buffer (get-buffer-create "*Ispell Help*"))) | 2478 | (let ((buffer (get-buffer-create "*Ispell Help*"))) |
| @@ -3603,7 +3603,7 @@ If APPEND is non-n il, append the info to previous buffer if exists." | |||
| 3603 | "Continue a halted spelling session beginning with the current word." | 3603 | "Continue a halted spelling session beginning with the current word." |
| 3604 | (interactive) | 3604 | (interactive) |
| 3605 | (if (not (marker-position ispell-region-end)) | 3605 | (if (not (marker-position ispell-region-end)) |
| 3606 | (message "No session to continue. Use 'X' command when checking!") | 3606 | (message "No session to continue. Use `X' command when checking!") |
| 3607 | (if (not (equal (marker-buffer ispell-region-end) (current-buffer))) | 3607 | (if (not (equal (marker-buffer ispell-region-end) (current-buffer))) |
| 3608 | (message "Must continue ispell from buffer %s" | 3608 | (message "Must continue ispell from buffer %s" |
| 3609 | (buffer-name (marker-buffer ispell-region-end))) | 3609 | (buffer-name (marker-buffer ispell-region-end))) |
diff --git a/lisp/url/url-file.el b/lisp/url/url-file.el index 41ffb4cd4a8..df567b0fc4d 100644 --- a/lisp/url/url-file.el +++ b/lisp/url/url-file.el | |||
| @@ -37,8 +37,8 @@ | |||
| 37 | "Find the exact file referenced by `fname'. | 37 | "Find the exact file referenced by `fname'. |
| 38 | This tries the common compression extensions, because things like | 38 | This tries the common compression extensions, because things like |
| 39 | ange-ftp and efs are not quite smart enough to realize when a server | 39 | ange-ftp and efs are not quite smart enough to realize when a server |
| 40 | can do automatic decompression for them, and won't find 'foo' if | 40 | can do automatic decompression for them, and won't find `foo' if |
| 41 | 'foo.gz' exists, even though the FTP server would happily serve it up | 41 | `foo.gz' exists, even though the FTP server would happily serve it up |
| 42 | to them." | 42 | to them." |
| 43 | (let ((scratch nil) | 43 | (let ((scratch nil) |
| 44 | (compressed-extensions '("" ".gz" ".z" ".Z" ".bz2" ".xz")) | 44 | (compressed-extensions '("" ".gz" ".z" ".Z" ".bz2" ".xz")) |
diff --git a/lisp/vc/ediff-util.el b/lisp/vc/ediff-util.el index 52a765482e0..a481defe29f 100644 --- a/lisp/vc/ediff-util.el +++ b/lisp/vc/ediff-util.el | |||
| @@ -1274,21 +1274,21 @@ which see." | |||
| 1274 | (cond ((eq ediff-window-setup-function #'ediff-setup-windows-multiframe) | 1274 | (cond ((eq ediff-window-setup-function #'ediff-setup-windows-multiframe) |
| 1275 | (setq ediff-multiframe nil) | 1275 | (setq ediff-multiframe nil) |
| 1276 | (setq window-setup-func #'ediff-setup-windows-plain) | 1276 | (setq window-setup-func #'ediff-setup-windows-plain) |
| 1277 | (message "ediff is now in 'plain' mode")) | 1277 | (message "ediff is now in `plain' mode")) |
| 1278 | ((eq ediff-window-setup-function #'ediff-setup-windows-plain) | 1278 | ((eq ediff-window-setup-function #'ediff-setup-windows-plain) |
| 1279 | (if (and (ediff-buffer-live-p ediff-control-buffer) | 1279 | (if (and (ediff-buffer-live-p ediff-control-buffer) |
| 1280 | (window-live-p ediff-control-window)) | 1280 | (window-live-p ediff-control-window)) |
| 1281 | (set-window-dedicated-p ediff-control-window nil)) | 1281 | (set-window-dedicated-p ediff-control-window nil)) |
| 1282 | (setq ediff-multiframe t) | 1282 | (setq ediff-multiframe t) |
| 1283 | (setq window-setup-func #'ediff-setup-windows-multiframe) | 1283 | (setq window-setup-func #'ediff-setup-windows-multiframe) |
| 1284 | (message "ediff is now in 'multiframe' mode")) | 1284 | (message "ediff is now in `multiframe' mode")) |
| 1285 | (t | 1285 | (t |
| 1286 | (if (and (ediff-buffer-live-p ediff-control-buffer) | 1286 | (if (and (ediff-buffer-live-p ediff-control-buffer) |
| 1287 | (window-live-p ediff-control-window)) | 1287 | (window-live-p ediff-control-window)) |
| 1288 | (set-window-dedicated-p ediff-control-window nil)) | 1288 | (set-window-dedicated-p ediff-control-window nil)) |
| 1289 | (setq ediff-multiframe t) | 1289 | (setq ediff-multiframe t) |
| 1290 | (setq window-setup-func #'ediff-setup-windows-multiframe)) | 1290 | (setq window-setup-func #'ediff-setup-windows-multiframe)) |
| 1291 | (message "ediff is now in 'multiframe' mode")) | 1291 | (message "ediff is now in `multiframe' mode")) |
| 1292 | 1292 | ||
| 1293 | ;; change default | 1293 | ;; change default |
| 1294 | (setq-default ediff-window-setup-function window-setup-func) | 1294 | (setq-default ediff-window-setup-function window-setup-func) |
diff --git a/lisp/vc/vc-bzr.el b/lisp/vc/vc-bzr.el index 89f1fcce376..4c75eb79f1a 100644 --- a/lisp/vc/vc-bzr.el +++ b/lisp/vc/vc-bzr.el | |||
| @@ -433,7 +433,7 @@ default if it is available." | |||
| 433 | Return value is a cons (STATUS . WARNING), where WARNING is a | 433 | Return value is a cons (STATUS . WARNING), where WARNING is a |
| 434 | string or nil, and STATUS is one of the symbols: `added', | 434 | string or nil, and STATUS is one of the symbols: `added', |
| 435 | `ignored', `kindchanged', `modified', `removed', `renamed', `unknown', | 435 | `ignored', `kindchanged', `modified', `removed', `renamed', `unknown', |
| 436 | which directly correspond to `bzr status' output, or 'unchanged | 436 | which directly correspond to `bzr status' output, or `unchanged' |
| 437 | for files whose copy in the working tree is identical to the one | 437 | for files whose copy in the working tree is identical to the one |
| 438 | in the branch repository (or whose status not be determined)." | 438 | in the branch repository (or whose status not be determined)." |
| 439 | ;; Doc used to also say the following, but AFAICS, it has never been true. | 439 | ;; Doc used to also say the following, but AFAICS, it has never been true. |
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el index 3960f725cf9..2046a9dceca 100644 --- a/lisp/vc/vc-git.el +++ b/lisp/vc/vc-git.el | |||
| @@ -282,8 +282,8 @@ toggle display of the entire list." | |||
| 282 | "Convert CODE-LIST to a VC status. | 282 | "Convert CODE-LIST to a VC status. |
| 283 | 283 | ||
| 284 | Each element of CODE-LIST comes from the first two characters of | 284 | Each element of CODE-LIST comes from the first two characters of |
| 285 | a line returned by 'git status --porcelain' and should be passed | 285 | a line returned by `git status --porcelain' and should be passed |
| 286 | in the order given by 'git status'." | 286 | in the order given by `git status'." |
| 287 | ;; It is necessary to allow CODE-LIST to be a list because sometimes git | 287 | ;; It is necessary to allow CODE-LIST to be a list because sometimes git |
| 288 | ;; status returns multiple lines, e.g. for a file that is removed from | 288 | ;; status returns multiple lines, e.g. for a file that is removed from |
| 289 | ;; the index but is present in the HEAD and working tree. | 289 | ;; the index but is present in the HEAD and working tree. |
diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index 32e0b3e125b..94ab938a227 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el | |||
| @@ -3512,7 +3512,7 @@ To use this type, you must define :match or :match-alternatives." | |||
| 3512 | The `lazy' widget will, when instantiated, contain a single inferior | 3512 | The `lazy' widget will, when instantiated, contain a single inferior |
| 3513 | widget, of the widget type specified by the :type parameter. The | 3513 | widget, of the widget type specified by the :type parameter. The |
| 3514 | value of the `lazy' widget is the same as the value of the inferior | 3514 | value of the `lazy' widget is the same as the value of the inferior |
| 3515 | widget. When deriving a new widget from the 'lazy' widget, the :type | 3515 | widget. When deriving a new widget from the `lazy' widget, the :type |
| 3516 | parameter is allowed to refer to the widget currently being defined, | 3516 | parameter is allowed to refer to the widget currently being defined, |
| 3517 | thus allowing recursive data structures to be described. | 3517 | thus allowing recursive data structures to be described. |
| 3518 | 3518 | ||
diff --git a/test/lisp/files-tests.el b/test/lisp/files-tests.el index d73c6a78421..eca1e3bc7f9 100644 --- a/test/lisp/files-tests.el +++ b/test/lisp/files-tests.el | |||
| @@ -240,8 +240,8 @@ form.") | |||
| 240 | (should (equal kill-emacs-args '(nil))))) | 240 | (should (equal kill-emacs-args '(nil))))) |
| 241 | 241 | ||
| 242 | (ert-deftest files-tests-read-file-in-~ () | 242 | (ert-deftest files-tests-read-file-in-~ () |
| 243 | "Test file prompting in directory named '~'. | 243 | "Test file prompting in directory named `~'. |
| 244 | If we are in a directory named '~', the default value should not | 244 | If we are in a directory named `~', the default value should not |
| 245 | be $HOME." | 245 | be $HOME." |
| 246 | (cl-letf (((symbol-function 'completing-read) | 246 | (cl-letf (((symbol-function 'completing-read) |
| 247 | (lambda (_prompt _coll &optional _pred _req init _hist def _) | 247 | (lambda (_prompt _coll &optional _pred _req init _hist def _) |
diff --git a/test/src/lread-tests.el b/test/src/lread-tests.el index ba5bfe0145d..3a2212ef770 100644 --- a/test/src/lread-tests.el +++ b/test/src/lread-tests.el | |||
| @@ -145,7 +145,7 @@ literals (Bug#20852)." | |||
| 145 | "expected!"))))) | 145 | "expected!"))))) |
| 146 | 146 | ||
| 147 | (ert-deftest lread-tests--funny-quote-symbols () | 147 | (ert-deftest lread-tests--funny-quote-symbols () |
| 148 | "Check that 'smart quotes' or similar trigger errors in symbol names." | 148 | "Check that `smart quotes' or similar trigger errors in symbol names." |
| 149 | (dolist (quote-char | 149 | (dolist (quote-char |
| 150 | '(#x2018 ;; LEFT SINGLE QUOTATION MARK | 150 | '(#x2018 ;; LEFT SINGLE QUOTATION MARK |
| 151 | #x2019 ;; RIGHT SINGLE QUOTATION MARK | 151 | #x2019 ;; RIGHT SINGLE QUOTATION MARK |