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: Andreas Schwab
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/asm-mode.el
Date: Sun, 02 Feb 2003 12:34:19 -0500

Index: emacs/lisp/progmodes/asm-mode.el
diff -c emacs/lisp/progmodes/asm-mode.el:1.22 
emacs/lisp/progmodes/asm-mode.el:1.23
*** emacs/lisp/progmodes/asm-mode.el:1.22       Thu Jan 23 04:11:46 2003
--- emacs/lisp/progmodes/asm-mode.el    Sun Feb  2 12:34:19 2003
***************
*** 1,6 ****
  ;;; asm-mode.el --- mode for editing assembler code
  
! ;; Copyright (C) 1991 Free Software Foundation, Inc.
  
  ;; Author: Eric S. Raymond <address@hidden>
  ;; Maintainer: FSF
--- 1,6 ----
  ;;; asm-mode.el --- mode for editing assembler code
  
! ;; Copyright (C) 1991, 2003 Free Software Foundation, Inc.
  
  ;; Author: Eric S. Raymond <address@hidden>
  ;; Maintainer: FSF
***************
*** 80,88 ****
    )
  
  (defconst asm-font-lock-keywords
!  '(("^\\(\\(\\sw\\|\\s_\\)+\\)\\>:?[ \t]*\\(\\sw+\\(\\.[lLwWbBsS]\\)?\\)?"
      (1 font-lock-function-name-face) (3 font-lock-keyword-face nil t))
!    ("^\\s +\\(\\(\\sw\\|\\s_\\)+\\(\\.[lLwWbBsS]\\)?\\)" 1 
font-lock-keyword-face))
   "Additional expressions to highlight in Assembler mode.")
  
  (defvar asm-code-level-empty-comment-pattern nil)
--- 80,89 ----
    )
  
  (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.")
  
  (defvar asm-code-level-empty-comment-pattern nil)




reply via email to

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