summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-11-03 18:55:09 +0000
committerRichard M. Stallman <rms@gnu.org>1996-11-03 18:55:09 +0000
commit691fcf04419d643ad40c34f907ff771624eb6b54 (patch)
tree8da3b8fca65cf46244f389557c6dcad68eea6914
parentd2df7995826a9e12ef3f9076e675cbdd72298014 (diff)
downloademacs-691fcf04419d643ad40c34f907ff771624eb6b54.tar.gz
(Man-bgproc-sentinel): Move the buffer creation
outside of the binding of case-fold-search.
-rw-r--r--lisp/man.el20
1 files changed, 10 insertions, 10 deletions
diff --git a/lisp/man.el b/lisp/man.el
index ccc03a9b6da..ac535f0deca 100644
--- a/lisp/man.el
+++ b/lisp/man.el
@@ -675,16 +675,16 @@ Same for the ANSI bold and normal escape sequences."
(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.