diff --git a/Makefile b/Makefile index 8455f61..ac9b931 100644 --- a/Makefile +++ b/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) diff --git a/acc.c b/acc.c index 4349f25..7fd63f2 100644 --- a/acc.c +++ b/acc.c @@ -22,7 +22,7 @@ // MACROS ------------------------------------------------------------------ -#define VERSION_TEXT "1.48" +#define VERSION_TEXT "1.49" #define COPYRIGHT_YEARS_TEXT "1995" // TYPES ------------------------------------------------------------------- diff --git a/token.c b/token.c index 2192e8a..d949b79 100644 --- a/token.c +++ b/token.c @@ -1379,6 +1379,7 @@ static void ProcessSpecialToken(void) tk_Number = '\r'; break; case '\'': + case '\\': tk_Number = Chr; break; default: