aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/erc
diff options
context:
space:
mode:
authorPaul Eggert2015-11-18 09:17:20 -0800
committerPaul Eggert2015-11-18 09:17:55 -0800
commitbb4303c536a2ac5fe683a711ef8072074f77670e (patch)
treeb2d254f657728f61262d3b6fe58d972756fcc292 /lisp/erc
parent3e309ad86c8f11765d28a875bb2299d0e214d16d (diff)
downloademacs-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.el6
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.
2420All screen output must be done through this function. If BUFFER is nil 2420All screen output must be done through this function. If BUFFER is nil
2421or omitted, the default ERC buffer for the `erc-session-server' is used. 2421or omitted, the default ERC buffer for the `erc-session-server' is used.
2422The BUFFER can be an actual buffer, a list of buffers, 'all or 'active. 2422The BUFFER can be an actual buffer, a list of buffers, `all' or `active'.
2423If BUFFER = 'all, the string is displayed in all the ERC buffers for the 2423If BUFFER = `all', the string is displayed in all the ERC buffers for the
2424current session. 'active means the current active buffer 2424current 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
2426buffer is used. `erc-display-line-1' is used to display STRING. 2426buffer is used. `erc-display-line-1' is used to display STRING.
2427 2427