emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

feature/rcirc-update 8ea5766 05/18: Recognize quoted commands in rcirc-p


From: Philip Kaludercic
Subject: feature/rcirc-update 8ea5766 05/18: Recognize quoted commands in rcirc-process-input-line
Date: Thu, 10 Jun 2021 11:43:38 -0400 (EDT)

branch: feature/rcirc-update
commit 8ea5766050a2bc27ad1166daca3ab2b4707d5728
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>

    Recognize quoted commands in rcirc-process-input-line
    
    * rcirc.el (rcirc-process-input-line): Check for quoted commands
    (rcirc-process-command): Don't check for quoted commands
---
 lisp/net/rcirc.el | 33 ++++++++++++++-------------------
 1 file changed, 14 insertions(+), 19 deletions(-)

diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el
index bc7d89c..b919e03 100644
--- a/lisp/net/rcirc.el
+++ b/lisp/net/rcirc.el
@@ -1380,7 +1380,7 @@ The argument JUSTIFY is passed on to `fill-region'."
 
 (defun rcirc-process-input-line (line)
   "Process LINE as a message or a command."
-  (if (string-match "^/\\([^ ]+\\) ?\\(.*\\)$" line)
+  (if (string-match "^/\\([^/ ][^ ]*\\) ?\\(.*\\)$" line)
       (rcirc-process-command (match-string 1 line)
                             (match-string 2 line)
                             line)
@@ -1398,25 +1398,20 @@ The argument JUSTIFY is passed on to `fill-region'."
   "Process COMMAND with arguments ARGS.
 LINE is the raw input, from which COMMAND and ARGS was
 extracted."
-  (if (eq (aref command 0) ?/)
-      ;; "//text" will send "/text" as a message
-      (rcirc-process-message (substring line 1))
-    (let ((fun (intern-soft (concat "rcirc-cmd-" command)))
-         (process (rcirc-buffer-process)))
-      (newline)
-      (with-current-buffer (current-buffer)
-       (delete-region rcirc-prompt-end-marker (point))
-       (if (string= command "me")
-           (rcirc-print process (rcirc-buffer-nick)
-                        "ACTION" rcirc-target args)
+  (let ((fun (intern-soft (concat "rcirc-cmd-" command)))
+       (process (rcirc-buffer-process)))
+    (newline)
+    (with-current-buffer (current-buffer)
+      (delete-region rcirc-prompt-end-marker (point))
+      (if (string= command "me")
          (rcirc-print process (rcirc-buffer-nick)
-                      "COMMAND" rcirc-target line))
-       (set-marker rcirc-prompt-end-marker (point))
-       (if (fboundp fun)
-           (funcall fun args process rcirc-target)
-         (rcirc-send-string process
-                            (concat command " :" args)))))))
-
+                      "ACTION" rcirc-target args)
+       (rcirc-print process (rcirc-buffer-nick)
+                    "COMMAND" rcirc-target line))
+      (set-marker rcirc-prompt-end-marker (point))
+      (if (fboundp fun)
+         (funcall fun args process rcirc-target)
+       (rcirc-send-string process command : args)))))
 
 (defvar-local rcirc-parent-buffer nil
   "Message buffer that requested a multiline buffer.")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]