From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tom Tromey Newsgroups: gmane.emacs.devel Subject: Patch to fix a few typos Date: Mon, 06 Aug 2007 13:00:01 -0600 Message-ID: Reply-To: tromey@redhat.com NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1186427902 7977 80.91.229.12 (6 Aug 2007 19:18:22 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 6 Aug 2007 19:18:22 +0000 (UTC) To: Emacs Hackers Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Aug 06 21:18:18 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1II85m-00050i-J0 for ged-emacs-devel@m.gmane.org; Mon, 06 Aug 2007 21:18:18 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1II85j-0003eP-NH for ged-emacs-devel@m.gmane.org; Mon, 06 Aug 2007 15:18:11 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1II85g-0003eJ-OS for emacs-devel@gnu.org; Mon, 06 Aug 2007 15:18:08 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1II85c-0003d3-7Y for emacs-devel@gnu.org; Mon, 06 Aug 2007 15:18:08 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1II85c-0003cw-3w for emacs-devel@gnu.org; Mon, 06 Aug 2007 15:18:04 -0400 Original-Received: from mx1.redhat.com ([66.187.233.31]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1II85a-0005KY-65 for emacs-devel@gnu.org; Mon, 06 Aug 2007 15:18:03 -0400 Original-Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.1/8.13.1) with ESMTP id l76JHu8j014292 for ; Mon, 6 Aug 2007 15:17:56 -0400 Original-Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [10.11.255.20]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id l76JHuqS009532 for ; Mon, 6 Aug 2007 15:17:56 -0400 Original-Received: from opsy.redhat.com (ton.toronto.redhat.com [172.16.14.15]) by pobox.corp.redhat.com (8.13.1/8.13.1) with ESMTP id l76JHtve026270; Mon, 6 Aug 2007 15:17:55 -0400 Original-Received: by opsy.redhat.com (Postfix, from userid 500) id E02CB378253; Mon, 6 Aug 2007 13:00:01 -0600 (MDT) X-Attribution: Tom User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.990 (gnu/linux) X-Detected-Kernel: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:76105 Archived-At: This patch fixes a few typos I happened across. Tom 2007-08-06 Tom Tromey * diff-mode.el (diff-fixup-modifs): Fix typo (diff-reverse-direction): Likewise. (diff-unified->context): Likewise. Index: lisp/diff-mode.el =================================================================== RCS file: /sources/emacs/emacs/lisp/diff-mode.el,v retrieving revision 1.110 diff -u -r1.110 diff-mode.el --- lisp/diff-mode.el 3 Aug 2007 22:06:35 -0000 1.110 +++ lisp/diff-mode.el 6 Aug 2007 19:13:16 -0000 @@ -724,7 +724,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)))) @@ -907,7 +907,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)))) @@ -969,7 +969,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))))