Skip to content

Commit

Permalink
Added Ada parser and default file associations (WinMerge#2452) (2)
Browse files Browse the repository at this point in the history
- sort keywords
- add Ada to StringBlacklist.txt
  • Loading branch information
sdottaka committed Sep 28, 2024
1 parent f9272c0 commit 0df0ce8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Externals/crystaledit/editlib/parsers/ada.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ static const tchar_t * s_apszAdaAttributeList[] =
_T ("'emax"),
_T ("'enum_Rep"),
_T ("'enum_Val"),
_T ("'epsilon"),
_T ("'exponent"),
_T ("'external_Tag"),
_T ("'epsilon"),
_T ("'first"),
_T ("'first_Bit"),
_T ("'floor"),
Expand Down Expand Up @@ -223,20 +223,20 @@ static const tchar_t * s_apszAdaAttributeList[] =
static const tchar_t * s_apszAdaTypeList[] =
{
_T ("boolean"),
_T ("duration")
_T ("float"),
_T ("integer"),
_T ("natural"),
_T ("positive"),
_T ("short_short_integer"),
_T ("short_integer"),
_T ("long_float"),
_T ("long_integer"),
_T ("long_long_float"),
_T ("long_long_integer"),
_T ("natural"),
_T ("positive"),
_T ("short_float"),
_T ("float"),
_T ("long_float"),
_T ("long_long_float"),
_T ("short_integer"),
_T ("short_short_integer"),
_T ("string"),
_T ("wide_string"),
_T ("duration")
};

static bool
Expand Down
1 change: 1 addition & 0 deletions Translations/WinMerge/StringBlacklist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Java
JavaScript
JSON
Lua
Ada
AutoLISP
MATLAB
NSIS
Expand Down

0 comments on commit 0df0ce8

Please sign in to comment.