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 /lisp/erc | |
| 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
Diffstat (limited to 'lisp/erc')
| -rw-r--r-- | lisp/erc/erc.el | 6 |
1 files changed, 3 insertions, 3 deletions
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 | ||