emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/progmodes/asm-mode.el


From: Masatake YAMATO
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/asm-mode.el
Date: Wed, 25 Jun 2003 02:52:06 -0400

Index: emacs/lisp/progmodes/asm-mode.el
diff -c emacs/lisp/progmodes/asm-mode.el:1.26 
emacs/lisp/progmodes/asm-mode.el:1.27
*** emacs/lisp/progmodes/asm-mode.el:1.26       Wed Apr  2 11:44:32 2003
--- emacs/lisp/progmodes/asm-mode.el    Wed Jun 25 02:52:04 2003
***************
*** 83,90 ****
  (defconst asm-font-lock-keywords
   '(("^\\(\\(\\sw\\|\\s_\\)+\\)\\>:?[ \t]*\\(\\sw+\\(\\.\\sw+\\)*\\)?"
      (1 font-lock-function-name-face) (3 font-lock-keyword-face nil t))
!    ("^\\((\\sw+)\\)?\\s +\\(\\(\\sw\\|\\s_\\)+\\(\\.\\sw+\\)*\\)"
!     2 font-lock-keyword-face))
   "Additional expressions to highlight in Assembler mode.")
  
  ;;;###autoload
--- 83,96 ----
  (defconst asm-font-lock-keywords
   '(("^\\(\\(\\sw\\|\\s_\\)+\\)\\>:?[ \t]*\\(\\sw+\\(\\.\\sw+\\)*\\)?"
      (1 font-lock-function-name-face) (3 font-lock-keyword-face nil t))
!    ;; label started from ".".
!    ("^\\(\\.\\(\\sw\\|\\s_\\)+\\)\\>:"
!     1 font-lock-function-name-face)
!    ("^\\((\\sw+)\\)?\\s +\\(\\(\\.?\\sw\\|\\s_\\)+\\(\\.\\sw+\\)*\\)"
!     2 font-lock-keyword-face)
!    ;; directive started from ".".
!    ("^\\(\\.\\(\\sw\\|\\s_\\)+\\)\\>[^:]?"
!     1 font-lock-keyword-face))
   "Additional expressions to highlight in Assembler mode.")
  
  ;;;###autoload




reply via email to

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