diff options
author | Chris Lattner <sabre@nondot.org> | 2003-04-16 20:26:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-04-16 20:26:11 +0000 |
commit | 2c72b184b86152d4c9e00731d9257240f39ce20b (patch) | |
tree | 1d0e23fa71f58c2a55dff42187f257b376f6fa02 /utils/emacs/llvm-mode.el | |
parent | 828b278d8006dadb534f8e90188ac86a4901d01f (diff) | |
download | external_llvm-2c72b184b86152d4c9e00731d9257240f39ce20b.zip external_llvm-2c72b184b86152d4c9e00731d9257240f39ce20b.tar.gz external_llvm-2c72b184b86152d4c9e00731d9257240f39ce20b.tar.bz2 |
Add missing keyword, add new linkage keywords
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5785 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/emacs/llvm-mode.el')
-rw-r--r-- | utils/emacs/llvm-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/emacs/llvm-mode.el b/utils/emacs/llvm-mode.el index 9cea416..1cc638d 100644 --- a/utils/emacs/llvm-mode.el +++ b/utils/emacs/llvm-mode.el @@ -28,7 +28,7 @@ ;; Hex constants '("0x[0-9A-Fa-f]+" . font-lock-preprocessor-face) ;; Keywords - '("begin\\|end\\|true\\|false\\|declare\\|global\\|constant\\|const\\|internal\\|implementation\\|\\.\\.\\.\\|null\\|to\\|except\\|not" . font-lock-keyword-face) + '("begin\\|end\\|true\\|false\\|declare\\|global\\|constant\\|const\\|internal\\|linkonce\\|appending\\|uninitialized\\|implementation\\|\\.\\.\\.\\|null\\|to\\|except\\|not" . font-lock-keyword-face) ;; Types '("void\\|bool\\|sbyte\\|ubyte\\|u?short\\|u?int\\|u?long\\|float\\|double\\|type\\|label\\|opaque" . font-lock-type-face) ;; Arithmetic and Logical Operators |