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 | f0e92b575f675ee8fb09b7fdb56cc27e8a5bdd21 (patch) | |
tree | fdb7bb1ff6d180574e9db4f1bd497501701d6847 /llvm/utils/emacs | |
parent | 1d647ae6007cd0e184f89a8f3712b20bbb185d06 (diff) | |
download | bcm5719-llvm-f0e92b575f675ee8fb09b7fdb56cc27e8a5bdd21.tar.gz bcm5719-llvm-f0e92b575f675ee8fb09b7fdb56cc27e8a5bdd21.zip |
Add missing keyword, add new linkage keywords
llvm-svn: 5785
Diffstat (limited to 'llvm/utils/emacs')
-rw-r--r-- | llvm/utils/emacs/llvm-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/emacs/llvm-mode.el b/llvm/utils/emacs/llvm-mode.el index 9cea4165e2c..1cc638d14b6 100644 --- a/llvm/utils/emacs/llvm-mode.el +++ b/llvm/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 |