]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix double reconnection bug
authorPhilip Kaludercic <philipk@posteo.net>
Fri, 10 Sep 2021 16:57:11 +0000 (18:57 +0200)
committerPhilip Kaludercic <philipk@posteo.net>
Fri, 10 Sep 2021 16:57:11 +0000 (18:57 +0200)
* rcirc.el (rcirc-sentinel): Don't reconnect if reconnecting
(reconnect): Use delete-process instead of kill-process

lisp/net/rcirc.el

index 2bdc3d68c0c2385e3fac448fa210ca2204436fa4..eb6703a4927ec311e61a3b30b1724608efb5406a 100644 (file)
@@ -841,7 +841,8 @@ When 0, do not auto-reconnect."
                          (not rcirc-target))
            (rcirc-disconnect-buffer)))
         (when (and (string= sentinel "deleted")
-                   (< 0 rcirc-reconnect-delay))
+                   (< 0 rcirc-reconnect-delay)
+                   (not rcirc-connecting))
           (let ((now (current-time)))
             (when (or (null rcirc-last-connect-time)
                      (time-less-p rcirc-reconnect-delay
@@ -2580,13 +2581,9 @@ to `rcirc-default-part-reason'."
   (interactive "i")
   (with-rcirc-server-buffer
     (catch 'exit
-      (cond
-       (rcirc-connecting
-        (when (process-live-p process)
-          (kill-process process))
-        (setq rcirc-connecting nil))
-       ((process-live-p process)
-        (throw 'exit (message "Server process is alive"))))
+      (if (eq (process-status process) 'open)
+          (throw 'exit (message "Server process is alive"))
+        (delete-process process))
       (let ((conn-info rcirc-connection-info))
        (setf (nth 5 conn-info)
              (cl-remove-if-not #'rcirc-channel-p