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:
parent
dffb28c7ca
commit
296752568f
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user