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: Sat, 26 Nov 2016 11:01:55 +0000 (UTC)

CVSROOT:        /sources/qemacs
Module name:    qemacs
Changes by:     Charlie Gordon <chqrlie>        16/11/26 11:01:55

Modified files:
        .              : clang.c 

Log message:
        add virgil language colorizer

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

Patches:
Index: clang.c
===================================================================
RCS file: /sources/qemacs/qemacs/clang.c,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -b -r1.107 -r1.108
--- clang.c     15 Jul 2016 14:49:03 -0000      1.107
+++ clang.c     26 Nov 2016 11:01:55 -0000      1.108
@@ -67,6 +67,7 @@
     CLANG_SWIFT,
     CLANG_ICON,
     CLANG_GROOVY,
+    CLANG_VIRGIL,
     CLANG_FLAVOR = 0x3F,
 };
 
@@ -1255,7 +1256,7 @@
 ModeDef cpp_mode = {
     .name = "C++",
     .mode_name = "cpp",
-    .extensions = "cc|hh|cpp|hpp|cxx|hxx|CPP|CC|c++",
+    .extensions = "cc|hh|cpp|hpp|cxx|hxx|CPP|CC|c++|lzz",
     .mode_probe = cpp_mode_probe,
     .colorize_func = c_colorize_line,
     .colorize_flags = CLANG_CPP | CLANG_CC,
@@ -2450,6 +2451,7 @@
 #include "swift.c"
 #include "icon.c"
 #include "groovy.c"
+#include "virgil.c"
 
 /*---------------- Common initialization code ----------------*/
 
@@ -2509,6 +2511,7 @@
     swift_init();
     icon_init();
     groovy_init();
+    virgil_init();
 
     return 0;
 }



reply via email to

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