diff options
| author | Kim F. Storm | 2005-11-09 23:21:52 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-11-09 23:21:52 +0000 |
| commit | 932954d1d80ed3b608fe26210389f1cb9fba0207 (patch) | |
| tree | 21087e227ad971894e5dc9dacde784d45acec4b3 | |
| parent | bd90dcd000bbc315b26153f091ce6a2ac592f1d7 (diff) | |
| download | emacs-932954d1d80ed3b608fe26210389f1cb9fba0207.tar.gz emacs-932954d1d80ed3b608fe26210389f1cb9fba0207.zip | |
*** empty log message ***
| -rw-r--r-- | man/ChangeLog | 13 | ||||
| -rw-r--r-- | src/ChangeLog | 14 |
2 files changed, 27 insertions, 0 deletions
diff --git a/man/ChangeLog b/man/ChangeLog index a3d8316167d..fc4b3376c82 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,16 @@ | |||
| 1 | 2005-11-10 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * emacs.texi (Top): Add CUA Bindings entry to menu. | ||
| 4 | |||
| 5 | * killing.texi (CUA Bindings): New node. Moved here from | ||
| 6 | misc.texi and extended with info on rectangle commands and | ||
| 7 | rectangle highlighting, interface to registers, and the global | ||
| 8 | mark feature. | ||
| 9 | |||
| 10 | * misc.texi (Emulation): Move CUA bindings item to killing.texi. | ||
| 11 | |||
| 12 | * regs.texi: Prev link points to CUA Bindings node. | ||
| 13 | |||
| 1 | 2005-11-07 Luc Teirlinck <teirllm@auburn.edu> | 14 | 2005-11-07 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 15 | ||
| 3 | * help.texi (Help Echo): By default, help echos are only shown on | 16 | * help.texi (Help Echo): By default, help echos are only shown on |
diff --git a/src/ChangeLog b/src/ChangeLog index f4d6c469e3b..af09ba48fcc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,17 @@ | |||
| 1 | 2005-11-10 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * alloc.c (valid_lisp_object_p): New function to validate that | ||
| 4 | an object is really a valid Lisp_Object. | ||
| 5 | |||
| 6 | * lisp.h (valid_lisp_object_p): Add prototype. | ||
| 7 | |||
| 8 | * print.c (safe_debug_print): New function to be called from gdb | ||
| 9 | to print Lisp objects; use valid_lisp_object_p to avoid crashing | ||
| 10 | if user tries to print something which is not a Lisp object. | ||
| 11 | |||
| 12 | * .gdbinit (pp, pp1): Use safe_debug_print. | ||
| 13 | (pv, pv1): New commands to print value of a lisp variable. | ||
| 14 | |||
| 1 | 2005-11-10 Nick Roberts <nickrob@snap.net.nz> | 15 | 2005-11-10 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 16 | ||
| 3 | * .gdbinit (pp1): New user-defined function. | 17 | * .gdbinit (pp1): New user-defined function. |