aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/diff-mode.el
diff options
context:
space:
mode:
authorMiles Bader2007-08-13 13:41:28 +0000
committerMiles Bader2007-08-13 13:41:28 +0000
commit37cc095b6a175fb5a2fb18fa029eaf3aa3b3fa53 (patch)
tree7fb68e80f66e55100c48b9751cf70c74af2d4bf1 /lisp/diff-mode.el
parent031b6333283be57d971e557b83da31c6be937b0a (diff)
parent9d2db4c6637fe37d75f947063bcb2ecce319a1bc (diff)
downloademacs-37cc095b6a175fb5a2fb18fa029eaf3aa3b3fa53.tar.gz
emacs-37cc095b6a175fb5a2fb18fa029eaf3aa3b3fa53.zip
Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-851
Diffstat (limited to 'lisp/diff-mode.el')
-rw-r--r--lisp/diff-mode.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/diff-mode.el b/lisp/diff-mode.el
index 3c8ad2c49ff..be4c7e7b905 100644
--- a/lisp/diff-mode.el
+++ b/lisp/diff-mode.el
@@ -724,7 +724,7 @@ PREFIX is only used internally: don't use it."
724(defun diff-unified->context (start end) 724(defun diff-unified->context (start end)
725 "Convert unified diffs to context diffs. 725 "Convert unified diffs to context diffs.
726START and END are either taken from the region (if a prefix arg is given) or 726START and END are either taken from the region (if a prefix arg is given) or
727else cover the whole bufer." 727else cover the whole buffer."
728 (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active)) 728 (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active))
729 (list (region-beginning) (region-end)) 729 (list (region-beginning) (region-end))
730 (list (point-min) (point-max)))) 730 (list (point-min) (point-max))))
@@ -907,7 +907,7 @@ With a prefix argument, convert unified format to context format."
907(defun diff-reverse-direction (start end) 907(defun diff-reverse-direction (start end)
908 "Reverse the direction of the diffs. 908 "Reverse the direction of the diffs.
909START and END are either taken from the region (if a prefix arg is given) or 909START and END are either taken from the region (if a prefix arg is given) or
910else cover the whole bufer." 910else cover the whole buffer."
911 (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active)) 911 (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active))
912 (list (region-beginning) (region-end)) 912 (list (region-beginning) (region-end))
913 (list (point-min) (point-max)))) 913 (list (point-min) (point-max))))
@@ -969,7 +969,7 @@ else cover the whole bufer."
969(defun diff-fixup-modifs (start end) 969(defun diff-fixup-modifs (start end)
970 "Fixup the hunk headers (in case the buffer was modified). 970 "Fixup the hunk headers (in case the buffer was modified).
971START and END are either taken from the region (if a prefix arg is given) or 971START and END are either taken from the region (if a prefix arg is given) or
972else cover the whole bufer." 972else cover the whole buffer."
973 (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active)) 973 (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active))
974 (list (region-beginning) (region-end)) 974 (list (region-beginning) (region-end))
975 (list (point-min) (point-max)))) 975 (list (point-min) (point-max))))