Mercurial > hg > xemacs-beta
comparison src/callproc.c @ 203:850242ba4a81 r20-3b28
Import from CVS: tag r20-3b28
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:02:21 +0200 |
parents | a2f645c6b9f8 |
children | 41ff10fd062f |
comparison
equal
deleted
inserted
replaced
202:61eefc8fc970 | 203:850242ba4a81 |
---|---|
55 #endif /* DOS_NT */ | 55 #endif /* DOS_NT */ |
56 | 56 |
57 Lisp_Object Vexec_path, Vexec_directory, Vdata_directory, Vdoc_directory; | 57 Lisp_Object Vexec_path, Vexec_directory, Vdata_directory, Vdoc_directory; |
58 Lisp_Object Vdata_directory_list; | 58 Lisp_Object Vdata_directory_list; |
59 Lisp_Object Vconfigure_info_directory, Vsite_directory; | 59 Lisp_Object Vconfigure_info_directory, Vsite_directory; |
60 Lisp_Object Vinfopath_internal; | |
60 | 61 |
61 /* The default base directory XEmacs is installed under. */ | 62 /* The default base directory XEmacs is installed under. */ |
62 Lisp_Object Vprefix_directory; | 63 Lisp_Object Vprefix_directory; |
63 | 64 |
64 Lisp_Object Vshell_file_name; | 65 Lisp_Object Vshell_file_name; |
1220 For internal use by the build procedure only. | 1221 For internal use by the build procedure only. |
1221 This is the name of the directory in which the build procedure installed | 1222 This is the name of the directory in which the build procedure installed |
1222 Emacs's info files; the default value for Info-default-directory-list | 1223 Emacs's info files; the default value for Info-default-directory-list |
1223 includes this. | 1224 includes this. |
1224 */ ); | 1225 */ ); |
1226 | |
1225 #ifdef PATH_INFO | 1227 #ifdef PATH_INFO |
1226 Vconfigure_info_directory = | 1228 Vconfigure_info_directory = |
1227 Ffile_name_as_directory (build_string (PATH_INFO)); | 1229 Ffile_name_as_directory (build_string (PATH_INFO)); |
1228 #else | 1230 #else |
1229 Vconfigure_info_directory = Qnil; | 1231 Vconfigure_info_directory = Qnil; |
1230 #endif | 1232 #endif |
1231 } | 1233 |
1234 DEFVAR_LISP ("infopath-internal", &Vinfopath_internal /* | |
1235 The configured initial value of Info-default-directory-list. | |
1236 */ ); | |
1237 | |
1238 #ifdef PATH_INFOPATH | |
1239 Vinfopath_internal = build_string (PATH_INFOPATH); | |
1240 #else | |
1241 Vinfopath_internal = | |
1242 build_string ("/usr/info:/usr/local/info:/usr/lib/texmf/doc/info:/usr/local/lib/texmf/doc/info"); | |
1243 #endif | |
1244 } |