# HG changeset patch # User Karl Heuer # Date 784359949 0 # Node ID f96b7683e3c5428c8b8053469999dcc7a3d8a3a2 # Parent 6f9b0830f124cd511bf261aa85fa2a2d0477197f (ask-user-about-lock-help, ask-user-about-supersession-help): Set help-mode in *Help* buffer. diff -r 6f9b0830f124 -r f96b7683e3c5 lisp/userlock.el --- a/lisp/userlock.el Wed Nov 09 05:45:00 1994 +0000 +++ b/lisp/userlock.el Wed Nov 09 05:45:49 1994 +0000 @@ -76,7 +76,10 @@ You can teal the file; The other user becomes the intruder if (s)he ever unmodifies the file and then changes it again. You can

roceed; you edit at your own (and the other user's) risk. -You can uit; don't modify this file."))) +You can uit; don't modify this file.") + (save-excursion + (set-buffer standard-output) + (help-mode)))) (put 'file-supersession 'error-conditions '(file-supersession file-error error)) @@ -129,6 +132,9 @@ If you say `n', the change you started to make will be aborted. Usually, you should type `n' and then `M-x revert-buffer', -to get the latest version of the file, then make the change again."))) +to get the latest version of the file, then make the change again.") + (save-excursion + (set-buffer standard-output) + (help-mode)))) ;;; userlock.el ends here