diff options
| author | Stefan Monnier | 2007-08-06 20:08:55 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-08-06 20:08:55 +0000 |
| commit | dfbd373dfb9de125e016bb7d11b46d05fdf992c4 (patch) | |
| tree | 2c3cd6ae64c1e0828c96b9f7e4aa0e8864479600 /lisp/diff-mode.el | |
| parent | bc04f6bf4f2d77093b5a42f6f007b3474d86fb2d (diff) | |
| download | emacs-dfbd373dfb9de125e016bb7d11b46d05fdf992c4.tar.gz emacs-dfbd373dfb9de125e016bb7d11b46d05fdf992c4.zip | |
(diff-unified->context, diff-reverse-direction, diff-fixup-modifs):
Typo in docstring.
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 f2800f1c337..e0aee67a62b 100644 --- a/lisp/diff-mode.el +++ b/lisp/diff-mode.el | |||
| @@ -685,7 +685,7 @@ PREFIX is only used internally: don't use it." | |||
| 685 | (defun diff-unified->context (start end) | 685 | (defun diff-unified->context (start end) |
| 686 | "Convert unified diffs to context diffs. | 686 | "Convert unified diffs to context diffs. |
| 687 | START and END are either taken from the region (if a prefix arg is given) or | 687 | START and END are either taken from the region (if a prefix arg is given) or |
| 688 | else cover the whole bufer." | 688 | else cover the whole buffer." |
| 689 | (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active)) | 689 | (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active)) |
| 690 | (list (region-beginning) (region-end)) | 690 | (list (region-beginning) (region-end)) |
| 691 | (list (point-min) (point-max)))) | 691 | (list (point-min) (point-max)))) |
| @@ -847,7 +847,7 @@ With a prefix argument, convert unified format to context format." | |||
| 847 | (defun diff-reverse-direction (start end) | 847 | (defun diff-reverse-direction (start end) |
| 848 | "Reverse the direction of the diffs. | 848 | "Reverse the direction of the diffs. |
| 849 | START and END are either taken from the region (if a prefix arg is given) or | 849 | START and END are either taken from the region (if a prefix arg is given) or |
| 850 | else cover the whole bufer." | 850 | else cover the whole buffer." |
| 851 | (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active)) | 851 | (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active)) |
| 852 | (list (region-beginning) (region-end)) | 852 | (list (region-beginning) (region-end)) |
| 853 | (list (point-min) (point-max)))) | 853 | (list (point-min) (point-max)))) |
| @@ -909,7 +909,7 @@ else cover the whole bufer." | |||
| 909 | (defun diff-fixup-modifs (start end) | 909 | (defun diff-fixup-modifs (start end) |
| 910 | "Fixup the hunk headers (in case the buffer was modified). | 910 | "Fixup the hunk headers (in case the buffer was modified). |
| 911 | START and END are either taken from the region (if a prefix arg is given) or | 911 | START and END are either taken from the region (if a prefix arg is given) or |
| 912 | else cover the whole bufer." | 912 | else cover the whole buffer." |
| 913 | (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active)) | 913 | (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active)) |
| 914 | (list (region-beginning) (region-end)) | 914 | (list (region-beginning) (region-end)) |
| 915 | (list (point-min) (point-max)))) | 915 | (list (point-min) (point-max)))) |