ref: 92b775b3ecc1a67223b7f639abe1f676534e81c1
parent: ffee7780fe08fa77f662a0903477545d9e26334f
parent: 7b245a02668dcb9f9677b36f5745cfd07cc216bd
author: Arnold D. Robbins <arnold@skeeve.com>
date: Fri Feb 28 08:24:19 EST 2020
Merge branch 'master' into staging
--- a/lex.c
+++ b/lex.c
@@ -30,7 +30,7 @@
#include "ytab.h"
extern YYSTYPE yylval;
-extern int infunc;
+extern bool infunc;
int lineno = 1;
int bracecnt = 0;
--- a/makefile
+++ b/makefile
@@ -22,6 +22,7 @@
# THIS SOFTWARE.
# ****************************************************************/
+CFLAGS = -fsanitize=address -O1 -g -fno-omit-frame-pointer -fno-optimize-sibling-calls
CFLAGS = -g
CFLAGS =
CFLAGS = -O2
--
⑨