diff options
author | F. Jason Park <jp@neverwas.me> | 2022-07-24 05:14:24 -0700 |
---|---|---|
committer | F. Jason Park <jp@neverwas.me> | 2022-07-27 05:19:09 -0700 |
commit | 4a5499910a114a5e8a8b41e04397c20dec14935b (patch) | |
tree | 65b718c5b73985ccb5ef6e10a5af1cfeb4cd9b66 /lisp/erc/erc.el | |
parent | 69f578e04712616f91080ab26485db9faacb3a70 (diff) | |
download | emacs-4a5499910a114a5e8a8b41e04397c20dec14935b.tar.gz emacs-4a5499910a114a5e8a8b41e04397c20dec14935b.tar.bz2 emacs-4a5499910a114a5e8a8b41e04397c20dec14935b.zip |
Fix CTCP regression in erc-server-PRIVMSG
* lisp/erc/erc-backend.el (erc-server-PRIVMSG): Don't create a query
buffer for non-ACTION CTCP messages.
* test/lisp/erc/erc-scenarios-misc.el (erc-scenarios-dcc-chat-accept):
Add test for basic DCC CHAT accept dialog.
* test/lisp/erc/resources/dcc/chat/accept-dcc.eld: New file.
* test/lisp/erc/resources/dcc/chat/accept.eld: New file.
Diffstat (limited to 'lisp/erc/erc.el')
-rw-r--r-- | lisp/erc/erc.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el index 4b852b39045..3b127bbd492 100644 --- a/lisp/erc/erc.el +++ b/lisp/erc/erc.el @@ -4654,8 +4654,9 @@ a new window, but not to select it. See the documentation for (const :tag "Use current buffer" buffer) (const :tag "Use current buffer" t))) -;; FIXME either retire this or put it to use or more clearly explain -;; what it's supposed to do. It's currently only used by the obsolete +;; FIXME either retire this or put it to use after determining how +;; it's meant to work. Clearly, the doc string does not describe +;; current behavior. It's currently only used by the obsolete ;; function `erc-auto-query'. (defcustom erc-query-on-unjoined-chan-privmsg t "If non-nil create query buffer on receiving any PRIVMSG at all. |