# HG changeset patch # User Richard M. Stallman # Date 847047309 0 # Node ID 75d463b202b5b7b5b316adedd497c50483a3ed63 # Parent fd19350c1405f513bad1b6b915431e36449a9797 (Man-bgproc-sentinel): Move the buffer creation outside of the binding of case-fold-search. diff -r fd19350c1405 -r 75d463b202b5 lisp/man.el --- 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.