undid a fix. Actually, the fix was wrong
This commit is contained in:
parent
8ebc170ec0
commit
e98dffbb1d
1 changed files with 3 additions and 3 deletions
|
@ -307,10 +307,10 @@ do_define()
|
||||||
ch = skipspaces(ch); /* find first character of the text */
|
ch = skipspaces(ch); /* find first character of the text */
|
||||||
assert(ch != EOI);
|
assert(ch != EOI);
|
||||||
if (class(ch) == STNL) {
|
if (class(ch) == STNL) {
|
||||||
/* Treat `#define something' as `#define something "1"'
|
/* Treat `#define something' as `#define something ""'
|
||||||
*/
|
*/
|
||||||
repl_text = "1";
|
repl_text = "";
|
||||||
length = 1;
|
length = 0;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
PushBack();
|
PushBack();
|
||||||
|
|
Loading…
Add table
Reference in a new issue