Mercurial > hg > xemacs-beta
comparison src/emacs.c @ 460:223736d75acb r21-2-45
Import from CVS: tag r21-2-45
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:43:24 +0200 |
parents | c33ae14dd6d0 |
children | 0784d089fdc9 |
comparison
equal
deleted
inserted
replaced
459:9d4fd877b885 | 460:223736d75acb |
---|---|
179 #include "systty.h" | 179 #include "systty.h" |
180 #include "sysfile.h" | 180 #include "sysfile.h" |
181 #include "systime.h" | 181 #include "systime.h" |
182 | 182 |
183 #ifdef PDUMP | 183 #ifdef PDUMP |
184 #include "dump-id.h" | |
185 #include "dumper.h" | 184 #include "dumper.h" |
186 #endif | 185 #endif |
187 | 186 |
188 #ifndef SEPCHAR | 187 #ifndef SEPCHAR |
189 #define SEPCHAR ':' | 188 #define SEPCHAR ':' |
282 | 281 |
283 Lisp_Object Vemacs_program_name, Vemacs_program_version; | 282 Lisp_Object Vemacs_program_name, Vemacs_program_version; |
284 Lisp_Object Vexec_path; | 283 Lisp_Object Vexec_path; |
285 Lisp_Object Vexec_directory, Vconfigure_exec_directory; | 284 Lisp_Object Vexec_directory, Vconfigure_exec_directory; |
286 Lisp_Object Vlisp_directory, Vconfigure_lisp_directory; | 285 Lisp_Object Vlisp_directory, Vconfigure_lisp_directory; |
286 Lisp_Object Vmule_lisp_directory, Vconfigure_mule_lisp_directory; | |
287 Lisp_Object Vmodule_directory, Vconfigure_module_directory; | 287 Lisp_Object Vmodule_directory, Vconfigure_module_directory; |
288 Lisp_Object Vsite_module_directory, Vconfigure_site_module_directory; | 288 Lisp_Object Vsite_module_directory, Vconfigure_site_module_directory; |
289 Lisp_Object Vconfigure_package_path; | 289 Lisp_Object Vconfigure_package_path; |
290 Lisp_Object Vdata_directory, Vconfigure_data_directory; | 290 Lisp_Object Vdata_directory, Vconfigure_data_directory; |
291 Lisp_Object Vdoc_directory, Vconfigure_doc_directory; | 291 Lisp_Object Vdoc_directory, Vconfigure_doc_directory; |
3588 (build_string ((char *) PATH_LOADSEARCH)); | 3588 (build_string ((char *) PATH_LOADSEARCH)); |
3589 #else | 3589 #else |
3590 Vconfigure_lisp_directory = Qnil; | 3590 Vconfigure_lisp_directory = Qnil; |
3591 #endif | 3591 #endif |
3592 | 3592 |
3593 DEFVAR_LISP ("mule-lisp-directory", &Vmule_lisp_directory /* | |
3594 *Directory of Mule Lisp files that come with XEmacs. | |
3595 */ ); | |
3596 Vmule_lisp_directory = Qnil; | |
3597 | |
3598 DEFVAR_LISP ("configure-mule-lisp-directory", &Vconfigure_mule_lisp_directory /* | |
3599 For internal use by the build procedure only. | |
3600 configure's idea of what `mule-lisp-directory' will be. | |
3601 */ ); | |
3602 #ifdef PATH_MULELOADSEARCH | |
3603 Vconfigure_mule_lisp_directory = Ffile_name_as_directory | |
3604 (build_string ((char *) PATH_MULELOADSEARCH)); | |
3605 #else | |
3606 Vconfigure_mule_lisp_directory = Qnil; | |
3607 #endif | |
3608 | |
3593 DEFVAR_LISP ("module-directory", &Vmodule_directory /* | 3609 DEFVAR_LISP ("module-directory", &Vmodule_directory /* |
3594 *Directory of core dynamic modules that come with XEmacs. | 3610 *Directory of core dynamic modules that come with XEmacs. |
3595 */ ); | 3611 */ ); |
3596 Vmodule_directory = Qnil; | 3612 Vmodule_directory = Qnil; |
3597 | 3613 |