diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-06-28 05:06:56 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-06-28 05:06:56 +0000 |
commit | cebabb67a3761fd9ef97d092ee767d48c326aaed (patch) | |
tree | af8decc3e57ba2df3f7065a3438171d1093aa8e1 /lisp/help-fns.el | |
parent | d63a01efdb2c9cf411b4bc806f8fea397d68d398 (diff) | |
download | emacs-cebabb67a3761fd9ef97d092ee767d48c326aaed.tar.gz |
* help-fns.el (describe-function-1): Correctly locate adviced
functions in hyperlink (Bug#2438).
Diffstat (limited to 'lisp/help-fns.el')
-rw-r--r-- | lisp/help-fns.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 8c323b94ee3..cbc140255e0 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el @@ -406,7 +406,7 @@ suitable file is found, return nil." (with-current-buffer standard-output (save-excursion (re-search-backward "`\\([^`']+\\)'" nil t) - (help-xref-button 1 'help-function-def real-function file-name)))) + (help-xref-button 1 'help-function-def function file-name)))) (princ ".") (with-current-buffer (help-buffer) (fill-region-as-paragraph (save-excursion (goto-char pt1) (forward-line 0) (point)) |