# HG changeset patch # User Kim F. Storm # Date 1131578512 0 # Node ID 5bb175fa0f8e732eef7365cca2d8c9d1e36b6381 # Parent 06e83e43c7278e77e75d8777a268979805e82132 *** empty log message *** diff -r 06e83e43c727 -r 5bb175fa0f8e man/ChangeLog --- a/man/ChangeLog Wed Nov 09 23:14:32 2005 +0000 +++ b/man/ChangeLog Wed Nov 09 23:21:52 2005 +0000 @@ -1,3 +1,16 @@ +2005-11-10 Kim F. Storm + + * emacs.texi (Top): Add CUA Bindings entry to menu. + + * killing.texi (CUA Bindings): New node. Moved here from + misc.texi and extended with info on rectangle commands and + rectangle highlighting, interface to registers, and the global + mark feature. + + * misc.texi (Emulation): Move CUA bindings item to killing.texi. + + * regs.texi: Prev link points to CUA Bindings node. + 2005-11-07 Luc Teirlinck * help.texi (Help Echo): By default, help echos are only shown on diff -r 06e83e43c727 -r 5bb175fa0f8e src/ChangeLog --- a/src/ChangeLog Wed Nov 09 23:14:32 2005 +0000 +++ b/src/ChangeLog Wed Nov 09 23:21:52 2005 +0000 @@ -1,3 +1,17 @@ +2005-11-10 Kim F. Storm + + * alloc.c (valid_lisp_object_p): New function to validate that + an object is really a valid Lisp_Object. + + * lisp.h (valid_lisp_object_p): Add prototype. + + * print.c (safe_debug_print): New function to be called from gdb + to print Lisp objects; use valid_lisp_object_p to avoid crashing + if user tries to print something which is not a Lisp object. + + * .gdbinit (pp, pp1): Use safe_debug_print. + (pv, pv1): New commands to print value of a lisp variable. + 2005-11-10 Nick Roberts * .gdbinit (pp1): New user-defined function.