]> git.eshelyaron.com Git - emacs.git/commitdiff
(help-xref-interned): Bind inhibit-read-only when
authorDave Love <fx@gnu.org>
Wed, 9 Sep 1998 19:55:29 +0000 (19:55 +0000)
committerDave Love <fx@gnu.org>
Wed, 9 Sep 1998 19:55:29 +0000 (19:55 +0000)
inserting.

lisp/help.el

index 45d84b88970083295a09ddbc5e632e181c72429b..7c59a96ef4345c2d8aab4b4fa1cb33bd5bc176dd 100644 (file)
@@ -1030,7 +1030,8 @@ help buffer."
     ;; We now have a help buffer on the variable.  Insert the function
     ;; text after it.
     (goto-char (point-max))
-    (insert "\n\n" fdoc))
+    (let ((inhibit-read-only t))
+      (insert "\n\n" fdoc)))
   (goto-char (point-min))
   (help-setup-xref (list #'help-xref-interned symbol) nil))