comparison src/callproc.c @ 177:6075d714658b r20-3b15

Import from CVS: tag r20-3b15
author cvs
date Mon, 13 Aug 2007 09:51:16 +0200
parents 15872534500d
children 9ad43877534d
comparison
equal deleted inserted replaced
176:6866abce6aaf 177:6075d714658b
53 Lisp_Object Vbinary_process_input; 53 Lisp_Object Vbinary_process_input;
54 Lisp_Object Vbinary_process_output; 54 Lisp_Object Vbinary_process_output;
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 Vconfigure_info_directory, Vsite_directory; 59 Lisp_Object Vconfigure_info_directory, Vsite_directory;
59 60
60 /* The default base directory XEmacs is installed under. */ 61 /* The default base directory XEmacs is installed under. */
61 Lisp_Object Vprefix_directory; 62 Lisp_Object Vprefix_directory;
62 63
1155 Each element is a string (directory name) or nil (try default directory). 1156 Each element is a string (directory name) or nil (try default directory).
1156 */ ); 1157 */ );
1157 1158
1158 DEFVAR_LISP ("exec-directory", &Vexec_directory /* 1159 DEFVAR_LISP ("exec-directory", &Vexec_directory /*
1159 Directory of architecture-dependent files that come with XEmacs, 1160 Directory of architecture-dependent files that come with XEmacs,
1160 especially executable programs intended for Emacs to invoke. 1161 especially executable programs intended for XEmacs to invoke.
1161 */ ); 1162 */ );
1162 1163
1163 DEFVAR_LISP ("data-directory", &Vdata_directory /* 1164 DEFVAR_LISP ("data-directory", &Vdata_directory /*
1164 Directory of architecture-independent files that come with XEmacs, 1165 Directory of architecture-independent files that come with XEmacs,
1165 intended for Emacs to use. 1166 intended for XEmacs to use.
1166 */ ); 1167 */ );
1168
1169 DEFVAR_LISP ("data-directory-list", &Vdata_directory_list /*
1170 List of directories of architecture-independent files that come with XEmacs
1171 or were installed as packages, and are intended for XEmacs to use.
1172 */ );
1173 Vdata_directory_list = Qnil;
1167 1174
1168 DEFVAR_LISP ("site-directory", &Vsite_directory /* 1175 DEFVAR_LISP ("site-directory", &Vsite_directory /*
1169 Directory of architecture-independent files that do not come with XEmacs, 1176 Directory of architecture-independent files that do not come with XEmacs,
1170 intended for Emacs to use. 1177 intended for XEmacs to use.
1171 */ ); 1178 */ );
1172 1179
1173 /* FSF puts the DOC file into data-directory. They do a bunch of 1180 /* FSF puts the DOC file into data-directory. They do a bunch of
1174 contortions to attempt to put everything into the DOC file 1181 contortions to attempt to put everything into the DOC file
1175 whether the support is there or not. */ 1182 whether the support is there or not. */