mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
Merge from origin/emacs-26
55dcd32 (origin/emacs-26) Fix rcirc not to interpret nil as nickname ...
This commit is contained in:
commit
8ea63ecdd9
1 changed files with 3 additions and 2 deletions
|
|
@ -827,6 +827,7 @@ Function is called with PROCESS, COMMAND, SENDER, ARGS and LINE.")
|
|||
(process-send-string process string)))
|
||||
|
||||
(defun rcirc-send-privmsg (process target string)
|
||||
(cl-check-type target string)
|
||||
(rcirc-send-string process (format "PRIVMSG %s :%s" target string)))
|
||||
|
||||
(defun rcirc-send-ctcp (process target request &optional args)
|
||||
|
|
@ -2332,8 +2333,8 @@ With a prefix arg, prompt for new topic."
|
|||
(let ((timestamp (format-time-string "%s")))
|
||||
(rcirc-send-ctcp process target "PING" timestamp)))
|
||||
|
||||
(defun rcirc-cmd-me (args &optional process target)
|
||||
(rcirc-send-ctcp process target "ACTION" args))
|
||||
(defun rcirc-cmd-me (args process target)
|
||||
(when target (rcirc-send-ctcp process target "ACTION" args)))
|
||||
|
||||
(defun rcirc-add-or-remove (set &rest elements)
|
||||
(dolist (elt elements)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue