]> git.eshelyaron.com Git - emacs.git/commitdiff
(diff-unified->context, diff-reverse-direction, diff-fixup-modifs):
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 6 Aug 2007 20:08:55 +0000 (20:08 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 6 Aug 2007 20:08:55 +0000 (20:08 +0000)
Typo in docstring.

lisp/ChangeLog
lisp/diff-mode.el

index f5319ac3ce9bdab6a6cf77f7f026a3e54902e199..790bb74d2d9f6afab384686449653726149b7cfe 100644 (file)
@@ -1,3 +1,8 @@
+2007-08-06  Tom Tromey  <tromey@redhat.com>
+
+       * diff-mode.el (diff-unified->context, diff-reverse-direction)
+       (diff-fixup-modifs): Typo in docstring.
+
 2007-08-06  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * emulation/tpu-edt.el (tpu-current-line): Use posn-at-point and
index f2800f1c3376f10f541c855c4f2ff0de2b4aef98..e0aee67a62b0f59b7da1744361028217e6602ba7 100644 (file)
@@ -685,7 +685,7 @@ PREFIX is only used internally: don't use it."
 (defun diff-unified->context (start end)
   "Convert unified diffs to context diffs.
 START and END are either taken from the region (if a prefix arg is given) or
-else cover the whole bufer."
+else cover the whole buffer."
   (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active))
                   (list (region-beginning) (region-end))
                 (list (point-min) (point-max))))
@@ -847,7 +847,7 @@ With a prefix argument, convert unified format to context format."
 (defun diff-reverse-direction (start end)
   "Reverse the direction of the diffs.
 START and END are either taken from the region (if a prefix arg is given) or
-else cover the whole bufer."
+else cover the whole buffer."
   (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active))
                   (list (region-beginning) (region-end))
                 (list (point-min) (point-max))))
@@ -909,7 +909,7 @@ else cover the whole bufer."
 (defun diff-fixup-modifs (start end)
   "Fixup the hunk headers (in case the buffer was modified).
 START and END are either taken from the region (if a prefix arg is given) or
-else cover the whole bufer."
+else cover the whole buffer."
   (interactive (if (or current-prefix-arg (and transient-mark-mode mark-active))
                   (list (region-beginning) (region-end))
                 (list (point-min) (point-max))))