diff options
| author | Gerd Moellmann | 2000-03-12 13:49:28 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-03-12 13:49:28 +0000 |
| commit | 5e5dff44e71453dc170a413f493af220b1bb9063 (patch) | |
| tree | c548d12c798098fae37ca380efca039bea0aa992 | |
| parent | b78417b00068570689d79f3bd0d8de176b0f5fe4 (diff) | |
| download | emacs-5e5dff44e71453dc170a413f493af220b1bb9063.tar.gz emacs-5e5dff44e71453dc170a413f493af220b1bb9063.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 15 | ||||
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | src/ChangeLog | 5 |
3 files changed, 25 insertions, 0 deletions
| @@ -832,6 +832,21 @@ appropriate for C-style escape sequences in strings. | |||
| 832 | 832 | ||
| 833 | ** New modes and packages | 833 | ** New modes and packages |
| 834 | 834 | ||
| 835 | *** The new command M-x re-builder offers a convenient interface for | ||
| 836 | authoring regular expressions with immediate visual feedback. | ||
| 837 | |||
| 838 | The buffer from which the command was called becomes the target for | ||
| 839 | the regexp editor popping up in a separate window. Matching text in | ||
| 840 | the target buffer is immediately color marked during the editing. | ||
| 841 | Each sub-expression of the regexp will show up in a different face so | ||
| 842 | even complex regexps can be edited and verified on target data in a | ||
| 843 | single step. | ||
| 844 | |||
| 845 | On displays not supporting faces the matches instead blink like | ||
| 846 | matching parens to make them stand out. On such a setup you will | ||
| 847 | probably also want to use the sub-expression mode when the regexp | ||
| 848 | contains such to get feedback about their respective limits. | ||
| 849 | |||
| 835 | *** glasses-mode is a minor mode that makes | 850 | *** glasses-mode is a minor mode that makes |
| 836 | unreadableIdentifiersLikeThis readable. It works as glasses, without | 851 | unreadableIdentifiersLikeThis readable. It works as glasses, without |
| 837 | actually modifying content of a buffer. | 852 | actually modifying content of a buffer. |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a974283f157..f30effb6275 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de> | ||
| 2 | |||
| 3 | * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'. | ||
| 4 | Fix comment. | ||
| 5 | |||
| 1 | 2000-03-10 Stefan Monnier <monnier@cs.yale.edu> | 6 | 2000-03-10 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 7 | ||
| 3 | * font-lock.el (font-lock-keywords): Fix the doc now that | 8 | * font-lock.el (font-lock-keywords): Fix the doc now that |
diff --git a/src/ChangeLog b/src/ChangeLog index 59d94ce505f..b9fa9d724ef 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2000-03-12 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * xfns.c (x_defined_color): Rewritten to use | ||
| 4 | x_allocate_nearest_color. | ||
| 5 | |||
| 1 | 2000-03-12 Eli Zaretskii <eliz@is.elta.co.il> | 6 | 2000-03-12 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 7 | ||
| 3 | * msdos.c (vga_installed): New function, code moved from | 8 | * msdos.c (vga_installed): New function, code moved from |