diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2012-08-01 13:20:07 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2012-08-01 13:20:07 +0200 |
commit | c90acc54da9534fd083fc63887202f5d2ec13029 (patch) | |
tree | a5a1497185b8f4cce9e15765b451d29c88a17041 /src/s | |
parent | 069bac5e5b55c0f63bd2764e727108d2b48b2643 (diff) | |
download | emacs-c90acc54da9534fd083fc63887202f5d2ec13029.tar.gz |
Sync Windows port with autogen/config.in changes.
* nt/config.nt: Sync with autogen/config.in.
(DEVICE_SEP, FLOAT_CHECK_DOMAIN, HAVE_INVERSE_HYPERBOLIC)
(INTERNAL_TERMINAL, IS_ANY_SEP, IS_DEVICE_SEP, IS_DIRECTORY_SEP):
New macros.
* src/s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
Remove; moved to nt/config.nt.
Diffstat (limited to 'src/s')
-rw-r--r-- | src/s/ms-w32.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/s/ms-w32.h b/src/s/ms-w32.h index ca4c1001ec9..8c02a8b8a66 100644 --- a/src/s/ms-w32.h +++ b/src/s/ms-w32.h @@ -74,13 +74,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ your system and must be used only through an encapsulation (which you should place, by convention, in sysdep.c). */ -/* Define this to be the separator between devices and paths. */ -#define DEVICE_SEP ':' - -/* We'll support either convention on NT. */ -#define IS_DIRECTORY_SEP(_c_) ((_c_) == '/' || (_c_) == '\\') -#define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_) || IS_DEVICE_SEP (_c_)) - #ifdef __GNUC__ #ifndef __cplusplus #undef inline |