aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
authorEli Zaretskii2014-04-21 17:50:19 +0300
committerEli Zaretskii2014-04-21 17:50:19 +0300
commitf982b37104acdd2b3aee4fe3bb08ae052990f869 (patch)
tree5e9217e9d35d8a01124b1337bad19ab90932461e /doc/lispref
parent6e5d21a613f66db9c6cad7dcab856ef81ac9b5da (diff)
downloademacs-f982b37104acdd2b3aee4fe3bb08ae052990f869.tar.gz
emacs-f982b37104acdd2b3aee4fe3bb08ae052990f869.zip
Minor fixes to the docs.
doc/emacs/buffers.texi (Uniquify): Clarify the default uniquification. doc/emacs/indent.texi (Tab Stops): Improve wording. doc/emacs/cmdargs.texi (General Variables): Improve docs of EMACSLOADPATH. Index all the environment variables. (Misc Variables): Index all the environment variables. doc/lispref/text.texi (Registers): Document register-read-with-preview. doc/lispref/internals.texi (Building Emacs): Improve indexing.
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/ChangeLog6
-rw-r--r--doc/lispref/internals.texi2
-rw-r--r--doc/lispref/text.texi12
3 files changed, 20 insertions, 0 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index b31398fffc4..de3b1ddb20c 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,9 @@
12014-04-21 Eli Zaretskii <eliz@gnu.org>
2
3 * text.texi (Registers): Document register-read-with-preview.
4
5 * internals.texi (Building Emacs): Improve indexing.
6
12014-04-05 Glenn Morris <rgm@gnu.org> 72014-04-05 Glenn Morris <rgm@gnu.org>
2 8
3 * os.texi (Recording Input): Dribble files may contain passwords. 9 * os.texi (Recording Input): Dribble files may contain passwords.
diff --git a/doc/lispref/internals.texi b/doc/lispref/internals.texi
index d91b0349810..f85701f5396 100644
--- a/doc/lispref/internals.texi
+++ b/doc/lispref/internals.texi
@@ -111,6 +111,8 @@ drawback that the documentation strings take up space in Emacs all the
111time.) 111time.)
112@end itemize 112@end itemize
113 113
114@cindex change @code{load-path} at configure time
115@cindex @option{--enable-locallisppath} option to @command{configure}
114 It is not advisable to put anything in @file{site-load.el} or 116 It is not advisable to put anything in @file{site-load.el} or
115@file{site-init.el} that would alter any of the features that users 117@file{site-init.el} that would alter any of the features that users
116expect in an ordinary unmodified Emacs. If you feel you must override 118expect in an ordinary unmodified Emacs. If you feel you must override
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi
index 7c5603fd645..3c70f5f96b0 100644
--- a/doc/lispref/text.texi
+++ b/doc/lispref/text.texi
@@ -4117,6 +4117,18 @@ a rectangle (a list), currently useless things happen. This may be
4117changed in the future. 4117changed in the future.
4118@end deffn 4118@end deffn
4119 4119
4120@defun register-read-with-preview prompt
4121@cindex register preview
4122This function reads and returns a register name, prompting with
4123@var{prompt} and possibly showing a preview of the existing registers
4124and their contents. The preview is shown in a temporary window, after
4125the delay specified by the user option @code{register-preview-delay},
4126if its value and @code{register-alist} are both non-@code{nil}. The
4127preview is also shown if the user requests help (e.g., by typing the
4128help character). We recommend that all interactive commands which
4129read register names use this function.
4130@end defun
4131
4120@node Transposition 4132@node Transposition
4121@section Transposition of Text 4133@section Transposition of Text
4122 4134