changeset 23216:cd79894839e7

(help-xref-interned): Bind inhibit-read-only when inserting.
author Dave Love <fx@gnu.org>
date Wed, 09 Sep 1998 19:55:29 +0000
parents c06f07cf6bba
children a9ebac06b080
files lisp/help.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/help.el	Tue Sep 08 12:55:10 1998 +0000
+++ b/lisp/help.el	Wed Sep 09 19:55:29 1998 +0000
@@ -1030,7 +1030,8 @@
     ;; 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))