From 723fad10e45df609e65356a00555ed2f929ecf2e Mon Sep 17 00:00:00 2001 From: Albert Graef <aggraef@gmail.com> Date: Thu, 30 Nov 2017 00:03:33 +0100 Subject: [PATCH] Fix up x_vexp.h so that it assumes PD rather than MSP by default. --- pd/src/x_vexp.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pd/src/x_vexp.h b/pd/src/x_vexp.h index 608a64a48..bc3b42040 100644 --- a/pd/src/x_vexp.h +++ b/pd/src/x_vexp.h @@ -5,9 +5,9 @@ /* "expr" was written by Shahrokh Yadegari c. 1989. -msp */ /* "expr~" and "fexpr~" conversion by Shahrokh Yadegari c. 1999,2000 */ -#define MSP -#ifdef PD -#undef MSP +#define PD 1 +#ifdef MSP +#undef PD #endif #ifdef PD -- GitLab