1 /*	ELANG.H:	Language specific definitions for
2 			MicroEMACS 4.00
3 			(C)opyright 1995 by Daniel Lawrence
4 */
5 
6 #if	ENGLISH
7 #include	"english.h"
8 #define	LANGUAGE "english"
9 #endif
10 #if	FRENCH
11 #if WINDOW_MSWIN || AIX || BSD || USG || SMOS || HPUX8 || HPUX9 || SUN || XENIX || AVIION
12 #include	"frenchis.h"	/* ISO version */
13 #else
14 #include	"french.h"	/* IBM-PC char set */
15 #endif
16 #define	LANGUAGE "french"
17 #endif
18 #if	SPANISH
19 #include	"spanish.h"
20 #define	LANGUAGE "spanish"
21 #endif
22 #if	GERMAN
23 #include	"german.h"
24 #define	LANGUAGE "german"
25 #endif
26 #if	DUTCH
27 #include	"dutch.h"
28 #define	LANGUAGE "dutch"
29 #endif
30 #if	PLATIN
31 #include	"platin.h"
32 #define	LANGUAGE "pig latin"
33 #endif
34 #if	JAPAN
35 #include	"japan.h"
36 #define	LANGUAGE "japaneese"
37 #endif
38 #if	LATIN
39 #include	"latin.h"
40 #define	LANGUAGE "latin"
41 #endif
42