From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Bill Farmer Newsgroups: gmane.emacs.bugs Subject: awk-mode missing 'do' keyword Date: Fri, 26 Jan 2007 13:33:53 +0000 Message-ID: <45BA0341.80801@tiscali.co.uk> Reply-To: williamjfarmer@tiscali.co.uk NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1169847323 27835 80.91.229.12 (26 Jan 2007 21:35:23 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 26 Jan 2007 21:35:23 +0000 (UTC) To: bug-gnu-emacs@gnu.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Fri Jan 26 22:35:20 2007 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HAYj7-00050X-KK for geb-bug-gnu-emacs@m.gmane.org; Fri, 26 Jan 2007 22:35:17 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HAYj7-0007VS-2X for geb-bug-gnu-emacs@m.gmane.org; Fri, 26 Jan 2007 16:35:17 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HARLs-0004Rl-GP for bug-gnu-emacs@gnu.org; Fri, 26 Jan 2007 08:42:48 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HARLq-0004RE-55 for bug-gnu-emacs@gnu.org; Fri, 26 Jan 2007 08:42:48 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HARLp-0004RB-UA for bug-gnu-emacs@gnu.org; Fri, 26 Jan 2007 08:42:45 -0500 Original-Received: from mk-smarthost-1.mail.uk.tiscali.com ([212.74.114.37]) by monty-python.gnu.org with esmtp (Exim 4.52) id 1HARLp-0007u1-8M for bug-gnu-emacs@gnu.org; Fri, 26 Jan 2007 08:42:45 -0500 Original-Received: from mk-smarthost-3.mail.uk.tiscali.com ([212.74.114.39]) by mk-smarthost-1.mail.uk.tiscali.com with ESMTP; 26 Jan 2007 13:32:13 +0000 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAImTuUXUSnInk2dsb2JhbACOQgEBAgcOBwUe Original-Received: from 80-42-74-14.dynamic.dsl.as9105.com ([80.42.74.14]:1292) by mk-smarthost-3.mail.uk.tiscali.com with esmtp (Exim 4.30) id 1HARBb-0009yo-RV for bug-gnu-emacs@gnu.org; Fri, 26 Jan 2007 13:32:11 +0000 User-Agent: Thunderbird 1.5.0.9 (Windows/20061207) X-detected-kernel: FreeBSD 2.0-4.2 X-Mailman-Approved-At: Fri, 26 Jan 2007 16:35:05 -0500 X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:15554 Archived-At: This bug report will be sent to the Free Software Foundation, not to your local site managers! Please write in English, because the Emacs maintainers do not have translators to read other languages for them. Your bug report will be posted to the bug-gnu-emacs@gnu.org mailing list, and to the gnu.emacs.bug news group. In GNU Emacs 21.3.1 (i386-mingw-nt5.1.2600) of 2004-03-10 on NYAUMO configured using `configure --with-gcc (3.2)' Important settings: value of $LC_ALL: nil value of $LC_COLLATE: nil value of $LC_CTYPE: nil value of $LC_MESSAGES: nil value of $LC_MONETARY: nil value of $LC_NUMERIC: nil value of $LC_TIME: nil value of $LANG: ENG locale-coding-system: iso-latin-1 default-enable-multibyte-characters: t Please describe exactly what actions triggered the bug and the precise symptoms of the bug: Awk mode does not highlight 'do' keyword because it is missing in the relevant table in awk-mode.el. Context diff follows: diff -c emacs-21.3/lisp/progmodes/awk-mode.el~ emacs-21.3/lisp/progmodes/awk-mode.el *** emacs-21.3/lisp/progmodes/awk-mode.el~ 2000-11-05 19:13:18.000000000 +0000 --- emacs-21.3/lisp/progmodes/awk-mode.el 2007-01-26 10:45:51.193513600 +0000 *************** *** 70,76 **** ;; ;; Keywords. (regexp-opt ! '("BEGIN" "END" "break" "continue" "delete" "exit" "else" "for" "getline" "if" "next" "print" "printf" "return" "while") 'words) ;; ;; Builtins. --- 70,76 ---- ;; ;; Keywords. (regexp-opt ! '("BEGIN" "END" "break" "continue" "delete" "do" "exit" "else" "for" "getline" "if" "next" "print" "printf" "return" "while") 'words) ;; ;; Builtins. Regards Bill