--- gforth/gforth.el 2000/04/12 20:53:46 1.40 +++ gforth/gforth.el 2000/09/23 15:06:00 1.43 @@ -1,6 +1,6 @@ ;; Forth mode for Emacs -;; Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc. +;; Copyright (C) 1995,1996,1997,1998,2000 Free Software Foundation, Inc. ;; This file is part of Gforth. @@ -1000,13 +1000,12 @@ The region is sent terminated by a newli '(forth-mode) (append '(("\\\\ \\(.*\\)$" nil comment)) ; comments - '(("( [^)\n]* -- [^)\n]* )" nil decl)) - '(("( -- [^)\n]* )" nil decl)) - '(("( [^)\n]* -- )" nil decl)) - '(("( -- )" nil decl)) + '(("\\\\[gG] \\(.*\\)$" nil comment)) ; comments + '(("(\\( [^)\n]* \\| \\)--\\( [^)\n]* \\| \\))" nil decl)) '(("( " ")" comment)) '(("\" [^\"\n]*\"" nil string)) - '(("\\(\\[IF]\\|\\[IFDEF]\\|\\[IFUNDEF]\\|\\[ELSE]\\|\\[THEN]\\|IF\\|ELSE\\|THEN\\|BEGIN\\|WHILE\\|REPEAT\\|UNTIL\\|DOES>\\|?DO\\|DO\\|\+LOOP\\|LOOP\\)" nil keyword)) + '(("\\(\\[IF]\\|\\[IFDEF]\\|\\[IFUNDEF]\\|\\[ELSE]\\|\\[THEN]\\|IF\\|ELSE\\|THEN\\|CASE\\|ENDCASE\\|OF\\|ENDOF\\|BEGIN\\|WHILE\\|REPEAT\\|UNTIL\\|AGAIN\\|DOES>\\|?DO\\|DO\\|\+LOOP\\|UNLOOP\\|LOOP\\|EXIT\\)" nil keyword)) + '(("\\(\\[if]\\|\\[ifdef]\\|\\[ifundef]\\|\\[else]\\|\\[then]\\|if\\|else\\|then\\|case\\|endcase\\|of\\|endof\\|begin\\|while\\|repeat\\|until\\|again\\|does>\\|?do\\|do\\|\+loop\\|unloop\\|loop\\|exit\\)" nil keyword)) '((": *[^ \n]*" nil defun)) '(("Defer *[^ \n]*" nil defun)) '(("\\(Variable\\|Constant\\|Value\\|Create\\) *[^ \n]*" nil define))