# HG changeset patch # User Richard M. Stallman # Date 1079086580 0 # Node ID b3e0a3f4fdf2c1365c3d70da25a1d5faa23e0ea6 # Parent e74d0c5cb323e00fe539e60ceb8aafa6a0572367 *** empty log message *** diff -r e74d0c5cb323 -r b3e0a3f4fdf2 lisp/ChangeLog --- a/lisp/ChangeLog Fri Mar 12 10:16:03 2004 +0000 +++ b/lisp/ChangeLog Fri Mar 12 10:16:20 2004 +0000 @@ -1,3 +1,13 @@ +2004-03-12 Richard M. Stallman + + * pcvs.el (cvs-mode-add-change-log-entry-other-window): + Fix minor bug. + + * replace.el (occur-engine): Change message for count of matches. + + * emacs-lisp/bytecomp.el (byte-compile-get-constant): + For strings, do compare text properties. + 2004-03-11 Jason Rumney * net/ldap.el (ldap-search-internal): Handle file URLs with drive diff -r e74d0c5cb323 -r b3e0a3f4fdf2 lispref/ChangeLog --- a/lispref/ChangeLog Fri Mar 12 10:16:03 2004 +0000 +++ b/lispref/ChangeLog Fri Mar 12 10:16:20 2004 +0000 @@ -1,3 +1,8 @@ +2004-03-12 Richard M. Stallman + + * intro.texi (Version Info): Add arg to emacs-version. + (Lisp History): Change xref to CL manual. + 2004-03-09 Luc Teirlinck * minibuf.texi (Completion Commands): Add xref to Emacs manual diff -r e74d0c5cb323 -r b3e0a3f4fdf2 man/ChangeLog --- a/man/ChangeLog Fri Mar 12 10:16:03 2004 +0000 +++ b/man/ChangeLog Fri Mar 12 10:16:20 2004 +0000 @@ -1,3 +1,9 @@ +2004-03-12 Richard M. Stallman + + * cl.texi (Top): Rename top node's title. + + * buffers.texi (Misc Buffer): Add index entry for rename-uniquely. + 2004-03-08 Karl Berry * info.texi: \input texinfo.tex instead of just texinfo, to avoid diff -r e74d0c5cb323 -r b3e0a3f4fdf2 src/ChangeLog --- a/src/ChangeLog Fri Mar 12 10:16:03 2004 +0000 +++ b/src/ChangeLog Fri Mar 12 10:16:20 2004 +0000 @@ -1,3 +1,10 @@ +2004-03-12 Richard M. Stallman + + * fns.c (internal_equal): New arg PROPS controls comparing + text properties. All callers changed. + (Fequal_including_properties): New function. + (syms_of_fns): defsubr it. + 2004-03-12 Kim F. Storm Fix image support on MAC. From YAMAMOTO Mitsuharu.