annotate src/vmspaths.h @ 1591:765cb54fa9af
* lread.c: #include "keyboard.h".
(Fread_char, Fread_char_exclusive): Don't signal an
error for or throw away switch-frame events; instead, put them off
until after we've found a character we can respond to.
Rename unread_command_char to unread_command_event; it has
subtly different semantics now, and we should use
`make-obsolete-variable' to warn people.
* lread.c (Fread_char): Change reference.
author |
Jim Blandy <jimb@redhat.com> |
date |
Mon, 16 Nov 1992 00:45:02 +0000 |
parents |
3165b2697c78 |
children |
6f61e80e319b |
rev |
line source |
484
|
1 /* the default search path for Lisp function "load" */
|
|
2 #define PATH_LOADSEARCH "EMACS_LIBRARY:[LISP]"
|
|
3
|
|
4 /* the extra search path for programs to invoke.
|
|
5 This is appended to whatever the PATH environment variable says. */
|
|
6 #define PATH_EXEC "EMACS_LIBRARY:[ETC]"
|
|
7
|
|
8 /* the name of the directory that contains lock files
|
|
9 with which we record what files are being modified in Emacs.
|
|
10 This directory should be writable by everyone. */
|
|
11 #define PATH_LOCK "EMACS_LIBRARY:[LOCK]"
|
|
12
|
|
13 /* the name of the file !!!SuperLock!!! in the directory
|
|
14 specified by PATH_LOCK. Yes, this is redundant. */
|
|
15 #define PATH_SUPERLOCK "EMACS_LIBRARY:[LOCK]$$$SUPERLOCK$$$."
|