1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-27 07:41:28 -08:00

* 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.
This commit is contained in:
Jim Blandy 1993-05-04 00:28:07 +00:00
parent 4e4726bc25
commit d620fb0c44

View file

@ -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 ','