; Fix wrong-type-argument in 'rcirc-handler-INVITE'
* lisp/net/rcirc.el (rcirc-handler-INVITE): Use 'with-rcirc-process-buffer' instead of passing a process to 'buffer-local-value'.
This commit is contained in:
parent
acfb2c6163
commit
650ee9e071
1 changed files with 1 additions and 1 deletions
|
@ -3694,7 +3694,7 @@ Passwords are stored in `rcirc-authinfo' (which see)."
|
|||
"Notify user of an invitation from SENDER.
|
||||
ARGS should have the form (TARGET CHANNEL). PROCESS is the
|
||||
process object for the current connection."
|
||||
(let ((self (buffer-local-value 'rcirc-nick rcirc-process))
|
||||
(let ((self (with-rcirc-process-buffer process rcirc-nick))
|
||||
(target (car args))
|
||||
(chan (cadr args)))
|
||||
;; `rcirc-channel-filter' is not used here because joining
|
||||
|
|
Loading…
Add table
Reference in a new issue