]> git.eshelyaron.com Git - emacs.git/commitdiff
Display messages sent using ERC's /say
authorAmin Bandali <bandali@gnu.org>
Mon, 28 Dec 2020 21:44:58 +0000 (16:44 -0500)
committerAmin Bandali <bandali@gnu.org>
Mon, 28 Dec 2020 21:45:41 +0000 (16:45 -0500)
* lisp/erc/erc.el (erc-cmd-SAY): Call `erc-display-msg' to display the
user's message in the buffer, just like other [non-command] messages.

https://lists.gnu.org/r/help-gnu-emacs/2020-12/msg00066.html

lisp/erc/erc.el

index 3033122437ad0c0ad5fc299a9133f165ef8ff4cd..c32a1d97166249a3fd1bba1a83e3b5ae2856362e 100644 (file)
@@ -2847,7 +2847,9 @@ need this when pasting multiple lines of text."
   (if (string-match "^\\s-*$" line)
       nil
     (string-match "^ ?\\(.*\\)" line)
-    (erc-process-input-line (match-string 1 line) nil t)))
+    (let ((msg (match-string 1 line)))
+      (erc-display-msg msg)
+      (erc-process-input-line msg nil t))))
 (put 'erc-cmd-SAY 'do-not-parse-args t)
 
 (defun erc-cmd-SET (line)