*** empty log message ***

This commit is contained in:
Richard M. Stallman 2006-05-21 00:27:13 +00:00
parent 0e3c3816e1
commit 6f5c4cc997
5 changed files with 19 additions and 2 deletions

View file

@ -29,6 +29,8 @@ and KDE projects, to use the new Emacs icons in etc/images/icons.
** 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.

View file

@ -1298,6 +1298,10 @@ with different file attributes in two dired buffers.
*** New Dired command `dired-do-touch' (bound to T) changes timestamps
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
@ -1307,8 +1311,8 @@ double quotes make no difference in the shell, but they prevent
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.

View file

@ -1,3 +1,8 @@
2006-05-20 Richard Stallman <rms@gnu.org>
* 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 <storm@cua.dk>
* emulation/cua-base.el: Mention customizing cua-mode as alternative

View file

@ -1,3 +1,7 @@
2006-05-20 Richard Stallman <rms@gnu.org>
* dired.texi (Dired Navigation): dired-goto-file is now j.
2006-05-20 Luc Teirlinck <teirllm@auburn.edu>
* dired-x.texi: ifinfo -> ifnottex.

View file

@ -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 <storm@cua.dk>