aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2006-11-11 14:11:13 +0000
committerJuanma Barranquero2006-11-11 14:11:13 +0000
commitc2d0d432af852d4db66fdb971e3f4012431dbb08 (patch)
tree7a1cd56a98c7c6d7c9fa69ba39ad7ae7d7cc1b5d
parent64948f0f1630fe680c8ef3dbdb780f93b84131b3 (diff)
downloademacs-c2d0d432af852d4db66fdb971e3f4012431dbb08.tar.gz
emacs-c2d0d432af852d4db66fdb971e3f4012431dbb08.zip
(server-visit-files): Bind `minibuffer-auto-raise' to the value of
`server-raise-frame'.
-rw-r--r--lisp/server.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/server.el b/lisp/server.el
index c6a70dedaea..ec974659841 100644
--- a/lisp/server.el
+++ b/lisp/server.el
@@ -511,7 +511,8 @@ so don't mark these buffers specially, just visit them normally."
511 ;; If there is an existing buffer modified or the file is 511 ;; If there is an existing buffer modified or the file is
512 ;; modified, revert it. If there is an existing buffer with 512 ;; modified, revert it. If there is an existing buffer with
513 ;; deleted file, offer to write it. 513 ;; deleted file, offer to write it.
514 (let* ((filen (car file)) 514 (let* ((minibuffer-auto-raise server-raise-frame)
515 (filen (car file))
515 (obuf (get-file-buffer filen))) 516 (obuf (get-file-buffer filen)))
516 (add-to-history 'file-name-history filen) 517 (add-to-history 'file-name-history filen)
517 (if (and obuf (set-buffer obuf)) 518 (if (and obuf (set-buffer obuf))