diff options
Diffstat (limited to 'lisp/man.el')
-rw-r--r-- | lisp/man.el | 20 |
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. |