view nt/inc/sys/file.h @ 32190:af0c1b2c3d6e

(which-func-format): Remove spurious space. (which-func-mode): Don't make it permanent-local. (which-func-ff-hook): Allow which-func-maxout to be nil. (which-func-update): Simplify a bit. Only run if which-func-mode is t. (which-func-mode): Simplify. Use post-command-idle-hook rather than post-command-hook. Go through all buffers and update their state. (which-function): Also try add-log-current-defun-function.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 05 Oct 2000 23:13:07 +0000
parents 69b7e5c8da03
children 695cf19ef79e
line wrap: on
line source

/*
 * sys\file.h doesn't exist on NT - only needed for these constants
 */

#ifndef D_OK
#define F_OK 0
#define X_OK 1
#define W_OK 2
#define R_OK 4
#define D_OK 8
#endif