1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-02-06 01:08:25 +01:00

Char now has the right KEYWORD

Before, char was assigned as a structure to **KEYWORD3**. It is not a structure so I assigned it to **LITERAL2** since it is a constant. 

Also renamed the DecrementCompound to its appropriate name.
This commit is contained in:
Michael Braverman 2015-04-04 01:01:14 -04:00
parent ae6a5d887d
commit 681cdb9faf

View File

@ -30,6 +30,7 @@ INTERNAL2V56 LITERAL2 AnalogReference
boolean LITERAL2 BooleanVariables boolean LITERAL2 BooleanVariables
byte LITERAL2 Byte byte LITERAL2 Byte
char LITERAL2 Char
const LITERAL2 Const const LITERAL2 Const
false LITERAL2 Constants false LITERAL2 Constants
float LITERAL2 Float float LITERAL2 Float
@ -169,7 +170,6 @@ isPressed KEYWORD2
break KEYWORD3 Break break KEYWORD3 Break
case KEYWORD3 SwitchCase case KEYWORD3 SwitchCase
char KEYWORD3 Char
class KEYWORD3 class KEYWORD3
continue KEYWORD3 Continue continue KEYWORD3 Continue
default KEYWORD3 SwitchCase default KEYWORD3 SwitchCase
@ -224,4 +224,4 @@ loop KEYWORD3 Loop
() parentheses () parentheses
>> Bitshift >> Bitshift
; SemiColon ; SemiColon
-= IncrementCompound -= DecrementCompound