[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[tyndur-devel] [PATCH 1/4] kedit: Syntaxhighlighting: const
+ kedit: const gehoert auch zu einem Typen dazu
Signed-off-by: Kevin Wolf <kevin@xxxxxxxxxx>
---
src/modules/pas/kedit/syntax.pas | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/modules/pas/kedit/syntax.pas b/src/modules/pas/kedit/syntax.pas
index a8043e5..bef4df3 100644
--- a/src/modules/pas/kedit/syntax.pas
+++ b/src/modules/pas/kedit/syntax.pas
@@ -47,9 +47,9 @@ const
'if', 'else', 'for', 'while', 'do', 'switch', 'case', 'default', 'goto',
'break', 'continue', 'return', 'sizeof', 'typedef', 'asm'
);
- Types_C: Array [1..16] of String = (
+ Types_C: Array [1..17] of String = (
'void', 'char', 'short', 'int', 'long', 'signed', 'unsigned', 'float', 'double',
- 'static', 'inline', 'extern', 'enum', 'struct', 'union', 'volatile'
+ 'static', 'inline', 'extern', 'enum', 'struct', 'union', 'volatile', 'const'
);
--
1.6.0.2