Mercurial > hg > xemacs-beta
comparison src/emacs.c @ 2602:3d8cce0303fa
[xemacs-hg @ 2005-02-22 07:15:59 by stephent]
xemacs-release-date <874qg56pbc.fsf@tleepslib.sk.tsukuba.ac.jp>
author | stephent |
---|---|
date | Tue, 22 Feb 2005 07:16:16 +0000 |
parents | 4c1f2310451d |
children | 6fa9919a9a0b |
comparison
equal
deleted
inserted
replaced
2601:29846858dfc8 | 2602:3d8cce0303fa |
---|---|
507 Lisp_Object Vemacs_minor_version; | 507 Lisp_Object Vemacs_minor_version; |
508 Lisp_Object Vemacs_patch_level; | 508 Lisp_Object Vemacs_patch_level; |
509 Lisp_Object Vemacs_beta_version; | 509 Lisp_Object Vemacs_beta_version; |
510 Lisp_Object Vxemacs_codename; | 510 Lisp_Object Vxemacs_codename; |
511 Lisp_Object Vxemacs_extra_name; | 511 Lisp_Object Vxemacs_extra_name; |
512 Lisp_Object Vxemacs_release_date; | |
512 #ifdef INFODOCK | 513 #ifdef INFODOCK |
513 Lisp_Object Vinfodock_major_version; | 514 Lisp_Object Vinfodock_major_version; |
514 Lisp_Object Vinfodock_minor_version; | 515 Lisp_Object Vinfodock_minor_version; |
515 Lisp_Object Vinfodock_build_version; | 516 Lisp_Object Vinfodock_build_version; |
516 #endif | 517 #endif |
4144 #define XEMACS_CODENAME "Noname" | 4145 #define XEMACS_CODENAME "Noname" |
4145 #endif | 4146 #endif |
4146 Vxemacs_codename = build_string (XEMACS_CODENAME); | 4147 Vxemacs_codename = build_string (XEMACS_CODENAME); |
4147 | 4148 |
4148 DEFVAR_LISP ("xemacs-extra-name", &Vxemacs_extra_name /* | 4149 DEFVAR_LISP ("xemacs-extra-name", &Vxemacs_extra_name /* |
4149 Extra string to maybe put into the version string. | 4150 Arbitrary string to place in the version string after the codename. |
4150 | 4151 |
4151 Usually used to denote an XEmacs built from a CVS checkout between | 4152 Appropriate surrounding whitespace will be added, but typically looks best |
4152 releases. In that case its value would be \"(+CVS)\". | 4153 if enclosed in parentheses. |
4154 | |
4155 A standard use is to indicate the date version.sh was last updated from | |
4156 the CVS mainline, where it is automatically given a value similar to | |
4157 \"(+CVS-20050221)\". Developers may also use it to indicate particular | |
4158 branches, etc. | |
4153 */ ); | 4159 */ ); |
4154 #ifdef XEMACS_EXTRA_NAME | 4160 #ifdef XEMACS_EXTRA_NAME |
4155 Vxemacs_extra_name = build_string (XEMACS_EXTRA_NAME); | 4161 Vxemacs_extra_name = build_string (XEMACS_EXTRA_NAME); |
4156 #endif | 4162 #endif |
4163 | |
4164 DEFVAR_LISP ("xemacs-release-date", &Vxemacs_release_date /* | |
4165 ISO 8601 format date string giving the date of latest release in series. | |
4166 | |
4167 The time may optionally be given. The time zone may not be given, and | |
4168 is (implicitly) UTC. Currently not included in the version string. | |
4169 */ ); | |
4170 #ifndef XEMACS_RELEASE_DATE | |
4171 #define XEMACS_RELEASE_DATE "2005-02-18 (defaulted in emacs.c)" | |
4172 #endif | |
4173 Vxemacs_release_date = build_string (XEMACS_RELEASE_DATE); | |
4157 | 4174 |
4158 /* Lisp variables which contain command line flags. | 4175 /* Lisp variables which contain command line flags. |
4159 | 4176 |
4160 The portable dumper stomps on these; they must be saved and restored | 4177 The portable dumper stomps on these; they must be saved and restored |
4161 if they are processed before the call to pdump_load() in main_1(). | 4178 if they are processed before the call to pdump_load() in main_1(). |
4167 DEFVAR_BOOL ("vanilla-inhibiting", &vanilla_inhibiting /* | 4184 DEFVAR_BOOL ("vanilla-inhibiting", &vanilla_inhibiting /* |
4168 Set to non-nil when the user-init and site-start files should not be loaded. | 4185 Set to non-nil when the user-init and site-start files should not be loaded. |
4169 */ ); | 4186 */ ); |
4170 | 4187 |
4171 DEFVAR_BOOL ("inhibit-early-packages", &inhibit_early_packages /* | 4188 DEFVAR_BOOL ("inhibit-early-packages", &inhibit_early_packages /* |
4172 Set to non-nil when the early packages should not be respected at startup. | 4189 Set to non-nil when the early packages should be ignored at startup. |
4190 Early package directories will not be added to `load-path', nor set up as | |
4191 autoloads, nothing. | |
4173 */ ); | 4192 */ ); |
4174 | 4193 |
4175 DEFVAR_BOOL ("inhibit-all-packages", &inhibit_all_packages /* | 4194 DEFVAR_BOOL ("inhibit-all-packages", &inhibit_all_packages /* |
4176 Set to non-nil when the no packages should not be respected at startup. | 4195 Set to non-nil when all packages should be ignored at startup. |
4177 XEmacs will utterly ignore the packages -- not in load-path, not set up as | 4196 Package directories will not be added to `load-path', nor set up as |
4178 autoloads, nothing. | 4197 autoloads, nothing. |
4179 */ ); | 4198 */ ); |
4180 | 4199 |
4181 DEFVAR_BOOL ("inhibit-autoloads", &inhibit_autoloads /* | 4200 DEFVAR_BOOL ("inhibit-autoloads", &inhibit_autoloads /* |
4182 Set to non-nil when autoloads should not be loaded at startup. | 4201 Set to non-nil when autoloads should not be loaded at startup. |