mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-06 16:34:45 +00:00
warning: macro argument should be enclosed in parentheses [bugprone-macro-parentheses] (#374)
Except where the expansion would be syntactically invalid, for example "goto macroarg;" detection of which is a bug in clang-tidy, so warn it off with a NOLINT...(bugprone-macro-parentheses)
This commit is contained in:
@@ -67,12 +67,12 @@
|
||||
|
||||
/* Error return values from VMEMSAVE */
|
||||
#define COMPLETESYSOUT NIL
|
||||
#define BADFILENAME S_POSITIVE | 1
|
||||
#define NOFILESPACE S_POSITIVE | 2
|
||||
#define FILECANNOTOPEN S_POSITIVE | 3
|
||||
#define FILECANNOTSEEK S_POSITIVE | 4
|
||||
#define FILECANNOTWRITE S_POSITIVE | 5
|
||||
#define FILETIMEOUT S_POSITIVE | 6
|
||||
#define BADFILENAME (S_POSITIVE | 1)
|
||||
#define NOFILESPACE (S_POSITIVE | 2)
|
||||
#define FILECANNOTOPEN (S_POSITIVE | 3)
|
||||
#define FILECANNOTSEEK (S_POSITIVE | 4)
|
||||
#define FILECANNOTWRITE (S_POSITIVE | 5)
|
||||
#define FILETIMEOUT (S_POSITIVE | 6)
|
||||
|
||||
extern int LispWindowFd;
|
||||
extern struct pixrect *CursorBitMap, *InvisibleCursorBitMap;
|
||||
|
||||
Reference in New Issue
Block a user