summaryrefslogtreecommitdiff
path: root/lisp/erc/erc-backend.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2021-09-19 13:21:56 +0200
committerStefan Kangas <stefan@marxist.se>2021-09-19 13:21:56 +0200
commit8772d81966f0b1cec400fd638c5ab809cae91df4 (patch)
tree5114593d392153ddbb4136de052d55158e259f13 /lisp/erc/erc-backend.el
parent17e8c342737b01da892528bc76713db6225b41a3 (diff)
downloademacs-8772d81966f0b1cec400fd638c5ab809cae91df4.tar.gz
; Some more docfixes for erc/*.el
Diffstat (limited to 'lisp/erc/erc-backend.el')
-rw-r--r--lisp/erc/erc-backend.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/erc/erc-backend.el b/lisp/erc/erc-backend.el
index 4040a7bcae6..10be2965ad7 100644
--- a/lisp/erc/erc-backend.el
+++ b/lisp/erc/erc-backend.el
@@ -444,7 +444,7 @@ Currently this is called by `erc-send-input'."
(defun erc-forward-word ()
"Move forward one word, ignoring any subword settings.
-If no subword-mode is active, then this is (forward-word)."
+If no `subword-mode' is active, then this is (forward-word)."
(skip-syntax-forward "^w")
(> (skip-syntax-forward "w") 0))
@@ -458,7 +458,7 @@ If POS is out of range, the value is nil."
(defun erc-bounds-of-word-at-point ()
"Return the bounds of word at point, or nil if we're not at a word.
-If no subword-mode is active, then this is
+If no `subword-mode' is active, then this is
\(bounds-of-thing-at-point 'word)."
(if (or (erc-word-at-arg-p (point))
(erc-word-at-arg-p (1- (point))))