GNU bug report logs -
#21723
24.5; Bug in `server-kill-emacs-query-function'
Previous Next
Reported by: Eli Barzilay <eli <at> barzilay.org>
Date: Wed, 21 Oct 2015 08:53:02 UTC
Severity: normal
Merged with 19635
Found in versions 24.4, 24.5
Done: Eli Zaretskii <eliz <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
The code in `server-kill-emacs-query-function' (in server.el) has this
in an `or':
(let (live-client)
(dolist (proc server-clients)
(when (memq t (mapcar 'buffer-live-p (process-get
proc 'buffers)))
(setq live-client t)))
live-client)
IIUC, this looks for a live client, and if there is one, the t result
means that the yes-or-no-p question in the end will *not* get asked.
I verified this by:
* Starting emacs -Q and in it start the server
* Run emacsclient on a random file
* Now, C-x C-c exits without asking any questions.
It seems to me like that condition is reversed, an the last line
should instead be: (not live-client)
This will also make the first condition in the function unnecessary,
since if there are no clients, then the loop will not find a live one
and the question will be skipped.
--
((x=>x(x))(x=>x(x))) Eli Barzilay:
http://barzilay.org/ Maze is Life!
This bug report was last modified 9 years and 216 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.