aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
authorPaul Eggert2014-04-22 14:32:51 -0700
committerPaul Eggert2014-04-22 14:32:51 -0700
commit42e910349d699ee3f8024371ca1e60e015fc6aa7 (patch)
treeba589f3f7c278671f0ae9c5c8f15c241ae8dd674 /doc/lispref
parent4f96579371290b201a973072a1c2f237755bb954 (diff)
parent34e856d5ac828753b7be20e2471f39fb613f7f40 (diff)
downloademacs-42e910349d699ee3f8024371ca1e60e015fc6aa7.tar.gz
emacs-42e910349d699ee3f8024371ca1e60e015fc6aa7.zip
Merge from emacs-24; up to 2014-04-22T20:19:17Z!eggert@cs.ucla.edu
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 7c368c126cd..e9ea1f7459e 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,9 @@
12014-04-22 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-17 Daniel Colascione <dancol@dancol.org> 72014-04-17 Daniel Colascione <dancol@dancol.org>
2 8
3 * frames.texi (Terminal Parameters): Document new 9 * frames.texi (Terminal Parameters): Document new
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