diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2003-06-01 22:08:24 +0000 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2003-06-01 22:08:24 +0000 |
commit | 13a2eed50200d8922af0ff882295bcad0800c21a (patch) | |
tree | cdf34805824db5b121e4b85118e0dd3d616d6579 /misc | |
parent | e1cdb351bd5cb0a61800bf57b60e89db287d5574 (diff) | |
download | mdk-13a2eed50200d8922af0ff882295bcad0800c21a.tar.gz mdk-13a2eed50200d8922af0ff882295bcad0800c21a.tar.bz2 |
bug fix: a regex was missing a '-'
Diffstat (limited to 'misc')
-rw-r--r-- | misc/mixal-mode.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/misc/mixal-mode.el b/misc/mixal-mode.el index 1cb46e6..32ad41d 100644 --- a/misc/mixal-mode.el +++ b/misc/mixal-mode.el @@ -46,6 +46,8 @@ ;;; History: ;; Version 0.1: +;; Version 0.1.1: +;; 22/11/02: bugfix in fontlocking, needed to add a '-' to the regex. ;; 19/11/02: completed implementing mixal-describe-operation-code. ;; 13/11/02: implemented compile, mixal-run and mixal-debug. ;; 10/11/02: implemented font-locking and syntax table. @@ -120,7 +122,7 @@ value.") (,(regexp-opt mixal-assembly-pseudoinstructions 'words) . mixal-font-lock-assembly-pseudoinstruction-face) - ("^[A-Z0-9a-z]*[ \t]+[A-Z0-9a-z]+[ \t]+[A-Z0-9a-z,():]*[\t]+\\(.*\\)$" + ("^[A-Z0-9a-z]*[ \t]+[A-Z0-9a-z]+[ \t]+[\\-A-Z0-9a-z,():]*[\t]+\\(.*\\)$" (1 font-lock-comment-face))) "Keyword highlighting specification for `mixal-mode'.") ; (makunbound 'mixal-font-lock-keywords) |