openbsd-ports/x11/aewm/patches/patch-lib_common_h
espie f9dbd10763 regen patches.
remove bogus token pasting "a" "b"  works, and those are separate tokens.
2004-01-01 15:10:59 +00:00

15 lines
489 B
Plaintext

$OpenBSD: patch-lib_common_h,v 1.1 2004/01/01 15:10:59 espie Exp $
--- lib/common.h.orig 2004-01-01 16:05:39.000000000 +0100
+++ lib/common.h 2004-01-01 16:05:50.000000000 +0100
@@ -7,8 +7,8 @@
#define BUF_SIZE 2048
#define ARG(longname, shortname, nargs) \
- ((strcmp(argv[i], "--"##longname) == 0 \
- || strcmp(argv[i], "-"##shortname) == 0) \
+ ((strcmp(argv[i], "--"longname) == 0 \
+ || strcmp(argv[i], "-"shortname) == 0) \
&& i + (nargs) < argc)
#endif /* AEWM_COMMON_H */