Mercurial > hg > xemacs-beta
comparison src/emacs.c @ 50:ee648375d8d6 r19-16b91
Import from CVS: tag r19-16b91
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:56:41 +0200 |
parents | e04119814345 |
children | 05472e90ae02 |
comparison
equal
deleted
inserted
replaced
49:b46643e427ac | 50:ee648375d8d6 |
---|---|
82 Lisp_Object Vsystem_type; | 82 Lisp_Object Vsystem_type; |
83 | 83 |
84 /* Variable whose value is string giving configuration built for. */ | 84 /* Variable whose value is string giving configuration built for. */ |
85 Lisp_Object Vsystem_configuration; | 85 Lisp_Object Vsystem_configuration; |
86 | 86 |
87 /* Version numbers and strings */ | |
88 Lisp_Object Vemacs_major_version; | |
89 Lisp_Object Vemacs_minor_version; | |
90 | |
87 /* The name under which XEmacs was invoked, with any leading directory | 91 /* The name under which XEmacs was invoked, with any leading directory |
88 names discarded. */ | 92 names discarded. */ |
89 Lisp_Object Vinvocation_name; | 93 Lisp_Object Vinvocation_name; |
90 | 94 |
91 /* The directory name from which XEmacs was invoked. */ | 95 /* The directory name from which XEmacs was invoked. */ |
2235 DEFVAR_LISP ("system-configuration", &Vsystem_configuration /* | 2239 DEFVAR_LISP ("system-configuration", &Vsystem_configuration /* |
2236 Value is string indicating configuration XEmacs was built for. | 2240 Value is string indicating configuration XEmacs was built for. |
2237 */ ); | 2241 */ ); |
2238 Vsystem_configuration = Fpurecopy (build_string (EMACS_CONFIGURATION)); | 2242 Vsystem_configuration = Fpurecopy (build_string (EMACS_CONFIGURATION)); |
2239 | 2243 |
2244 /* emacs-major-version and emacs-minor-version work correctly in the */ | |
2245 /* real XEmacs source code ... */ | |
2246 DEFVAR_LISP ("emacs-major-version", &Vemacs_major_version /* | |
2247 Major version number of this version of Emacs, as an integer. | |
2248 Warning: this variable did not exist in Emacs versions earlier than: | |
2249 FSF Emacs: 19.23 | |
2250 XEmacs: 19.10 | |
2251 */ ); | |
2252 Vemacs_major_version = make_int (19); | |
2253 | |
2254 DEFVAR_LISP ("emacs-minor-version", &Vemacs_minor_version /* | |
2255 Minor version number of this version of Emacs, as an integer. | |
2256 Warning: this variable did not exist in Emacs versions earlier than: | |
2257 FSF Emacs: 19.23 | |
2258 XEmacs: 19.10 | |
2259 */ ); | |
2260 Vemacs_minor_version = make_int (16); | |
2261 | |
2262 | |
2240 DEFVAR_BOOL ("noninteractive", &noninteractive1 /* | 2263 DEFVAR_BOOL ("noninteractive", &noninteractive1 /* |
2241 Non-nil means XEmacs is running without interactive terminal. | 2264 Non-nil means XEmacs is running without interactive terminal. |
2242 */ ); | 2265 */ ); |
2243 | 2266 |
2244 DEFVAR_INT ("emacs-priority", &emacs_priority /* | 2267 DEFVAR_INT ("emacs-priority", &emacs_priority /* |