diff options
| author | Eli Zaretskii | 2014-04-21 17:50:19 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2014-04-21 17:50:19 +0300 |
| commit | f982b37104acdd2b3aee4fe3bb08ae052990f869 (patch) | |
| tree | 5e9217e9d35d8a01124b1337bad19ab90932461e /doc/lispref | |
| parent | 6e5d21a613f66db9c6cad7dcab856ef81ac9b5da (diff) | |
| download | emacs-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/ChangeLog | 6 | ||||
| -rw-r--r-- | doc/lispref/internals.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/text.texi | 12 |
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 @@ | |||
| 1 | 2014-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 | |||
| 1 | 2014-04-05 Glenn Morris <rgm@gnu.org> | 7 | 2014-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 | |||
| 111 | time.) | 111 | time.) |
| 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 |
| 116 | expect in an ordinary unmodified Emacs. If you feel you must override | 118 | expect 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 | |||
| 4117 | changed in the future. | 4117 | changed in the future. |
| 4118 | @end deffn | 4118 | @end deffn |
| 4119 | 4119 | ||
| 4120 | @defun register-read-with-preview prompt | ||
| 4121 | @cindex register preview | ||
| 4122 | This function reads and returns a register name, prompting with | ||
| 4123 | @var{prompt} and possibly showing a preview of the existing registers | ||
| 4124 | and their contents. The preview is shown in a temporary window, after | ||
| 4125 | the delay specified by the user option @code{register-preview-delay}, | ||
| 4126 | if its value and @code{register-alist} are both non-@code{nil}. The | ||
| 4127 | preview is also shown if the user requests help (e.g., by typing the | ||
| 4128 | help character). We recommend that all interactive commands which | ||
| 4129 | read 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 | ||