Make erc work better when encountering unknown prefix chars
* lisp/erc/erc.el (erc-channel-receive-names): Output a warning instead of erroring out on unknown prefix chars (bug#22380).
This commit is contained in:
parent
b99141da55
commit
ee7399792f
1 changed files with 1 additions and 1 deletions
|
@ -4832,7 +4832,7 @@ channel."
|
|||
((pred (eq op-ch)) op)
|
||||
((pred (eq adm-ch)) admin)
|
||||
((pred (eq own-ch)) owner)
|
||||
(_ (error "Unknown prefix char `%S'" ch) voice))
|
||||
(_ (message "Unknown prefix char `%S'" ch) voice))
|
||||
'on)))
|
||||
(when updatep
|
||||
;; If we didn't issue the NAMES request (consider two clients
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue