From: Kim F. Storm Date: Wed, 9 Nov 2005 23:21:52 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-22.0.90~5982 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=932954d1d80ed3b608fe26210389f1cb9fba0207;p=emacs.git *** empty log message *** --- diff --git a/man/ChangeLog b/man/ChangeLog index a3d8316167d..fc4b3376c82 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -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 --git a/src/ChangeLog b/src/ChangeLog index f4d6c469e3b..af09ba48fcc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -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.