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

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

bug#16548: 24.3; remove "buffer has clients" prompt


From: Tim Howes
Subject: bug#16548: 24.3; remove "buffer has clients" prompt
Date: Sat, 16 May 2015 21:07:41 -0700 (MST)

Well, I think the same concern still applies even if only one client frame is
open. Some users might have all their "editor" buffers started by other
applications opening in the same existing frame. And the script or
application that opens the editor may not be set up to handle the error
codes correctly.

I was going to say, if the prompt bothers you, why not just add (remove-hook
'kill-buffer-query-functions 'server-kill-buffer-query-function) to your
emacs config. But it appears that doesn't work. I guess the server-specific
hooks get loaded after the init files.

Someone on StackOverflow suggested the following:
  (defun server-remove-kill-buffer-hook () 
      (remove-hook 'kill-buffer-query-functions
'server-kill-buffer-query-function))
  (add-hook 'server-visit-hook 'server-remove-kill-buffer-hook)

http://stackoverflow.com/questions/268088/how-to-remove-the-prompt-for-killing-emacsclient-buffers

I guess it would be easier if there was simply a variable, with a name such
as server-query-before-kill-buffer, that could be set to t or nil.



--
View this message in context: 
http://emacs.1067599.n5.nabble.com/bug-16548-24-3-remove-buffer-has-clients-prompt-tp311633p358682.html
Sent from the Emacs - Bugs mailing list archive at Nabble.com.





reply via email to

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