diff options
| author | Kim F. Storm | 2005-04-21 23:46:33 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-04-21 23:46:33 +0000 |
| commit | 1ba52906b45d369f8770366f3d9ce8cc73919db1 (patch) | |
| tree | b780e230f82335c226a2944a87400fb0387ce157 | |
| parent | 16a5378b45e4058b53552d7e4790c101e08f6209 (diff) | |
| download | emacs-1ba52906b45d369f8770366f3d9ce8cc73919db1.tar.gz emacs-1ba52906b45d369f8770366f3d9ce8cc73919db1.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 12 | ||||
| -rw-r--r-- | lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | src/ChangeLog | 15 |
3 files changed, 22 insertions, 10 deletions
| @@ -4204,16 +4204,8 @@ This returns the mode-line or header-line of the selected (or a | |||
| 4204 | specified) window as a string with or without text properties. | 4204 | specified) window as a string with or without text properties. |
| 4205 | 4205 | ||
| 4206 | +++ | 4206 | +++ |
| 4207 | ** New function `safe-get'. | 4207 | ** Functions `get' and `plist-get' no longer signals an error for |
| 4208 | 4208 | a malformed property list. They also detect cyclic lists. | |
| 4209 | This function is like `get', but never signals an error for | ||
| 4210 | a malformed symbol property list. | ||
| 4211 | |||
| 4212 | +++ | ||
| 4213 | ** New function `safe-plist-get'. | ||
| 4214 | |||
| 4215 | This function is like `plist-get', but never signals an error for | ||
| 4216 | a malformed property list. | ||
| 4217 | 4209 | ||
| 4218 | +++ | 4210 | +++ |
| 4219 | ** New functions `lax-plist-get' and `lax-plist-put'. | 4211 | ** New functions `lax-plist-get' and `lax-plist-put'. |
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 9fdc1ff9625..59ef2ab747e 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-04-22 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * symbols.texi (Symbol Plists): Remove safe-get, as get is now safe. | ||
| 4 | (Other Plists): Remove safe-plist-get, as plist-get is now safe. | ||
| 5 | |||
| 1 | 2005-04-21 Lute Kamstra <lute@gnu.org> | 6 | 2005-04-21 Lute Kamstra <lute@gnu.org> |
| 2 | 7 | ||
| 3 | * lists.texi (Association Lists): Document rassq-delete-all. | 8 | * lists.texi (Association Lists): Document rassq-delete-all. |
diff --git a/src/ChangeLog b/src/ChangeLog index 54a593a34d5..1d09bde8487 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,18 @@ | |||
| 1 | 2005-04-22 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * fns.c (Fplist_get): Replace by Fsafe_plist_get. | ||
| 4 | (Fsafe_plist_get): Rename to Fplist_get. | ||
| 5 | (Fsafe_get): Remove, as Fget now uses safe Fplist_get. | ||
| 6 | (defsubr): Remove defsubr for Fsafe_plist_get and Fsafe_get. | ||
| 7 | |||
| 8 | * lisp.h (Fsafe_plist_get, Fsafe_get): Remove EXFUN. | ||
| 9 | |||
| 10 | * xdisp.c (store_mode_line_string, produce_stretch_glyph) | ||
| 11 | (note_mode_line_or_margin_highlight, note_mouse_highlight): | ||
| 12 | Use Fplist_get instead of Fsafe_plist_get. | ||
| 13 | |||
| 14 | * xfaces.c (resolve_face_name): Use Fget instead of Fsafe_get. | ||
| 15 | |||
| 1 | 2005-04-21 Miles Bader <miles@gnu.org> | 16 | 2005-04-21 Miles Bader <miles@gnu.org> |
| 2 | 17 | ||
| 3 | * xdisp.c (dump_glyph_row): Don't display overlay_arrow_p field. | 18 | * xdisp.c (dump_glyph_row): Don't display overlay_arrow_p field. |