aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/help.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el
index 45d84b88970..7c59a96ef43 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -1030,7 +1030,8 @@ help buffer."
1030 ;; We now have a help buffer on the variable. Insert the function 1030 ;; We now have a help buffer on the variable. Insert the function
1031 ;; text after it. 1031 ;; text after it.
1032 (goto-char (point-max)) 1032 (goto-char (point-max))
1033 (insert "\n\n" fdoc)) 1033 (let ((inhibit-read-only t))
1034 (insert "\n\n" fdoc)))
1034 (goto-char (point-min)) 1035 (goto-char (point-min))
1035 (help-setup-xref (list #'help-xref-interned symbol) nil)) 1036 (help-setup-xref (list #'help-xref-interned symbol) nil))
1036 1037