diff options
| author | Kim F. Storm | 2006-05-16 10:54:37 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-05-16 10:54:37 +0000 |
| commit | b3abe3a5ef6bf8f6c3e7247dcd12d52da95adda9 (patch) | |
| tree | b688c20252fa9413a0c5e39afcdbd3fa6629e81f | |
| parent | e6966ef0a771f0afe79b22767b3a6ed81dadf252 (diff) | |
| download | emacs-b3abe3a5ef6bf8f6c3e7247dcd12d52da95adda9.tar.gz emacs-b3abe3a5ef6bf8f6c3e7247dcd12d52da95adda9.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 7 |
3 files changed, 16 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 29724b72748..147e449c351 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,7 +1,11 @@ | |||
| 1 | 2006-05-16 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * subr.el (add-to-history): Add KEEP-ALL arg and align functionality | ||
| 4 | with read-from-minibuffer. | ||
| 5 | |||
| 1 | 2006-05-16 Reiner Steib <Reiner.Steib@gmx.de> | 6 | 2006-05-16 Reiner Steib <Reiner.Steib@gmx.de> |
| 2 | 7 | ||
| 3 | * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p): New | 8 | * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p): New function. |
| 4 | function. | ||
| 5 | (byte-compile-warnings): Fix safe-local-variable property. | 9 | (byte-compile-warnings): Fix safe-local-variable property. |
| 6 | 10 | ||
| 7 | 2006-05-16 Ken Manheimer <ken.manheimer@gmail.com> | 11 | 2006-05-16 Ken Manheimer <ken.manheimer@gmail.com> |
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index ae8913134bb..caf04b086a7 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-05-16 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * minibuf.texi (Minibuffer History): Update add-to-history. | ||
| 4 | |||
| 1 | 2006-05-15 Oliver Scholz <epameinondas@gmx.de> (tiny change) | 5 | 2006-05-15 Oliver Scholz <epameinondas@gmx.de> (tiny change) |
| 2 | 6 | ||
| 3 | * nonascii.texi (Explicit Encoding): Fix | 7 | * nonascii.texi (Explicit Encoding): Fix |
diff --git a/src/ChangeLog b/src/ChangeLog index 91b8ee926e8..1a58d0b5905 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,10 +1,15 @@ | |||
| 1 | 2006-05-16 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * xterm.c (handle_one_xevent): Check that f is not NULL before | ||
| 4 | calling x_kill_gs_process. | ||
| 5 | |||
| 1 | 2006-05-14 Richard Stallman <rms@gnu.org> | 6 | 2006-05-14 Richard Stallman <rms@gnu.org> |
| 2 | 7 | ||
| 3 | * textprop.c (Fnext_single_char_property_change) | 8 | * textprop.c (Fnext_single_char_property_change) |
| 4 | (Fprevious_single_char_property_change): Don't allow returning | 9 | (Fprevious_single_char_property_change): Don't allow returning |
| 5 | value beyond LIMIT in any cases. | 10 | value beyond LIMIT in any cases. |
| 6 | (Fnext_char_property_change, Fprevious_char_property_change): Doc fix. | 11 | (Fnext_char_property_change, Fprevious_char_property_change): Doc fix. |
| 7 | 12 | ||
| 8 | * intervals.c (get_local_map): Abort if POSITION outside BEGV, ZV. | 13 | * intervals.c (get_local_map): Abort if POSITION outside BEGV, ZV. |
| 9 | 14 | ||
| 10 | 2006-05-14 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 15 | 2006-05-14 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |