]> git.eshelyaron.com Git - emacs.git/commitdiff
(update-copyright): Set help-mode in *Help* buffer.
authorKarl Heuer <kwzh@gnu.org>
Wed, 9 Nov 1994 05:46:01 +0000 (05:46 +0000)
committerKarl Heuer <kwzh@gnu.org>
Wed, 9 Nov 1994 05:46:01 +0000 (05:46 +0000)
lisp/emacs-lisp/copyright.el

index 1ebebc3247fbe13c8297469675f30f097726b676..8527c68378bfd358c7c2ad1b965a53c98836fb7d 100644 (file)
@@ -120,6 +120,9 @@ than adding to it."
                          (princ (substitute-command-keys "\
 I don't know where the copying notice begins.
 Put point there and hit \\[exit-recursive-edit]."))
+                         (save-excursion
+                           (set-buffer standard-output)
+                           (help-mode))
                          (recursive-edit)))
                      (setq beg (point))
                      (or (search-forward "02139, USA." nil t)
@@ -127,6 +130,9 @@ Put point there and hit \\[exit-recursive-edit]."))
                            (princ (substitute-command-keys "\
 I don't know where the copying notice ends.
 Put point there and hit \\[exit-recursive-edit]."))
+                           (save-excursion
+                             (set-buffer standard-output)
+                             (help-mode))
                            (recursive-edit)))
                      (delete-region beg (point))))
                (insert-file replace-copying-with))