From owner-cvs-src@FreeBSD.ORG Mon Feb 9 05:13:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CB3F16A4CE; Mon, 9 Feb 2004 05:13:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E990443D1D; Mon, 9 Feb 2004 05:13:03 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i19DD30B015519; Mon, 9 Feb 2004 05:13:03 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i19DD3GC015518; Mon, 9 Feb 2004 05:13:03 -0800 (PST) (envelope-from bde) Message-Id: <200402091313.i19DD3GC015518@repoman.freebsd.org> From: Bruce Evans Date: Mon, 9 Feb 2004 05:13:03 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/indent lexi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2004 13:13:04 -0000 bde 2004/02/09 05:13:03 PST FreeBSD src repository Modified files: usr.bin/indent lexi.c Log: Expanded the size of the keyword table from 100 to 1000 entries so that the number of typedef-names is not so limited. Same as in rev.1.4. Added the "const" and "volatile" to the keyword table. Rev.1.4 added these but they were misclassified so they were not formatted as types. indent still doesn't really understand them. E.g., it mangles "char * const *foo" and "char *const *foo". This change mainly stops it mangling "char const foo" to "charconst foo". Revision Changes Path 1.17 +3 -1 src/usr.bin/indent/lexi.c