mirror of
https://github.com/ZDoom/acc.git
synced 2024-11-22 20:11:36 +00:00
- Bump ACC to 1.49.
- Fixed: ACC did not accept '\\' as a valid character escape sequence. SVN r2159 (trunk)
This commit is contained in:
parent
b4097c81ec
commit
78d4936647
3 changed files with 4 additions and 3 deletions
4
Makefile
4
Makefile
|
@ -18,7 +18,7 @@ endif
|
|||
|
||||
CFLAGS = -Os -Wall -W -fomit-frame-pointer
|
||||
LDFLAGS = -s
|
||||
VERNUM = 148
|
||||
VERNUM = 149
|
||||
|
||||
OBJS = \
|
||||
acc.o \
|
||||
|
@ -143,4 +143,4 @@ zipbin: $(EXENAME) $(ACS)
|
|||
kzip /y acc$(VERNUM).zip $(EXENAME) $(ACS)
|
||||
|
||||
zipwbin: Release/acc.exe $(ACS)
|
||||
kzip /y acc$(VERNUM)win.zip acc.exe $(ACS)
|
||||
kzip /y acc$(VERNUM)win.zip Release/acc.exe $(ACS)
|
||||
|
|
2
acc.c
2
acc.c
|
@ -22,7 +22,7 @@
|
|||
|
||||
// MACROS ------------------------------------------------------------------
|
||||
|
||||
#define VERSION_TEXT "1.48"
|
||||
#define VERSION_TEXT "1.49"
|
||||
#define COPYRIGHT_YEARS_TEXT "1995"
|
||||
|
||||
// TYPES -------------------------------------------------------------------
|
||||
|
|
1
token.c
1
token.c
|
@ -1379,6 +1379,7 @@ static void ProcessSpecialToken(void)
|
|||
tk_Number = '\r';
|
||||
break;
|
||||
case '\'':
|
||||
case '\\':
|
||||
tk_Number = Chr;
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue