Mercurial > emacs
changeset 16509:75d463b202b5
(Man-bgproc-sentinel): Move the buffer creation
outside of the binding of case-fold-search.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 03 Nov 1996 18:55:09 +0000 |
parents | fd19350c1405 |
children | e619a826afdb |
files | lisp/man.el |
diffstat | 1 files changed, 10 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/man.el Sun Nov 03 18:23:24 1996 +0000 +++ b/lisp/man.el Sun Nov 03 18:55:09 1996 +0000 @@ -675,16 +675,16 @@ (substring msg 0 eos) msg)))) (goto-char (point-max)) (insert (format "\nprocess %s" msg)) - )) - (if delete-buff - (kill-buffer Man-buffer) - (if Man-fontify-manpage-flag - (Man-fontify-manpage) - (Man-cleanup-manpage)) - (run-hooks 'Man-cooked-hook) - (Man-mode) - (set-buffer-modified-p nil) - )) + ))) + (if delete-buff + (kill-buffer Man-buffer) + (if Man-fontify-manpage-flag + (Man-fontify-manpage) + (Man-cleanup-manpage)) + (run-hooks 'Man-cooked-hook) + (Man-mode) + (set-buffer-modified-p nil) + ) ;; Restore case-fold-search before calling ;; Man-notify-when-ready because it may switch buffers.