qemacs-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemacs-commit] qemacs clang.c


From: Charlie Gordon
Subject: [Qemacs-commit] qemacs clang.c
Date: Mon, 08 Jun 2015 07:32:41 +0000

CVSROOT:        /sources/qemacs
Module name:    qemacs
Changes by:     Charlie Gordon <chqrlie>        15/06/08 07:32:41

Modified files:
        .              : clang.c 

Log message:
        updated list of java keywords

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemacs/clang.c?cvsroot=qemacs&r1=1.84&r2=1.85

Patches:
Index: clang.c
===================================================================
RCS file: /sources/qemacs/qemacs/clang.c,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -b -r1.84 -r1.85
--- clang.c     8 Jun 2015 07:30:00 -0000       1.84
+++ clang.c     8 Jun 2015 07:32:40 -0000       1.85
@@ -130,13 +130,18 @@
 };
 
 static const char java_keywords[] = {
-    "abstract|assert|break|case|catch|class|const|continue|"
-    "default|do|else|extends|false|final|finally|for|function|"
-    "if|implements|import|in|instanceof|interface|native|new|null|"
+    /* language keywords */
+    "abstract|assert||break|case|catch|class|const|continue|"
+    "default|do|else|enum|extends|final|finally|for|goto|"
+    "if|implements|import|instanceof|interface|native|new|"
     "package|private|protected|public|return|"
-    "static|super|switch|synchronized|"
-    "this|throw|throws|transient|true|try|var|while|with|"
+    "static|strictfp|super|switch|synchronized|"
+    "this|throw|throws|transient|try|volatile|while|"
+    /* boolean and null literals */
+    "false|null|true|"
+    /* other stuff */
     "@Override|@SuppressWarnings|@Deprecated|"
+    //"function|in|instanceof|var|with|"
 };
 
 static const char java_types[] = {



reply via email to

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