]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix doc string in ERC's module-activation commands
authorF. Jason Park <jp@neverwas.me>
Fri, 16 Dec 2022 07:25:10 +0000 (23:25 -0800)
committerF. Jason Park <jp@neverwas.me>
Fri, 16 Dec 2022 14:36:23 +0000 (06:36 -0800)
* lisp/erc/erc-common.el (erc--assemble-toggle): Previously, the doc
string implied that a prefix argument was necessary to achieve
connection-wide effects, which might lead a person to think the
interactive code should be an uppercase "P".
* test/lisp/erc/erc-tests.el (define-erc-module--local): Update
expected result of code-gen.

lisp/erc/erc-common.el
test/lisp/erc/erc-tests.el

index e662c06daa483ad223f8e2863df38224da6153c3..da75d50d61392cf2b622b6ad6403545e8f7164cc 100644 (file)
@@ -130,7 +130,8 @@ canonical name.")
          (if val "Enable" "Disable")
          " ERC " (symbol-name name) " mode."
          (when localp
-           "\nWith ARG, do so in all buffers for the current connection."))
+           (concat "\nWhen called interactively,"
+                   " do so in all buffers for the current connection.")))
        (interactive ,@(when localp '("p")))
        ,@(if localp
              `((when (derived-mode-p 'erc-mode)
index 51c562f5255cbde02274ab583a347345c991dddd..578b2641a6d999548664502d64ddde3eef0fc23a 100644 (file)
@@ -1331,7 +1331,7 @@ Some docstring"
 
                       (defun erc-mname-enable (&optional ,arg-en)
                         "Enable ERC mname mode.
-With ARG, do so in all buffers for the current connection."
+When called interactively, do so in all buffers for the current connection."
                         (interactive "p")
                         (when (derived-mode-p 'erc-mode)
                           (if ,arg-en
@@ -1343,7 +1343,7 @@ With ARG, do so in all buffers for the current connection."
 
                       (defun erc-mname-disable (&optional ,arg-dis)
                         "Disable ERC mname mode.
-With ARG, do so in all buffers for the current connection."
+When called interactively, do so in all buffers for the current connection."
                         (interactive "p")
                         (when (derived-mode-p 'erc-mode)
                           (if ,arg-dis