/[emacs]/emacs/lisp/progmodes/asm-mode.el
ViewVC logotype

Diff of /emacs/lisp/progmodes/asm-mode.el

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.26 by monnier, Wed Apr 2 16:44:32 2003 UTC revision 1.27 by jet, Wed Jun 25 06:52:04 2003 UTC
# Line 83  Line 83 
83  (defconst asm-font-lock-keywords  (defconst asm-font-lock-keywords
84   '(("^\\(\\(\\sw\\|\\s_\\)+\\)\\>:?[ \t]*\\(\\sw+\\(\\.\\sw+\\)*\\)?"   '(("^\\(\\(\\sw\\|\\s_\\)+\\)\\>:?[ \t]*\\(\\sw+\\(\\.\\sw+\\)*\\)?"
85      (1 font-lock-function-name-face) (3 font-lock-keyword-face nil t))      (1 font-lock-function-name-face) (3 font-lock-keyword-face nil t))
86     ("^\\((\\sw+)\\)?\\s +\\(\\(\\sw\\|\\s_\\)+\\(\\.\\sw+\\)*\\)"     ;; label started from ".".
87      2 font-lock-keyword-face))     ("^\\(\\.\\(\\sw\\|\\s_\\)+\\)\\>:"
88        1 font-lock-function-name-face)
89       ("^\\((\\sw+)\\)?\\s +\\(\\(\\.?\\sw\\|\\s_\\)+\\(\\.\\sw+\\)*\\)"
90        2 font-lock-keyword-face)
91       ;; directive started from ".".
92       ("^\\(\\.\\(\\sw\\|\\s_\\)+\\)\\>[^:]?"
93        1 font-lock-keyword-face))
94   "Additional expressions to highlight in Assembler mode.")   "Additional expressions to highlight in Assembler mode.")
95    
96  ;;;###autoload  ;;;###autoload

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26