From: Simon Marshall Date: Mon, 15 Mar 1999 15:20:56 +0000 (+0000) Subject: (c-font-lock-keywords-2): Added "restrict" keyword. X-Git-Tag: emacs-20.4~461 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=336911a14c7d518b789a08b24b492f1f949abd94;p=emacs.git (c-font-lock-keywords-2): Added "restrict" keyword. --- diff --git a/lisp/font-lock.el b/lisp/font-lock.el index 7801a55d07a..a473730b3a3 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -2243,7 +2243,9 @@ See also `c-font-lock-extra-types'.") "switch" "while" "sizeof" ;; Type related, but we don't do anything special. "typedef" "extern" "auto" "register" "static" - "volatile" "const") t))) + "volatile" "const" + ;; Dan Nicolaescu says this is new. + "restrict") t))) (c-type-specs (eval-when-compile (regexp-opt '("enum" "struct" "union") t)))