summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/bytecomp.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2014-03-13 20:32:41 -0400
committerGlenn Morris <rgm@gnu.org>2014-03-13 20:32:41 -0400
commit56759cf12aeea9a51020ad19784d6ca6c55ab36e (patch)
treef4953bdcd987f8dbd9e4a41331c98c3cc1362090 /lisp/emacs-lisp/bytecomp.el
parent7644aa970d350a7457ef2fba469c73bb00c22365 (diff)
downloademacs-56759cf12aeea9a51020ad19784d6ca6c55ab36e.tar.gz
Move some help functions from help-fns.el to help.el, which is preloaded.
They are now needed by eg the function `documentation' in some circumstances. * lisp/help-fns.el (help-split-fundoc, help-add-fundoc-usage) (help-function-arglist, help-make-usage): Move from here... * lisp/help.el (help-split-fundoc, help-add-fundoc-usage) (help-function-arglist, help-make-usage): ... to here. * lisp/emacs-lisp/bytecomp.el (byte-compile-lambda): Do not load help-fns. Fixes: debbugs:17001
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r--lisp/emacs-lisp/bytecomp.el1
1 files changed, 0 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index e2e468717a6..e5f8a8cc22a 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -2706,7 +2706,6 @@ for symbols generated by the byte compiler itself."
(cdr compiled)
;; optionally, the doc string.
(cond (lexical-binding
- (require 'help-fns)
(list (help-add-fundoc-usage doc arglist)))
((or doc int)
(list doc)))