aboutsummaryrefslogtreecommitdiffstats
path: root/nt
diff options
context:
space:
mode:
Diffstat (limited to 'nt')
-rw-r--r--nt/ChangeLog8
-rw-r--r--nt/config.nt35
2 files changed, 9 insertions, 34 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog
index faf6f80c4c5..198729776b5 100644
--- a/nt/ChangeLog
+++ b/nt/ChangeLog
@@ -1,3 +1,11 @@
12012-05-22 Paul Eggert <eggert@cs.ucla.edu>
2
3 Remove src/m/*.
4 * config.nt: Do not include "m/intel386.h"; file was removed.
5 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG):
6 Move to src/lisp.h.
7 (EMACS_INT_MAX): New macro.
8
12012-05-19 Paul Eggert <eggert@cs.ucla.edu> 92012-05-19 Paul Eggert <eggert@cs.ucla.edu>
2 10
3 * config.nt (HAVE_GETDOMAINNAME, HAVE_XSETWMPROTOCOLS) 11 * config.nt (HAVE_GETDOMAINNAME, HAVE_XSETWMPROTOCOLS)
diff --git a/nt/config.nt b/nt/config.nt
index 9d933c2d0a0..16122b5e10e 100644
--- a/nt/config.nt
+++ b/nt/config.nt
@@ -421,17 +421,6 @@ typedef unsigned short mode_t;
421#undef config_opsysfile 421#undef config_opsysfile
422#include "s/ms-w32.h" 422#include "s/ms-w32.h"
423 423
424/* The configuration script defines machfile to be the name of the
425 m/MACHINE.h file that describes the machine you are using. The file is
426 chosen based on the configuration name you give.
427
428 See the file ../etc/MACHINES for a list of machines and the
429 configuration names to use for them.
430
431 See m/template.h for documentation on writing m/MACHINE.h files. */
432#undef config_machfile
433#include "m/intel386.h"
434
435/* Define `subprocesses' should be defined if you want to 424/* Define `subprocesses' should be defined if you want to
436 have code for asynchronous subprocesses 425 have code for asynchronous subprocesses
437 (as used in M-x compile and M-x shell). 426 (as used in M-x compile and M-x shell).
@@ -465,28 +454,6 @@ extern char *getenv ();
465 454
466#endif /* EMACS_CONFIG_H */ 455#endif /* EMACS_CONFIG_H */
467 456
468/* These default definitions are good for almost all machines.
469 The exceptions override them in m/MACHINE.h. */
470
471#ifndef BITS_PER_CHAR
472#define BITS_PER_CHAR 8
473#endif
474
475#ifndef BITS_PER_SHORT
476#define BITS_PER_SHORT 16
477#endif
478
479/* Note that lisp.h uses this in a preprocessor conditional, so it
480 would not work to use sizeof. That being so, we do all of them
481 without sizeof, for uniformity's sake. */
482#ifndef BITS_PER_INT
483#define BITS_PER_INT 32
484#endif
485
486#ifndef BITS_PER_LONG
487#define BITS_PER_LONG 32
488#endif
489
490#if defined (__MINGW32__) || _MSC_VER >= 1400 457#if defined (__MINGW32__) || _MSC_VER >= 1400
491 458
492/* Define to 1 if the system has the type `long long int'. */ 459/* Define to 1 if the system has the type `long long int'. */
@@ -505,7 +472,7 @@ extern char *getenv ();
505 472
506/* Use pre-C99-style 64-bit integers. */ 473/* Use pre-C99-style 64-bit integers. */
507# define EMACS_INT __int64 474# define EMACS_INT __int64
508# define BITS_PER_EMACS_INT 64 475# define EMACS_INT_MAX _I64_MAX
509# define pI "I64" 476# define pI "I64"
510 477
511# endif 478# endif