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 [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/asm-mode.el [lexbind]
Date: Tue, 14 Oct 2003 19:30:23 -0400

Index: emacs/lisp/progmodes/asm-mode.el
diff -c emacs/lisp/progmodes/asm-mode.el:1.21.18.1 
emacs/lisp/progmodes/asm-mode.el:1.21.18.2
*** emacs/lisp/progmodes/asm-mode.el:1.21.18.1  Fri Apr  4 01:20:31 2003
--- emacs/lisp/progmodes/asm-mode.el    Tue Oct 14 19:30:15 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
***************
*** 232,235 ****
--- 238,242 ----
  
  (provide 'asm-mode)
  
+ ;;; arch-tag: 210e695f-f338-4376-8913-a4c5c72ac848
  ;;; asm-mode.el ends here




reply via email to

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