diff options
| author | Eli Zaretskii | 2005-06-04 20:09:13 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2005-06-04 20:09:13 +0000 |
| commit | b6f0a39717ed4be8f35c059ab32d4b4bd9199129 (patch) | |
| tree | 893a78d978dc22b0b7dbb0a4e19020c9a5fd73ae | |
| parent | d01a9710746df2584e6f24b1398cbe2d0e87728d (diff) | |
| download | emacs-b6f0a39717ed4be8f35c059ab32d4b4bd9199129.tar.gz emacs-b6f0a39717ed4be8f35c059ab32d4b4bd9199129.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 20 | ||||
| -rw-r--r-- | src/ChangeLog | 2 |
2 files changed, 20 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7fcdef18f5e..7b9058c6284 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,7 +1,23 @@ | |||
| 1 | 2005-06-04 Matt Hodges <MPHodges@member.fsf.org> | 1 | 2005-06-04 Matt Hodges <MPHodges@member.fsf.org> |
| 2 | 2 | ||
| 3 | * iswitchb.el (iswitchb-get-matched-buffers): Handle | 3 | * iswitchb.el (iswitchb-single-match-face) |
| 4 | invalid-regexp errors in post-command-hook. | 4 | (iswitchb-current-match-face, iswitchb-virtual-matches-face) |
| 5 | (iswitchb-invalid-regexp-face): New faces. | ||
| 6 | (iswitchb-completions): Use them. | ||
| 7 | (iswitchb-use-faces): Renamed from iswitchb-use-fonts, which is | ||
| 8 | now marked as an obsolete alias. | ||
| 9 | (iswitchb-read-buffer): Remove check for bound font variables. | ||
| 10 | (iswitchb-invalid-regexp): New free variable. | ||
| 11 | (iswitchb-get-matched-buffers): Catch invalid-regexp errors and | ||
| 12 | set iswitchb-invalid-regexp. | ||
| 13 | (iswitchb, iswitchb-complete, iswitchb-completions): Deal with | ||
| 14 | invalid regexps. | ||
| 15 | (iswitchb-completions): Add check for complete match when entering | ||
| 16 | a regexp. | ||
| 17 | (iswitchb-completions): Remove require-match argument. | ||
| 18 | (iswitchb-exhibit): Fix caller. | ||
| 19 | (iswitchb-common-match-inserted): New variable. | ||
| 20 | (iswitchb-complete, iswitchb-completion-help): Use it. | ||
| 5 | 21 | ||
| 6 | 2005-06-04 David Reitter <david.reitter@gmail.com> (tiny change) | 22 | 2005-06-04 David Reitter <david.reitter@gmail.com> (tiny change) |
| 7 | 23 | ||
diff --git a/src/ChangeLog b/src/ChangeLog index 9d9062e2aa9..f4f9b8d6537 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2005-06-04 Eli Zaretskii <eliz@gnu.org> | 1 | 2005-06-04 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * s/ms-w32.h (fileno): Don't define if already defined. | ||
| 4 | |||
| 3 | * emacs.c: Include w32heap.h, to avoid compiler warning about | 5 | * emacs.c: Include w32heap.h, to avoid compiler warning about |
| 4 | sbrk. | 6 | sbrk. |
| 5 | 7 | ||