diff options
| author | Fabián Ezequiel Gallina | 2015-01-28 01:08:18 -0300 |
|---|---|---|
| committer | Fabián Ezequiel Gallina | 2015-01-28 01:08:18 -0300 |
| commit | 95a2cb24b0697558e6629460d8bc693b394f0138 (patch) | |
| tree | cf6cc03950fc6b0982497f00ff6c92eec1912b45 /doc | |
| parent | f5ebe84d75bb75156db9e2e0a7ab356941b4ea75 (diff) | |
| parent | 9664defd262252faf037c5fe1ea095f1cc4b308b (diff) | |
| download | emacs-95a2cb24b0697558e6629460d8bc693b394f0138.tar.gz emacs-95a2cb24b0697558e6629460d8bc693b394f0138.zip | |
Merge from origin/emacs-24
9664def Signal a file-error from directory-files on MS-Windows (Bug#19701)
fd4e65e Added missing test for previous commit
5485e3e5 python.el: New non-global state dependent indentation engine.
3b23e6a Fix the description of --insert command-line option (Bug#19694)
7a7e594 Add a cross-reference in ELisp manual. (Bug#19668)
b4f4075 Fixes: debbugs:19660
83b3c31 * test/automated/regexp-tests.el: Require regexp-opt
Conflicts:
lisp/progmodes/python.el
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/emacs/cmdargs.texi | 9 | ||||
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/searching.texi | 9 |
4 files changed, 21 insertions, 7 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index 329da9418f8..718657a360b 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2015-01-26 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * cmdargs.texi (Action Arguments): Clarify into which buffer | ||
| 4 | '--insert' inserts. (Bug#19694) | ||
| 5 | |||
| 1 | 2015-01-21 Eli Zaretskii <eliz@gnu.org> | 6 | 2015-01-21 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * programs.texi (Custom C Indent): Fix a typo. (Bug#19647) | 8 | * programs.texi (Custom C Indent): Fix a typo. (Bug#19647) |
diff --git a/doc/emacs/cmdargs.texi b/doc/emacs/cmdargs.texi index f724f77e230..42c8e33d5c7 100644 --- a/doc/emacs/cmdargs.texi +++ b/doc/emacs/cmdargs.texi | |||
| @@ -165,9 +165,12 @@ Evaluate Lisp expression @var{expression}. | |||
| 165 | @item --insert=@var{file} | 165 | @item --insert=@var{file} |
| 166 | @opindex --insert | 166 | @opindex --insert |
| 167 | @cindex insert file contents, command-line argument | 167 | @cindex insert file contents, command-line argument |
| 168 | Insert the contents of @var{file} into the @file{*scratch*} buffer | 168 | Insert the contents of @var{file} into the buffer that is current when |
| 169 | (@pxref{Lisp Interaction}). This is like what @kbd{M-x insert-file} | 169 | this command-line argument is processed. Usually, this is the |
| 170 | does (@pxref{Misc File Ops}). | 170 | @file{*scratch*} buffer (@pxref{Lisp Interaction}), but if arguments |
| 171 | earlier on the command line visit files or switch buffers, that might | ||
| 172 | be a different buffer. The effect of this command-line argument is | ||
| 173 | like what @kbd{M-x insert-file} does (@pxref{Misc File Ops}). | ||
| 171 | 174 | ||
| 172 | @item --kill | 175 | @item --kill |
| 173 | @opindex --kill | 176 | @opindex --kill |
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index ef1d79af003..3a1eeb2acb9 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2015-01-24 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * searching.texi (Regexp Search): Add a cross-reference to "Syntax | ||
| 4 | of Regexps". (Bug#19668) | ||
| 5 | |||
| 1 | 2015-01-21 Daniel Koning <dk@danielkoning.com> (tiny change) | 6 | 2015-01-21 Daniel Koning <dk@danielkoning.com> (tiny change) |
| 2 | 7 | ||
| 3 | * commands.texi (Drag Events, Motion Events, Event Examples) | 8 | * commands.texi (Drag Events, Motion Events, Event Examples) |
diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi index 2032b151d07..61fac78e4a8 100644 --- a/doc/lispref/searching.texi +++ b/doc/lispref/searching.texi | |||
| @@ -988,10 +988,11 @@ list of characters @var{chars}. | |||
| 988 | @cindex searching for regexp | 988 | @cindex searching for regexp |
| 989 | 989 | ||
| 990 | In GNU Emacs, you can search for the next match for a regular | 990 | In GNU Emacs, you can search for the next match for a regular |
| 991 | expression either incrementally or not. For incremental search | 991 | expression (@pxref{Syntax of Regexps}) either incrementally or not. |
| 992 | commands, see @ref{Regexp Search, , Regular Expression Search, emacs, | 992 | For incremental search commands, see @ref{Regexp Search, , Regular |
| 993 | The GNU Emacs Manual}. Here we describe only the search functions | 993 | Expression Search, emacs, The GNU Emacs Manual}. Here we describe |
| 994 | useful in programs. The principal one is @code{re-search-forward}. | 994 | only the search functions useful in programs. The principal one is |
| 995 | @code{re-search-forward}. | ||
| 995 | 996 | ||
| 996 | These search functions convert the regular expression to multibyte if | 997 | These search functions convert the regular expression to multibyte if |
| 997 | the buffer is multibyte; they convert the regular expression to unibyte | 998 | the buffer is multibyte; they convert the regular expression to unibyte |