Mercurial > emacs
annotate nt/inc/sys/file.h @ 18531:35a263e545b3
(Fy_or_n_p, Fyes_or_no_p): Obey use_dialog_box.
(use_dialog_box): New variable, controls whether to use dialog boxes.
(syms_of_fns): Set up Lisp variable.
(concat): Use XCONS rather than Fcar, Fcdr--for known cons.
(Fassq, assq_no_quit, Fassoc, Frassq, Frassoc, Fdelq): Likewise.
(Fdelete, Fplist_get, mapcar1, Fmember, Fmemq): Likewise.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 02 Jul 1997 06:23:21 +0000 |
parents | cc3c8961d60a |
children | 841b8916e3b2 |
rev | line source |
---|---|
11766 | 1 /* |
15134
cc3c8961d60a
(F_OK, X_OK, W_OK, R_OK): New macros.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11766
diff
changeset
|
2 * sys\file.h doesn't exist on NT - only needed for these constants |
11766 | 3 */ |
15134
cc3c8961d60a
(F_OK, X_OK, W_OK, R_OK): New macros.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11766
diff
changeset
|
4 |
cc3c8961d60a
(F_OK, X_OK, W_OK, R_OK): New macros.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11766
diff
changeset
|
5 #define F_OK 0 |
cc3c8961d60a
(F_OK, X_OK, W_OK, R_OK): New macros.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11766
diff
changeset
|
6 #define X_OK 1 |
cc3c8961d60a
(F_OK, X_OK, W_OK, R_OK): New macros.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11766
diff
changeset
|
7 #define W_OK 2 |
cc3c8961d60a
(F_OK, X_OK, W_OK, R_OK): New macros.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11766
diff
changeset
|
8 #define R_OK 4 |