polish `PARSECALL' macro

checked for object file invariance
This commit is contained in:
rlar 2013-07-14 15:06:47 +02:00
parent 31ff2ee073
commit 4473419cb8
1 changed files with 5 additions and 2 deletions

View File

@ -44,5 +44,8 @@ Copyright 1990 Regents of the University of California. All rights reserved.
/* and now a special one for calling INPdevParse which returns an
* already concatenated list of error messages or NUL
*/
#define PARSECALL(args)\
current->error = INPerrCat(current->error,INPdevParse args );
#define PARSECALL(args) \
do { \
current->error = INPerrCat(current->error, INPdevParse args); \
} while(0)