bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

awk-mode missing 'do' keyword


From: Bill Farmer
Subject: awk-mode missing 'do' keyword
Date: Fri, 26 Jan 2007 13:33:53 +0000
User-agent: Thunderbird 1.5.0.9 (Windows/20061207)

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]