From d620fb0c44f0498c74cd7590d976cb27ded740d0 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Tue, 4 May 1993 00:28:07 +0000 Subject: [PATCH] * emacs.c (SEPCHAR): Instead of defining this to be ',' on VMS and ':' elsewhere, just have it default to ':' if not #defined, and #define it to be ',' in s/vms.h; OS/2 will need it to be ';'. * s/vms.h (SEPCHAR): #define this to be ','. * s/template.h (SEPCHAR): Mention this. * s/vms.h (xfree): #define this to emacs_xfree, to avoid case conflict with XFree; on VMS, external symbols are case-insensitive. --- src/s/vms.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/s/vms.h b/src/s/vms.h index 8278cfbcfac..e2a9af5d9fe 100644 --- a/src/s/vms.h +++ b/src/s/vms.h @@ -250,3 +250,9 @@ globalref char sdata[]; #define NULL_DEVICE "NLA0:" #define EXEC_SUFFIXES ".exe:.com" + +/* Case conflict with Xlib XFree () */ +#define xfree emacs_xfree + +/* What separator do we use in paths? */ +#define SEPCHAR ','