bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#43682: 28.0.50; Clean up nnimap server buffers?


From: Lars Ingebrigtsen
Subject: bug#43682: 28.0.50; Clean up nnimap server buffers?
Date: Tue, 29 Sep 2020 16:51:39 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)

Eric Abrahamsen <eric@ericabrahamsen.net> writes:

> -            (ignore-errors              ;E.g. "buffer foo has no process".
> -              (nnimap-send-command "NOOP"))))))))
> +         (condition-case err
> +             (process-send-string "NOOP")
> +           (error

As Robert notes, you can't do that; it'll mess up the machiner.

> +            (if (string-search "has no process" (cdr err))
> +                (let ((buf (current-buffer)))
> +                  (setq nnimap-process-buffers
> +                        (delq buf nnimap-process-buffers))
> +                  (kill-buffer buf))
> +              (signal (car err) (cdr err)))))))))))

But why look for a string?  You can just check whether the process is
dead or not.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





reply via email to

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