From d4783d9c06d68df9d6f0cf1ccc4d5e892a53214d Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Tue, 15 Dec 2015 19:15:23 +0000 Subject: [PATCH] el/dot-emacs.el (mdw-fontify-c-and-c++): C9X become C99. Organization: Straylight/Edgeware From: Mark Wooding So say so in the commentary. No code change. --- el/dot-emacs.el | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/el/dot-emacs.el b/el/dot-emacs.el index 4da0a4e..0719c0a 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -1339,13 +1339,13 @@ (defun mdw-fontify-c-and-c++ () "auto" ;K&R, C89 "bitand" ;C++ "bitor" ;C++ - "bool" ;C++, C9X macro + "bool" ;C++, C99 macro "break" ;K&R, C89 "case" ;K&R, C89 "catch" ;C++ "char" ;K&R, C89 "class" ;C++ - "complex" ;C9X macro, C++ template type + "complex" ;C99 macro, C++ template type "compl" ;C++ "const" ;C89 "const_cast" ;C++ @@ -1368,8 +1368,8 @@ (defun mdw-fontify-c-and-c++ () "friend" ;C++ "goto" ;K&R, C89 "if" ;K&R, C89 - "imaginary" ;C9X macro - "inline" ;C++, C9X, GCC + "imaginary" ;C99 macro + "inline" ;C++, C99, GCC "int" ;K&R, C89 "long" ;K&R, C89 "mutable" ;C++ @@ -1383,7 +1383,7 @@ (defun mdw-fontify-c-and-c++ () "public" ;C++ "register" ;K&R, C89 "reinterpret_cast" ;C++ - "restrict" ;C9X + "restrict" ;C99 "return" ;K&R, C89 "short" ;K&R, C89 "signed" ;C89 @@ -1410,10 +1410,10 @@ (defun mdw-fontify-c-and-c++ () "while" ;K&R, C89 "xor" ;C++ "xor_eq" ;C++ - "_Bool" ;C9X - "_Complex" ;C9X - "_Imaginary" ;C9X - "_Pragma" ;C9X preprocessor + "_Bool" ;C99 + "_Complex" ;C99 + "_Imaginary" ;C99 + "_Pragma" ;C99 preprocessor "__alignof__" ;GCC "__asm__" ;GCC "__attribute__" ;GCC -- [mdw]