mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-31 20:02:42 +00:00
210b2b4f05
* [VMS] systime.h: Include vmstime.h. VMS has the timezone variable and the tzname array. * s/vms.h: VMS does have select. mth$dmod is the same as Unix's drem. Use the time functions in vmstime.c. No need to rename the malloc routines if we're using GNU malloc. PURESIZE needs to be 330000. * vmstime.c, vmstime.h: New files. * systty.h: Don't try to initialize extern declarations under VAX C. * vmspaths.h (PATH_LOADSEARCH): Include EMACS_LIBRARY:[LOCAL-LISP] in PATH_LOADSEARCH. (PATH_EXEC): Use EMACS_LIBRARY:[LIB-SRC] instead of [ETC]. * sysdep.c [VMS] (init_sys_modes): Don't allocate process_ef. [VMS] (queue_kbd_input): Build events structure correctly. [VMS] (gethostname): New function. [VMS] (getwd): Don't get the PATH environment variable; that's dumb. Call getcwd.
33 lines
1.4 KiB
C
33 lines
1.4 KiB
C
/* Hey Emacs, this is -*- C -*- code! */
|
|
|
|
/* The default search path for Lisp function "load".
|
|
This sets load-path. */
|
|
#define PATH_LOADSEARCH "EMACS_LIBRARY:[LOCAL-LISP],EMACS_LIBRARY:[LISP]"
|
|
|
|
/* Like PATH_LOADSEARCH, but used only when Emacs is dumping. This
|
|
path is usually identical to PATH_LOADSEARCH except that the entry
|
|
for the directory containing the installed lisp files has been
|
|
replaced with ../lisp. */
|
|
#define PATH_DUMPLOADSEARCH "[-.LISP]"
|
|
|
|
/* The extra search path for programs to invoke. This is appended to
|
|
whatever the PATH environment variable says to set the Lisp
|
|
variable exec-path and the first file name in it sets the Lisp
|
|
variable exec-directory. exec-directory is used for finding
|
|
executables and other architecture-dependent files. */
|
|
#define PATH_EXEC "EMACS_LIBRARY:[LIB-SRC]"
|
|
|
|
/* Where Emacs should look for its architecture-independent data
|
|
files, like the docstring file. The lisp variable data-directory
|
|
is set to this value. */
|
|
#define PATH_DATA "EMACS_LIBRARY:[ETC]"
|
|
|
|
/* the name of the directory that contains lock files
|
|
with which we record what files are being modified in Emacs.
|
|
This directory should be writable by everyone. */
|
|
#define PATH_LOCK "EMACS_LIBRARY:[LOCK]"
|
|
|
|
/* the name of the file !!!SuperLock!!! in the directory
|
|
specified by PATH_LOCK. Yes, this is redundant. */
|
|
#define PATH_SUPERLOCK "EMACS_LIBRARY:[LOCK]$$$SUPERLOCK$$$."
|