aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-08-15 16:02:20 -0700
committerLars Ingebrigtsen2019-08-15 16:02:20 -0700
commitb3713265cbb8eb591ac832ae4c35bf8185544467 (patch)
treeb614a8f9bb8322bbcf17a4ba5182ed228090fb62 /doc
parent7aefbe86f22a1c0b7d329c1931d0297f801e1f83 (diff)
downloademacs-b3713265cbb8eb591ac832ae4c35bf8185544467.tar.gz
emacs-b3713265cbb8eb591ac832ae4c35bf8185544467.zip
Rename variables and functions with "auto-load" in their names
* doc/emacs/building.texi (Lisp Libraries): Adjust documentation. * lisp/help-fns.el (help--symbol-completion-table): Adjust usage. * lisp/help-fns.el (help-enable-completion-autoload): Change name from auto-load and declare an obsolete alias (bug#13418). * lisp/help.el (help-enable-autoload): Ditto. * lisp/progmodes/vhdl-mode.el: Ditto. (vhdl-create-mode-menu, vhdl-mode): Adjust usage. (vhdl-autoload-project): Rename from auto-load and declare an obsolete alias.
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/building.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/emacs/building.texi b/doc/emacs/building.texi
index 6e16588861e..990b82d10ed 100644
--- a/doc/emacs/building.texi
+++ b/doc/emacs/building.texi
@@ -1513,19 +1513,19 @@ call it, Emacs automatically loads the @code{compile} library first.
1513In contrast, the command @kbd{M-x recompile} is not autoloaded, so it 1513In contrast, the command @kbd{M-x recompile} is not autoloaded, so it
1514is unavailable until you load the @code{compile} library. 1514is unavailable until you load the @code{compile} library.
1515 1515
1516@vindex help-enable-auto-load 1516@vindex help-enable-autoload
1517 Automatic loading can also occur when you look up the documentation 1517 Automatic loading can also occur when you look up the documentation
1518of an autoloaded command (@pxref{Name Help}), if the documentation 1518of an autoloaded command (@pxref{Name Help}), if the documentation
1519refers to other functions and variables in its library (loading the 1519refers to other functions and variables in its library (loading the
1520library lets Emacs properly set up the hyperlinks in the @file{*Help*} 1520library lets Emacs properly set up the hyperlinks in the @file{*Help*}
1521buffer). To disable this feature, change the variable 1521buffer). To disable this feature, change the variable
1522@code{help-enable-auto-load} to @code{nil}. 1522@code{help-enable-autoload} to @code{nil}.
1523 1523
1524@vindex help-enable-completion-auto-load 1524@vindex help-enable-completion-autoload
1525Automatic loading also occurs when completing names for 1525Automatic loading also occurs when completing names for
1526@code{describe-variable} and @code{describe-function}, based on the 1526@code{describe-variable} and @code{describe-function}, based on the
1527prefix being completed. To disable this feature, change the variable 1527prefix being completed. To disable this feature, change the variable
1528@code{help-enable-completion-auto-load} to @code{nil}. 1528@code{help-enable-completion-autoload} to @code{nil}.
1529 1529
1530@vindex load-dangerous-libraries 1530@vindex load-dangerous-libraries
1531@cindex Lisp files byte-compiled by XEmacs 1531@cindex Lisp files byte-compiled by XEmacs