Skip to content

Commit 80c6e4d

Browse files
author
Stefan
committed
Added literals
1 parent 0cb70a7 commit 80c6e4d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

basic.h

100755100644
+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
*
3-
* $Id: basic.h,v 1.11 2023/02/18 20:16:59 stefan Exp stefan $
3+
* $Id: basic.h,v 1.12 2023/03/25 08:09:07 stefan Exp stefan $
44
*
55
* Stefan's basic interpreter
66
*
@@ -884,6 +884,8 @@ static long lastlongyield=0;
884884
/* formaters lastouttoken and spaceafterkeyword to make a nice LIST */
885885
static mem_t lastouttoken;
886886
static mem_t spaceafterkeyword;
887+
static mem_t outliteral = 0;
888+
static mem_t lexliteral = 0;
887889

888890
/*
889891
* the cache for the heap search - helps the string code
@@ -1111,7 +1113,7 @@ void removefile(char*);
11111113
void formatdisk(short);
11121114

11131115
/* low level serial code */
1114-
#if !defined(ARDUINO) && ( !defined(MSDOS) || defined(MINGW) )
1116+
#if !defined(ARDUINO) && ( defined(MSDOS) || defined(MINGW) )
11151117
typedef unsigned int uint32_t;
11161118
#endif
11171119
void picogetchar(char);

0 commit comments

Comments
 (0)