summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2005-07-14 02:07:08 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2005-07-14 02:07:08 +0000
commit65dd62753694e95f644df89f7fc4f90afcf3ba5c (patch)
treec270a663f5ee93c6044289bffde0f770a0f5cddf
parentd4b4dfc6c224a19009ee0911f383f6fbd9ad37e6 (diff)
downloademacs-65dd62753694e95f644df89f7fc4f90afcf3ba5c.tar.gz
emacs-65dd62753694e95f644df89f7fc4f90afcf3ba5c.tar.bz2
emacs-65dd62753694e95f644df89f7fc4f90afcf3ba5c.zip
(help-xref-interned): Properly setup xref info.
-rw-r--r--lisp/help-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/help-mode.el b/lisp/help-mode.el
index 3349bc058f3..1f5f98a7354 100644
--- a/lisp/help-mode.el
+++ b/lisp/help-mode.el
@@ -519,7 +519,7 @@ Both variable, function and face documentation are extracted into a single
help buffer."
(with-current-buffer (help-buffer)
;; Push the previous item on the stack before clobbering the output buffer.
- (help-setup-xref nil nil)
+ (help-setup-xref (list 'help-xref-interned symbol) nil)
(let ((facedoc (when (facep symbol)
;; Don't record the current entry in the stack.
(setq help-xref-stack-item nil)
@@ -631,5 +631,5 @@ For the cross-reference format, see `help-make-xrefs'."
(provide 'help-mode)
-;;; arch-tag: 850954ae-3725-4cb4-8e91-0bf6d52d6b0b
+;; arch-tag: 850954ae-3725-4cb4-8e91-0bf6d52d6b0b
;;; help-mode.el ends here