changeset 78429:a3a4480349cb

(diff-unified->context, diff-reverse-direction, diff-fixup-modifs): Typo in docstring.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 06 Aug 2007 20:08:08 +0000
parents 65b1a3eb58c4
children ba1168feacdd
files lisp/ChangeLog lisp/diff-mode.el
diffstat 2 files changed, 6 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Mon Aug 06 17:23:03 2007 +0000
+++ b/lisp/ChangeLog	Mon Aug 06 20:08:08 2007 +0000
@@ -1,5 +1,8 @@
 2007-08-06  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+	* diff-mode.el (diff-unified->context, diff-reverse-direction)
+	(diff-fixup-modifs): Typo in docstring.
+
 	* emulation/tpu-edt.el (tpu-current-line): Use posn-at-point and
 	count-screen-lines.
 	(tpu-edt-off): Disable relevant pieces of advice.
--- a/lisp/diff-mode.el	Mon Aug 06 17:23:03 2007 +0000
+++ b/lisp/diff-mode.el	Mon Aug 06 20:08:08 2007 +0000
@@ -685,7 +685,7 @@
 (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 @@
 (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 @@
 (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))))