# HG changeset patch # User Richard M. Stallman # Date 1148171233 0 # Node ID f9fc135ed5216d49a45acf7a37d5308f178176a8 # Parent d540eb230ee28a8d39440c2ccb1362bade679f0b *** empty log message *** diff -r d540eb230ee2 -r f9fc135ed521 admin/FOR-RELEASE --- a/admin/FOR-RELEASE Sun May 21 00:23:34 2006 +0000 +++ b/admin/FOR-RELEASE Sun May 21 00:27:13 2006 +0000 @@ -29,6 +29,8 @@ ** We need a way a Lisp file encoded in iso-2022 can assure reliable decoding regardless of user options. +** Clean up MUSTBENEW in Fcopy_file. + ** JD Smith's 17 Apr 2006 bug report that CVS operations get mysterious unreproducible failures. diff -r d540eb230ee2 -r f9fc135ed521 etc/NEWS --- a/etc/NEWS Sun May 21 00:23:34 2006 +0000 +++ b/etc/NEWS Sun May 21 00:27:13 2006 +0000 @@ -1299,6 +1299,10 @@ of marked files with the value entered in the minibuffer. +++ +*** The Dired command `dired-goto-file' is now bound to j, not M-g. +This is to avoid hiding the global key binding of M-g. + ++++ *** In Dired's ! command (dired-do-shell-command), `*' and `?' now control substitution of the file names only when they are surrounded by whitespace. This means you can now use them as shell wildcards @@ -1307,8 +1311,8 @@ special treatment in `dired-do-shell-command'. +++ -*** In Dired, the w command now copies the current line's file name -into the kill ring. With a zero prefix arg, copies absolute file names. +*** In Dired, the w command now stores the current line's file name +into the kill ring. With a zero prefix arg, it stores the absolute file name. +++ *** In Dired-x, Omitting files is now a minor mode, dired-omit-mode. diff -r d540eb230ee2 -r f9fc135ed521 lisp/ChangeLog --- a/lisp/ChangeLog Sun May 21 00:23:34 2006 +0000 +++ b/lisp/ChangeLog Sun May 21 00:27:13 2006 +0000 @@ -1,3 +1,8 @@ +2006-05-20 Richard Stallman + + * dired.el (dired-mode-map): Put dired-goto-file on j, not M-g. + (dired-goto-file): Doc fix. + 2006-05-21 Kim F. Storm * emulation/cua-base.el: Mention customizing cua-mode as alternative diff -r d540eb230ee2 -r f9fc135ed521 man/ChangeLog --- a/man/ChangeLog Sun May 21 00:23:34 2006 +0000 +++ b/man/ChangeLog Sun May 21 00:27:13 2006 +0000 @@ -1,3 +1,7 @@ +2006-05-20 Richard Stallman + + * dired.texi (Dired Navigation): dired-goto-file is now j. + 2006-05-20 Luc Teirlinck * dired-x.texi: ifinfo -> ifnottex. diff -r d540eb230ee2 -r f9fc135ed521 src/ChangeLog --- a/src/ChangeLog Sun May 21 00:23:34 2006 +0000 +++ b/src/ChangeLog Sun May 21 00:27:13 2006 +0000 @@ -68,6 +68,8 @@ * xfaces.c (better_font_p): Any font beats no font. (best_matching_font): Simplify based on above change. + + * buffer.c (Fprevious_overlay_change, Fnext_overlay_change): Doc fixes. 2006-05-16 Kim F. Storm