Mercurial > hg > xemacs-beta
comparison src/emacs.c @ 167:85ec50267440 r20-3b10
Import from CVS: tag r20-3b10
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:45:46 +0200 |
parents | 5a88923fcbfe |
children | 15872534500d |
comparison
equal
deleted
inserted
replaced
166:7a77eb660975 | 167:85ec50267440 |
---|---|
145 /* Value of Lisp variable `noninteractive'. | 145 /* Value of Lisp variable `noninteractive'. |
146 Normally same as C variable `noninteractive' | 146 Normally same as C variable `noninteractive' |
147 but nothing terrible happens if user sets this one. */ | 147 but nothing terrible happens if user sets this one. */ |
148 | 148 |
149 int noninteractive1; | 149 int noninteractive1; |
150 | |
151 /* Major & Minor version numbers are needed in temacs as of 20.3 */ | |
152 /* Version numbers and strings */ | |
153 int emacs_beta_version; | |
154 int emacs_major_version; | |
155 int emacs_minor_version; | |
156 Lisp_Object Vxemacs_codename; | |
157 | 150 |
158 /* Save argv and argc. */ | 151 /* Save argv and argc. */ |
159 char **initial_argv; | 152 char **initial_argv; |
160 int initial_argc; | 153 int initial_argc; |
161 | 154 |
2353 Currently, you need to define SET_EMACS_PRIORITY in `config.h' | 2346 Currently, you need to define SET_EMACS_PRIORITY in `config.h' |
2354 before you compile XEmacs, to enable the code for this feature. | 2347 before you compile XEmacs, to enable the code for this feature. |
2355 */ ); | 2348 */ ); |
2356 emacs_priority = 0; | 2349 emacs_priority = 0; |
2357 | 2350 |
2358 DEFVAR_INT ("emacs-major-version", &emacs_major_version /* | 2351 } |
2359 Major version number of this version of Emacs, as an integer. | |
2360 Warning, this variable did not exist in Emacs versions earlier than: | |
2361 FSF Emacs: 19.23 | |
2362 XEmacs: 19.10 | |
2363 This variable was not available to temacs prior to: | |
2364 XEmacs: 20.3 | |
2365 */ ); | |
2366 emacs_major_version = EMACS_MAJOR_VERSION; | |
2367 | |
2368 DEFVAR_INT ("emacs-minor-version", &emacs_minor_version /* | |
2369 Minor version number of this version of Emacs, as an integer. | |
2370 Warning, this variable did not exist in Emacs versions earlier than: | |
2371 FSF Emacs: 19.23 | |
2372 XEmacs: 19.10 | |
2373 This variable was not available to temacs prior to: | |
2374 XEMacs: 20.3 | |
2375 */ ); | |
2376 emacs_minor_version = EMACS_MINOR_VERSION; | |
2377 } |