Mercurial > emacs
changeset 3307:1fc2bc44def7
(Man-notify-when-ready): Correct previous change.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 30 May 1993 19:15:39 +0000 |
parents | 6dfbd809ae8c |
children | a784dfbd4d67 |
files | lisp/man.el |
diffstat | 1 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/man.el Sun May 30 19:12:55 1993 +0000 +++ b/lisp/man.el Sun May 30 19:15:39 1993 +0000 @@ -445,21 +445,21 @@ (defun Man-notify-when-ready (man-buffer) "Notify the user when MAN-BUFFER is ready. -See the variable Man-notify for the different notification behaviors." +See the variable `Man-notify' for the different notification behaviors." (cond - ((eq man-notify 'bully) + ((eq Man-notify 'bully) (pop-to-buffer man-buffer) (delete-other-windows)) - ((eq man-notify 'aggressive) + ((eq Man-notify 'aggressive) (pop-to-buffer man-buffer)) - ((eq man-notify 'friendly) + ((eq Man-notify 'friendly) (display-buffer man-buffer 'not-this-window)) - ((eq man-notify 'polite) + ((eq Man-notify 'polite) (beep) (message "Manual buffer %s is ready." (buffer-name man-buffer))) - ((eq man-notify 'quiet) + ((eq Man-notify 'quiet) (message "Manual buffer %s is ready." (buffer-name man-buffer))) - ((or (eq man-notify 'meek) + ((or (eq Man-notify 'meek) t) (message "")) ))