aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2006-05-21 00:27:13 +0000
committerRichard M. Stallman2006-05-21 00:27:13 +0000
commit6f5c4cc997854ede833642bfbdb01f34e0de6962 (patch)
tree295fd39be370396480f83a644aa02574a78b3355
parent0e3c3816e1c36d2acf6f7416ceb5461e8900e461 (diff)
downloademacs-6f5c4cc997854ede833642bfbdb01f34e0de6962.tar.gz
emacs-6f5c4cc997854ede833642bfbdb01f34e0de6962.zip
*** empty log message ***
-rw-r--r--admin/FOR-RELEASE2
-rw-r--r--etc/NEWS8
-rw-r--r--lisp/ChangeLog5
-rw-r--r--man/ChangeLog4
-rw-r--r--src/ChangeLog2
5 files changed, 19 insertions, 2 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE
index 5d634762d9d..60de4d8b772 100644
--- a/admin/FOR-RELEASE
+++ b/admin/FOR-RELEASE
@@ -29,6 +29,8 @@ and KDE projects, to use the new Emacs icons in etc/images/icons.
29** We need a way a Lisp file encoded in iso-2022 can assure 29** We need a way a Lisp file encoded in iso-2022 can assure
30reliable decoding regardless of user options. 30reliable decoding regardless of user options.
31 31
32** Clean up MUSTBENEW in Fcopy_file.
33
32** JD Smith's 17 Apr 2006 bug report that CVS operations 34** JD Smith's 17 Apr 2006 bug report that CVS operations
33get mysterious unreproducible failures. 35get mysterious unreproducible failures.
34 36
diff --git a/etc/NEWS b/etc/NEWS
index 6ebd6f29f90..c384f6f2aee 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1299,6 +1299,10 @@ with different file attributes in two dired buffers.
1299of marked files with the value entered in the minibuffer. 1299of marked files with the value entered in the minibuffer.
1300 1300
1301+++ 1301+++
1302*** The Dired command `dired-goto-file' is now bound to j, not M-g.
1303This is to avoid hiding the global key binding of M-g.
1304
1305+++
1302*** In Dired's ! command (dired-do-shell-command), `*' and `?' now 1306*** In Dired's ! command (dired-do-shell-command), `*' and `?' now
1303control substitution of the file names only when they are surrounded 1307control substitution of the file names only when they are surrounded
1304by whitespace. This means you can now use them as shell wildcards 1308by whitespace. This means you can now use them as shell wildcards
@@ -1307,8 +1311,8 @@ double quotes make no difference in the shell, but they prevent
1307special treatment in `dired-do-shell-command'. 1311special treatment in `dired-do-shell-command'.
1308 1312
1309+++ 1313+++
1310*** In Dired, the w command now copies the current line's file name 1314*** In Dired, the w command now stores the current line's file name
1311into the kill ring. With a zero prefix arg, copies absolute file names. 1315into the kill ring. With a zero prefix arg, it stores the absolute file name.
1312 1316
1313+++ 1317+++
1314*** In Dired-x, Omitting files is now a minor mode, dired-omit-mode. 1318*** In Dired-x, Omitting files is now a minor mode, dired-omit-mode.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6f444e95359..c644bba15df 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12006-05-20 Richard Stallman <rms@gnu.org>
2
3 * dired.el (dired-mode-map): Put dired-goto-file on j, not M-g.
4 (dired-goto-file): Doc fix.
5
12006-05-21 Kim F. Storm <storm@cua.dk> 62006-05-21 Kim F. Storm <storm@cua.dk>
2 7
3 * emulation/cua-base.el: Mention customizing cua-mode as alternative 8 * emulation/cua-base.el: Mention customizing cua-mode as alternative
diff --git a/man/ChangeLog b/man/ChangeLog
index 63150b7b3e5..617e2407add 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,7 @@
12006-05-20 Richard Stallman <rms@gnu.org>
2
3 * dired.texi (Dired Navigation): dired-goto-file is now j.
4
12006-05-20 Luc Teirlinck <teirllm@auburn.edu> 52006-05-20 Luc Teirlinck <teirllm@auburn.edu>
2 6
3 * dired-x.texi: ifinfo -> ifnottex. 7 * dired-x.texi: ifinfo -> ifnottex.
diff --git a/src/ChangeLog b/src/ChangeLog
index 0e3663d4614..c670f757962 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -68,6 +68,8 @@
68 68
69 * xfaces.c (better_font_p): Any font beats no font. 69 * xfaces.c (better_font_p): Any font beats no font.
70 (best_matching_font): Simplify based on above change. 70 (best_matching_font): Simplify based on above change.
71
72 * buffer.c (Fprevious_overlay_change, Fnext_overlay_change): Doc fixes.
71 73
722006-05-16 Kim F. Storm <storm@cua.dk> 742006-05-16 Kim F. Storm <storm@cua.dk>
73 75