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 typo Date: Sat, 05 Jan 2008 11:10:52 -0700 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: ger.gmane.org 1199558494 8724 80.91.229.12 (5 Jan 2008 18:41:34 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 5 Jan 2008 18:41:34 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jan 05 19:41:55 2008 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 1JBDxv-0007Y3-Qn for ged-emacs-devel@m.gmane.org; Sat, 05 Jan 2008 19:41:52 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JBDxZ-0007T3-Ar for ged-emacs-devel@m.gmane.org; Sat, 05 Jan 2008 13:41:29 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JBDxW-0007So-CL for emacs-devel@gnu.org; Sat, 05 Jan 2008 13:41:26 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JBDxV-0007SQ-0z for emacs-devel@gnu.org; Sat, 05 Jan 2008 13:41:26 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JBDxU-0007SJ-RL for emacs-devel@gnu.org; Sat, 05 Jan 2008 13:41:24 -0500 Original-Received: from mx1.redhat.com ([66.187.233.31]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JBDxU-00015r-FJ for emacs-devel@gnu.org; Sat, 05 Jan 2008 13:41:24 -0500 Original-Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id m05IfOmC012525 for ; Sat, 5 Jan 2008 13:41:24 -0500 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 m05IfN6q007869 for ; Sat, 5 Jan 2008 13:41:23 -0500 Original-Received: from opsy.redhat.com (ton.yyz.redhat.com [10.15.16.15]) by pobox.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m05IfNoq011853; Sat, 5 Jan 2008 13:41:23 -0500 Original-Received: by opsy.redhat.com (Postfix, from userid 500) id 24F5A508021; Sat, 5 Jan 2008 11:10:52 -0700 (MST) X-Attribution: Tom User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.990 (gnu/linux) X-Scanned-By: MIMEDefang 2.58 on 172.16.52.254 X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 3) 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:86210 Archived-At: I happened to find a typo in vc.el. Patch appended. Tom 2008-01-05 Tom Tromey * vc.el: Fix a typo. Index: vc.el =================================================================== RCS file: /sources/emacs/emacs/lisp/vc.el,v retrieving revision 1.505 diff -u -c -r1.505 vc.el cvs diff: conflicting specifications of output style *** vc.el 5 Jan 2008 05:25:13 -0000 1.505 --- vc.el 5 Jan 2008 18:40:40 -0000 *************** *** 160,166 **** ;; - dir-state (dir) ;; ;; If provided, this function is used to find the version control ! ;; state of as many files as possible in DIR, and all subdirecties ;; of DIR, in a fast way; it is used to avoid expensive indivitual ;; vc-state calls. The function should not return anything, but ;; rather store the files' states into the corresponding properties. --- 160,166 ---- ;; - dir-state (dir) ;; ;; If provided, this function is used to find the version control ! ;; state of as many files as possible in DIR, and all subdirectories ;; of DIR, in a fast way; it is used to avoid expensive indivitual ;; vc-state calls. The function should not return anything, but ;; rather store the files' states into the corresponding properties.