diff options
| author | Paul Eggert | 2015-11-18 09:17:20 -0800 |
|---|---|---|
| committer | Paul Eggert | 2015-11-18 09:17:55 -0800 |
| commit | bb4303c536a2ac5fe683a711ef8072074f77670e (patch) | |
| tree | b2d254f657728f61262d3b6fe58d972756fcc292 | |
| parent | 3e309ad86c8f11765d28a875bb2299d0e214d16d (diff) | |
| download | emacs-bb4303c536a2ac5fe683a711ef8072074f77670e.tar.gz emacs-bb4303c536a2ac5fe683a711ef8072074f77670e.zip | |
Quote symbols in docstrings using `'
Be more systematic about quoting symbols `like-this' rather than
`like-this or 'like-this' in docstrings. This follows up Artur
Malabarba's email in:
http://lists.gnu.org/archive/html/emacs-devel/2015-11/msg01647.html
| -rw-r--r-- | lisp/cedet/semantic/db-find.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/find.el | 4 | ||||
| -rw-r--r-- | lisp/cedet/semantic/fw.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/tag.el | 4 | ||||
| -rw-r--r-- | lisp/erc/erc.el | 6 | ||||
| -rw-r--r-- | lisp/ido.el | 2 | ||||
| -rw-r--r-- | lisp/net/eww.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/hideshow.el | 4 | ||||
| -rw-r--r-- | lisp/progmodes/mantemp.el | 2 |
9 files changed, 14 insertions, 14 deletions
diff --git a/lisp/cedet/semantic/db-find.el b/lisp/cedet/semantic/db-find.el index b441cd18b63..e5ce4cf233c 100644 --- a/lisp/cedet/semantic/db-find.el +++ b/lisp/cedet/semantic/db-find.el | |||
| @@ -316,7 +316,7 @@ Default action as described in `semanticdb-find-translate-path'." | |||
| 316 | ;;;###autoload | 316 | ;;;###autoload |
| 317 | (define-overloadable-function semanticdb-find-table-for-include (includetag &optional table) | 317 | (define-overloadable-function semanticdb-find-table-for-include (includetag &optional table) |
| 318 | "For a single INCLUDETAG found in TABLE, find a `semanticdb-table' object | 318 | "For a single INCLUDETAG found in TABLE, find a `semanticdb-table' object |
| 319 | INCLUDETAG is a semantic TAG of class 'include. | 319 | INCLUDETAG is a semantic TAG of class `include'. |
| 320 | TABLE is a semanticdb table that identifies where INCLUDETAG came from. | 320 | TABLE is a semanticdb table that identifies where INCLUDETAG came from. |
| 321 | TABLE is optional if INCLUDETAG has an overlay of :filename attribute." | 321 | TABLE is optional if INCLUDETAG has an overlay of :filename attribute." |
| 322 | ) | 322 | ) |
diff --git a/lisp/cedet/semantic/find.el b/lisp/cedet/semantic/find.el index fdd5f5290f1..5450ac953f6 100644 --- a/lisp/cedet/semantic/find.el +++ b/lisp/cedet/semantic/find.el | |||
| @@ -378,11 +378,11 @@ See `semantic-tag-protected-p' for details on which tags are returned." | |||
| 378 | 378 | ||
| 379 | ;;;###autoload | 379 | ;;;###autoload |
| 380 | (define-overloadable-function semantic-find-tags-included (&optional table) | 380 | (define-overloadable-function semantic-find-tags-included (&optional table) |
| 381 | "Find all tags in TABLE that are of the 'include class. | 381 | "Find all tags in TABLE that are of the `include' class. |
| 382 | TABLE is a tag table. See `semantic-something-to-tag-table'.") | 382 | TABLE is a tag table. See `semantic-something-to-tag-table'.") |
| 383 | 383 | ||
| 384 | (defun semantic-find-tags-included-default (&optional table) | 384 | (defun semantic-find-tags-included-default (&optional table) |
| 385 | "Find all tags in TABLE that are of the 'include class. | 385 | "Find all tags in TABLE that are of the `include' class. |
| 386 | TABLE is a tag table. See `semantic-something-to-tag-table'. | 386 | TABLE is a tag table. See `semantic-something-to-tag-table'. |
| 387 | By default, just call `semantic-find-tags-by-class'." | 387 | By default, just call `semantic-find-tags-by-class'." |
| 388 | (semantic-find-tags-by-class 'include table)) | 388 | (semantic-find-tags-by-class 'include table)) |
diff --git a/lisp/cedet/semantic/fw.el b/lisp/cedet/semantic/fw.el index b7a6ed352d1..fed50fb5dfa 100644 --- a/lisp/cedet/semantic/fw.el +++ b/lisp/cedet/semantic/fw.el | |||
| @@ -171,7 +171,7 @@ That is remove the unsupported :help stuff." | |||
| 171 | NAME specifies a special name that can be searched for later to | 171 | NAME specifies a special name that can be searched for later to |
| 172 | recover the cached data with `semantic-get-cache-data'. | 172 | recover the cached data with `semantic-get-cache-data'. |
| 173 | LIFESPAN indicates how long the data cache will be remembered. | 173 | LIFESPAN indicates how long the data cache will be remembered. |
| 174 | The default LIFESPAN is 'end-of-command. | 174 | The default LIFESPAN is `end-of-command'. |
| 175 | Possible Lifespans are: | 175 | Possible Lifespans are: |
| 176 | `end-of-command' - Remove the cache at the end of the currently | 176 | `end-of-command' - Remove the cache at the end of the currently |
| 177 | executing command. | 177 | executing command. |
diff --git a/lisp/cedet/semantic/tag.el b/lisp/cedet/semantic/tag.el index 8ec5fffd413..f53f5d201be 100644 --- a/lisp/cedet/semantic/tag.el +++ b/lisp/cedet/semantic/tag.el | |||
| @@ -958,8 +958,8 @@ Return nil if TAG is not of class `alias'." | |||
| 958 | "Return a list of components for TAG. | 958 | "Return a list of components for TAG. |
| 959 | A Component is a part of TAG which itself may be a TAG. | 959 | A Component is a part of TAG which itself may be a TAG. |
| 960 | Examples include the elements of a structure in a | 960 | Examples include the elements of a structure in a |
| 961 | tag of class 'type, or the list of arguments to a | 961 | tag of class `type', or the list of arguments to a |
| 962 | tag of class 'function." | 962 | tag of class `function'." |
| 963 | ) | 963 | ) |
| 964 | 964 | ||
| 965 | (defun semantic-tag-components-default (tag) | 965 | (defun semantic-tag-components-default (tag) |
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el index ab90df8fd3c..a66338dff02 100644 --- a/lisp/erc/erc.el +++ b/lisp/erc/erc.el | |||
| @@ -2419,9 +2419,9 @@ If STRING is nil, the function does nothing." | |||
| 2419 | "Display STRING in the ERC BUFFER. | 2419 | "Display STRING in the ERC BUFFER. |
| 2420 | All screen output must be done through this function. If BUFFER is nil | 2420 | All screen output must be done through this function. If BUFFER is nil |
| 2421 | or omitted, the default ERC buffer for the `erc-session-server' is used. | 2421 | or omitted, the default ERC buffer for the `erc-session-server' is used. |
| 2422 | The BUFFER can be an actual buffer, a list of buffers, 'all or 'active. | 2422 | The BUFFER can be an actual buffer, a list of buffers, `all' or `active'. |
| 2423 | If BUFFER = 'all, the string is displayed in all the ERC buffers for the | 2423 | If BUFFER = `all', the string is displayed in all the ERC buffers for the |
| 2424 | current session. 'active means the current active buffer | 2424 | current session. `active' means the current active buffer |
| 2425 | \(`erc-active-buffer'). If the buffer can't be resolved, the current | 2425 | \(`erc-active-buffer'). If the buffer can't be resolved, the current |
| 2426 | buffer is used. `erc-display-line-1' is used to display STRING. | 2426 | buffer is used. `erc-display-line-1' is used to display STRING. |
| 2427 | 2427 | ||
diff --git a/lisp/ido.el b/lisp/ido.el index 22025e2eb51..a254b4fefcf 100644 --- a/lisp/ido.el +++ b/lisp/ido.el | |||
| @@ -756,7 +756,7 @@ matching item, even without typing a slash." | |||
| 756 | (defcustom ido-create-new-buffer 'prompt | 756 | (defcustom ido-create-new-buffer 'prompt |
| 757 | "Specify whether a new buffer is created if no buffer matches substring. | 757 | "Specify whether a new buffer is created if no buffer matches substring. |
| 758 | Choices are `always' to create new buffers unconditionally, `prompt' to | 758 | Choices are `always' to create new buffers unconditionally, `prompt' to |
| 759 | ask user whether to create buffer, or 'never to never create new buffer." | 759 | ask user whether to create buffer, or `never' to never create new buffer." |
| 760 | :type '(choice (const always) | 760 | :type '(choice (const always) |
| 761 | (const prompt) | 761 | (const prompt) |
| 762 | (const never)) | 762 | (const never)) |
diff --git a/lisp/net/eww.el b/lisp/net/eww.el index cd659d0840e..205be41a000 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el | |||
| @@ -1869,7 +1869,7 @@ Generally, the list should not include the (usually overly large) | |||
| 1869 | 1869 | ||
| 1870 | (defun eww-restore-desktop (file-name buffer-name misc-data) | 1870 | (defun eww-restore-desktop (file-name buffer-name misc-data) |
| 1871 | "Restore an eww buffer from its desktop file record. | 1871 | "Restore an eww buffer from its desktop file record. |
| 1872 | If `eww-restore-desktop' is t or 'auto, this function will also | 1872 | If `eww-restore-desktop' is t or `auto', this function will also |
| 1873 | initiate the retrieval of the respective URI in the background. | 1873 | initiate the retrieval of the respective URI in the background. |
| 1874 | Otherwise, the restored buffer will contain a prompt to do so by using | 1874 | Otherwise, the restored buffer will contain a prompt to do so by using |
| 1875 | \\[eww-reload]." | 1875 | \\[eww-reload]." |
diff --git a/lisp/progmodes/hideshow.el b/lisp/progmodes/hideshow.el index ebc5e2404c8..7dfef5fae4c 100644 --- a/lisp/progmodes/hideshow.el +++ b/lisp/progmodes/hideshow.el | |||
| @@ -469,9 +469,9 @@ KIND is either `code' or `comment'. Optional fourth arg B-OFFSET | |||
| 469 | when added to B specifies the actual buffer position where the block | 469 | when added to B specifies the actual buffer position where the block |
| 470 | begins. Likewise for optional fifth arg E-OFFSET. If unspecified | 470 | begins. Likewise for optional fifth arg E-OFFSET. If unspecified |
| 471 | they are taken to be 0 (zero). The following properties are set | 471 | they are taken to be 0 (zero). The following properties are set |
| 472 | in the overlay: 'invisible 'hs 'hs-b-offset 'hs-e-offset. Also, | 472 | in the overlay: `invisible' `hs' `hs-b-offset' `hs-e-offset'. Also, |
| 473 | depending on variable `hs-isearch-open', the following properties may | 473 | depending on variable `hs-isearch-open', the following properties may |
| 474 | be present: 'isearch-open-invisible 'isearch-open-invisible-temporary. | 474 | be present: `isearch-open-invisible' `isearch-open-invisible-temporary'. |
| 475 | If variable `hs-set-up-overlay' is non-nil it should specify a function | 475 | If variable `hs-set-up-overlay' is non-nil it should specify a function |
| 476 | to call with the newly initialized overlay." | 476 | to call with the newly initialized overlay." |
| 477 | (unless b-offset (setq b-offset 0)) | 477 | (unless b-offset (setq b-offset 0)) |
diff --git a/lisp/progmodes/mantemp.el b/lisp/progmodes/mantemp.el index 6c89a518049..79a60400eed 100644 --- a/lisp/progmodes/mantemp.el +++ b/lisp/progmodes/mantemp.el | |||
| @@ -128,7 +128,7 @@ | |||
| 128 | 128 | ||
| 129 | (defun mantemp-insert-cxx-syntax () | 129 | (defun mantemp-insert-cxx-syntax () |
| 130 | "Insert C++ syntax around each template class and function. | 130 | "Insert C++ syntax around each template class and function. |
| 131 | Insert `template class' for classes, 'template' for | 131 | Insert `template class' for classes, `template' for |
| 132 | functions and add the statement delimiter `;' at the end of | 132 | functions and add the statement delimiter `;' at the end of |
| 133 | the lines." | 133 | the lines." |
| 134 | (save-excursion | 134 | (save-excursion |