comparison src/emacs.c @ 179:9ad43877534d r20-3b16

Import from CVS: tag r20-3b16
author cvs
date Mon, 13 Aug 2007 09:52:19 +0200
parents 6075d714658b
children 3d6bfa290dbd
comparison
equal deleted inserted replaced
178:e703507b8a00 179:9ad43877534d
59 #ifdef APOLLO 59 #ifdef APOLLO
60 #ifndef APOLLO_SR10 60 #ifndef APOLLO_SR10
61 #include <default_acl.h> 61 #include <default_acl.h>
62 #endif 62 #endif
63 #endif 63 #endif
64
65 /* For PATH_EXEC */
66 #include "paths.h"
64 67
65 extern void memory_warnings (void *, void (*warnfun) (CONST char *)); 68 extern void memory_warnings (void *, void (*warnfun) (CONST char *));
66 69
67 #ifndef SYSTEM_MALLOC 70 #ifndef SYSTEM_MALLOC
68 extern void *(*__malloc_hook)(size_t); 71 extern void *(*__malloc_hook)(size_t);
2358 2361
2359 DEFVAR_LISP ("package-path", &Vpackage_path /* 2362 DEFVAR_LISP ("package-path", &Vpackage_path /*
2360 List of directories configured for package searching. 2363 List of directories configured for package searching.
2361 */ ); 2364 */ );
2362 #ifndef PACKAGE_PATH 2365 #ifndef PACKAGE_PATH
2363 #define PACKAGE_PATH "/etc/xemacs:~/.xemacs" 2366 #define PACKAGE_PATH PATH_PREFIX "/lib/xemacs/packages:~/.xemacs"
2364 #endif 2367 #endif
2365 Vpackage_path = decode_path(PACKAGE_PATH); 2368 Vpackage_path = decode_path(PACKAGE_PATH);
2366 2369
2367 DEFVAR_BOOL ("noninteractive", &noninteractive1 /* 2370 DEFVAR_BOOL ("noninteractive", &noninteractive1 /*
2368 Non-nil means XEmacs is running without interactive terminal. 2371 Non-nil means XEmacs is running without interactive terminal.