removed wrong assertion
This commit is contained in:
parent
dd67502468
commit
f06b39f112
|
@ -17,6 +17,7 @@
|
||||||
#include "parbufsize.h"
|
#include "parbufsize.h"
|
||||||
#include "textsize.h"
|
#include "textsize.h"
|
||||||
#include "idfsize.h"
|
#include "idfsize.h"
|
||||||
|
#include "debug.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <alloc.h>
|
#include <alloc.h>
|
||||||
#include "class.h"
|
#include "class.h"
|
||||||
|
|
|
@ -5,6 +5,8 @@
|
||||||
/* $Header$ */
|
/* $Header$ */
|
||||||
/* MAIN PROGRAM */
|
/* MAIN PROGRAM */
|
||||||
|
|
||||||
|
#include "debug.h"
|
||||||
|
|
||||||
#include <alloc.h>
|
#include <alloc.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <system.h>
|
#include <system.h>
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#include "arith.h"
|
#include "arith.h"
|
||||||
#include "LLlex.h"
|
#include "LLlex.h"
|
||||||
#include "class.h"
|
#include "class.h"
|
||||||
|
#include "debug.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include "macbuf.h"
|
#include "macbuf.h"
|
||||||
#include "replace.h"
|
#include "replace.h"
|
||||||
|
@ -194,7 +195,6 @@ expand_defined(repl)
|
||||||
id = findidf(str);
|
id = findidf(str);
|
||||||
free(str);
|
free(str);
|
||||||
} else id = 0;
|
} else id = 0;
|
||||||
assert(id || class(ch) == STELL);
|
|
||||||
ch = GetChar();
|
ch = GetChar();
|
||||||
ch = skipspaces(ch, 0);
|
ch = skipspaces(ch, 0);
|
||||||
if (parens && ch != ')') error(") missing");
|
if (parens && ch != ')') error(") missing");
|
||||||
|
|
Loading…
Reference in a new issue