diff options
| author | Miles Bader | 2007-08-13 13:41:28 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-08-13 13:41:28 +0000 |
| commit | 37cc095b6a175fb5a2fb18fa029eaf3aa3b3fa53 (patch) | |
| tree | 7fb68e80f66e55100c48b9751cf70c74af2d4bf1 /lisp/diff-mode.el | |
| parent | 031b6333283be57d971e557b83da31c6be937b0a (diff) | |
| parent | 9d2db4c6637fe37d75f947063bcb2ecce319a1bc (diff) | |
| download | emacs-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.el | 6 |
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. |
| 726 | START and END are either taken from the region (if a prefix arg is given) or | 726 | START and END are either taken from the region (if a prefix arg is given) or |
| 727 | else cover the whole bufer." | 727 | else 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. |
| 909 | START and END are either taken from the region (if a prefix arg is given) or | 909 | START and END are either taken from the region (if a prefix arg is given) or |
| 910 | else cover the whole bufer." | 910 | else 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). |
| 971 | START and END are either taken from the region (if a prefix arg is given) or | 971 | START and END are either taken from the region (if a prefix arg is given) or |
| 972 | else cover the whole bufer." | 972 | else 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)))) |