# HG changeset patch # User Stefan Monnier # Date 1212890867 0 # Node ID 2072976ded5e09a54aac7393f3ed36ff77650823 # Parent 1b0cbcea87b2397cfdf3d1d61c438c94e49bc003 (special-display-p, display-buffer): Fix up C->Elisp transcription error. diff -r 1b0cbcea87b2 -r 2072976ded5e lisp/ChangeLog --- a/lisp/ChangeLog Sun Jun 08 02:07:25 2008 +0000 +++ b/lisp/ChangeLog Sun Jun 08 02:07:47 2008 +0000 @@ -1,3 +1,8 @@ +2008-06-08 Stefan Monnier + + * window.el (special-display-p, display-buffer): + Fix up C->Elisp transcription error. + 2008-06-08 Stefan Monnier * emacs-lisp/bytecomp.el (byte-compile-current-group): New var. diff -r 1b0cbcea87b2 -r 2072976ded5e lisp/window.el --- a/lisp/window.el Sun Jun 08 02:07:25 2008 +0000 +++ b/lisp/window.el Sun Jun 08 02:07:47 2008 +0000 @@ -440,6 +440,7 @@ "Factor by which the window area should be over-estimated. This is used by `balance-windows-area'. Changing this globally has no effect.") +(make-variable-buffer-local 'window-area-factor) (defun balance-windows-area () "Make all visible windows the same area (approximately). @@ -542,20 +543,21 @@ would be used to make a frame for that buffer. The variables `special-display-buffer-names' and `special-display-regexps' control this." - (cond - ((not (stringp buffer-name))) - ;; Make sure to return t in the following two cases. - ((member buffer-name special-display-buffer-names) t) - ((assoc buffer-name special-display-buffer-names) t) - ((catch 'found - (dolist (regexp special-display-regexps) - (cond - ((stringp regexp) - (when (string-match-p regexp buffer-name) - (throw 'found t))) - ((and (consp regexp) (stringp (car regexp)) - (string-match-p (car regexp) buffer-name)) - (throw 'found (cdr regexp))))))))) + (let (tmp) + (cond + ((not (stringp buffer-name))) + ;; Make sure to return t in the following two cases. + ((member buffer-name special-display-buffer-names) t) + ((setq tmp (assoc buffer-name special-display-buffer-names)) (cdr tmp)) + ((catch 'found + (dolist (regexp special-display-regexps) + (cond + ((stringp regexp) + (when (string-match-p regexp buffer-name) + (throw 'found t))) + ((and (consp regexp) (stringp (car regexp)) + (string-match-p (car regexp) buffer-name)) + (throw 'found (cdr regexp)))))))))) (defcustom special-display-buffer-names nil "List of buffer names that should have their own special frames. @@ -931,11 +933,11 @@ 0 - consider windows on all visible or iconified frames. -`t' - consider windows on all frames. +t - consider windows on all frames. A specific frame - consider windows on that frame only. -`nil' - consider windows on the selected frame \(actually the +nil - consider windows on the selected frame \(actually the last non-minibuffer frame\) only. If, however, either `display-buffer-reuse-frames' or `pop-up-frames' is non-nil, consider all visible or iconified frames." @@ -988,7 +990,7 @@ (let ((pars (special-display-p name-of-buffer))) (when pars (funcall special-display-function - (if (eq pars t) buffer pars)))))) + buffer (if (listp pars) pars)))))) ((or pop-up-frames (not frame-to-use)) ;; We want or need a new frame. (window--display-buffer-2 @@ -1053,7 +1055,7 @@ ;; I think this should be the default; I think people will prefer it--rms. (defcustom split-window-keep-point t - "*If non-nil, \\[split-window-vertically] keeps the original point \ + "If non-nil, \\[split-window-vertically] keeps the original point \ in both children. This is often more convenient for editing. If nil, adjust point in each of the two windows to minimize redisplay. @@ -1577,8 +1579,8 @@ (progn ;; Cancel any delayed autoselection. (mouse-autoselect-window-cancel t) - ;; Start delayed autoselection from current mouse position - ;; and window. + ;; Start delayed autoselection from current mouse + ;; position and window. (mouse-autoselect-window-start (mouse-position) window) ;; Executing a command cancels delayed autoselection. (add-hook