OSDN Git Service

Add MATLAB syntax highlighting. (#1766) (2)
authorTakashi Sawanaka <sdottaka@users.sourceforge.net>
Sat, 18 Mar 2023 14:04:11 +0000 (23:04 +0900)
committerTakashi Sawanaka <sdottaka@users.sourceforge.net>
Sat, 18 Mar 2023 14:04:11 +0000 (23:04 +0900)
Docs/Users/Contributors.txt
Externals/crystaledit/editlib/parsers/matlab.cpp

index aa3652d..9320d13 100644 (file)
@@ -274,6 +274,7 @@ Other Contributors (code, ideas, testing..):
 * srgank
 * baka0815
 * Yurii Hordiienko 
+* wiera987
 
 WinMerge includes code from:
 * Jared Breland <jbreland@legroom.net> (Installer's modpath script)
index 20e89c6..e1d66a2 100644 (file)
@@ -59,10 +59,10 @@ static const tchar_t * s_apszMatlabKeywordList[] =
     _T("function_handle"),
     _T("global"),
     _T("if"),
-    _T("int8"),
     _T("int16"),
     _T("int32"),
     _T("int64"),
+    _T("int8"),
     _T("logical"),
     _T("methods"),
     _T("otherwise"),
@@ -78,10 +78,10 @@ static const tchar_t * s_apszMatlabKeywordList[] =
     _T("throw"),
     _T("timetable"),
     _T("try"),
-    _T("uint8"),
     _T("uint16"),
     _T("uint32"),
     _T("uint64"),
+    _T("uint8"),
     _T("while"),
   };