aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2006-05-02 01:47:57 +0000
committerRichard M. Stallman2006-05-02 01:47:57 +0000
commit90b571567345bf2d2cd7a7b22f27b02adc4ef168 (patch)
tree5fa36b3dc6af74fa140fb8b9e8c9aec10c81c839
parent350287efea5726462a172406432b31725f259eb6 (diff)
downloademacs-90b571567345bf2d2cd7a7b22f27b02adc4ef168.tar.gz
emacs-90b571567345bf2d2cd7a7b22f27b02adc4ef168.zip
*** empty log message ***
-rw-r--r--etc/NEWS17
-rw-r--r--lisp/ChangeLog5
-rw-r--r--man/ChangeLog4
3 files changed, 26 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index a15e217cafe..378f715b286 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1967,6 +1967,21 @@ run most curses applications now.
1967** M-x diff uses Diff mode instead of Compilation mode. 1967** M-x diff uses Diff mode instead of Compilation mode.
1968 1968
1969+++ 1969+++
1970** Diff mode key bindings changed.
1971
1972These are the new bindings:
1973
1974C-c C-e diff-ediff-patch (old M-A)
1975C-c C-n diff-restrict-view (old M-r)
1976C-c C-r diff-reverse-direction (old M-R)
1977C-c C-u diff-context->unified (old M-U)
1978C-c C-w diff-refine-hunk (old C-c C-r)
1979
1980To convert unified to context format, use C-u C-c C-u.
1981In addition, C-c C-u now operates on the region
1982in Transient Mark mode when the mark is active.
1983
1984+++
1970** You can now customize `fill-nobreak-predicate' to control where 1985** You can now customize `fill-nobreak-predicate' to control where
1971filling can break lines. The value is now normally a list of 1986filling can break lines. The value is now normally a list of
1972functions, but it can also be a single function, for compatibility. 1987functions, but it can also be a single function, for compatibility.
@@ -5893,6 +5908,8 @@ Currently, the following actions have been defined:
5893- Mouse-2 on the read-only or modified status in the mode line (`%' or 5908- Mouse-2 on the read-only or modified status in the mode line (`%' or
5894`*') toggles the status. 5909`*') toggles the status.
5895 5910
5911- Mouse-3 on the major mode name displays a major mode menu.
5912
5896- Mouse-3 on the mode name displays a minor-mode menu. 5913- Mouse-3 on the mode name displays a minor-mode menu.
5897 5914
5898** Hourglass pointer 5915** Hourglass pointer
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ae61defbea2..e0be66f3b08 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,10 @@
12006-05-01 Richard Stallman <rms@gnu.org> 12006-05-01 Richard Stallman <rms@gnu.org>
2 2
3 * diff-mode.el (diff-mode-shared-map): Don't bind M-W, M-U, M-C,
4 M-r, M-R, M-A, M-SPC or M-DEL.
5 (diff-mode-map): diff-refine-hunk now on C-c C-w
6 (diff-mode-map): Bind C-c C-e, C-c C-n, C-c C-r, C-c C-u.
7
3 * help-mode.el (help-mode): view-exit-action calls delete-window 8 * help-mode.el (help-mode): view-exit-action calls delete-window
4 only when it is safe and possible. 9 only when it is safe and possible.
5 10
diff --git a/man/ChangeLog b/man/ChangeLog
index 7337b1de848..bd48e3f4f20 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,7 @@
12006-05-01 Richard Stallman <rms@gnu.org>
2
3 * emacs.texi (Top): Add Diff Mode to menu.
4
12006-05-01 Aaron S. Hawley <Aaron.Hawley@uvm.edu> 52006-05-01 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
2 6
3 * misc.texi (Diff Mode): New node. 7 * misc.texi (Diff Mode): New node.