From: solar <> Date: Fri, 2 Dec 2005 10:52:00 +0000 (+0000) Subject: Some non-7-bit chars have crept in. Fixed. X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=commitdiff_plain;h=862146e3de6683c0dcb24b03e9644ac9cd8dda76 Some non-7-bit chars have crept in. Fixed. --- diff --git a/includes/iso646.h b/includes/iso646.h index 48ca809..ed6dce2 100644 --- a/includes/iso646.h +++ b/includes/iso646.h @@ -15,13 +15,13 @@ #define and_eq &= #define bitand & #define bitor | -#define compl ˜ +#define compl ~ #define not ! #define not_eq != #define or || #define or_eq |= -#define xor ˆ -#define xor_eq ˆ= +#define xor ^ +#define xor_eq ^= #endif