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: typo fix Date: Sun, 13 Jan 2008 11:38:37 -0700 Message-ID: Reply-To: Tom Tromey NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1200251531 15542 80.91.229.12 (13 Jan 2008 19:12:11 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 13 Jan 2008 19:12:11 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jan 13 20:12:34 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 1JE8G0-0001GQ-0W for ged-emacs-devel@m.gmane.org; Sun, 13 Jan 2008 20:12:32 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JE8Fb-000392-Jp for ged-emacs-devel@m.gmane.org; Sun, 13 Jan 2008 14:12:07 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JE8FY-00038g-5S for emacs-devel@gnu.org; Sun, 13 Jan 2008 14:12:04 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JE8FX-00038M-4v for emacs-devel@gnu.org; Sun, 13 Jan 2008 14:12:03 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JE8FX-00038J-01 for emacs-devel@gnu.org; Sun, 13 Jan 2008 14:12:03 -0500 Original-Received: from mx1.redhat.com ([66.187.233.31]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JE8FW-0006mq-TF for emacs-devel@gnu.org; Sun, 13 Jan 2008 14:12:03 -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 m0DJBvT2032155 for ; Sun, 13 Jan 2008 14:11:57 -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 m0DJBuLC010912 for ; Sun, 13 Jan 2008 14:11:56 -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 m0DJBuKw029608; Sun, 13 Jan 2008 14:11:56 -0500 Original-Received: by opsy.redhat.com (Postfix, from userid 500) id A7ECF37807C; Sun, 13 Jan 2008 11:38:37 -0700 (MST) X-Attribution: Tom 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:86845 Archived-At: I found a typo in lisp.h, patch appended. Tom Index: lisp.h =================================================================== RCS file: /sources/emacs/emacs/src/lisp.h,v retrieving revision 1.604 diff -u -c -r1.604 lisp.h cvs diff: conflicting specifications of output style *** lisp.h 8 Jan 2008 20:44:17 -0000 1.604 --- lisp.h 13 Jan 2008 19:11:17 -0000 *************** *** 1425,1431 **** All callers should assure that at least this size of memory is allocated at the place pointed by the second argument. ! Thers are 6 modifiers, each consumes 2 chars. The octal form of a character code consumes (1 + CHARACTERBITS / 3 + 1) chars (including backslash at the head). We need one more byte for string terminator `\0'. */ --- 1426,1432 ---- All callers should assure that at least this size of memory is allocated at the place pointed by the second argument. ! There are 6 modifiers, each consumes 2 chars. The octal form of a character code consumes (1 + CHARACTERBITS / 3 + 1) chars (including backslash at the head). We need one more byte for string terminator `\0'. */