1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.

This commit is contained in:
Richard M. Stallman 1995-01-20 23:36:39 +00:00
parent dffb28c7ca
commit 296752568f

View File

@ -206,6 +206,13 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
likes that */
#define FILE_SYSTEM_CASE Fdowncase
/* Define this to be the separator between devices and paths */
#define DEVICE_SEP ':'
/* We'll support either convention on MSDOG. */
#define IS_DIRECTORY_SEP(_c_) ((_c_) == '/' || (_c_) == '\\')
#define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_) || IS_DEVICE_SEP (_c_))
/* bcopy under djgpp is quite safe */
#define GAP_USE_BCOPY
#define BCOPY_UPWARD_SAFE 1