diff options
| author | Dan Nicolaescu | 2008-02-09 18:03:10 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-02-09 18:03:10 +0000 |
| commit | 4624371d9a4c1a078bcb7a305adb0520cd8975bc (patch) | |
| tree | 3e976f55d9448bda9ab36215bd5673c0eab68d45 /src/lisp.h | |
| parent | 87e391bb24d57ce8c27226542ba11ea5f924689d (diff) | |
| download | emacs-4624371d9a4c1a078bcb7a305adb0520cd8975bc.tar.gz emacs-4624371d9a4c1a078bcb7a305adb0520cd8975bc.zip | |
* configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
dealing with obsolete variables.
* fakemail.c (MAIL_PROGRAM_NAME): Remove unused conditional.
(main): Replace MAIL_PROGRAM_NAME with its value.
* src/Makefile.in:
* src/emacs.c:
* src/gmalloc.c:
* src/keyboard.c:
* src/lisp.h:
* src/m/ibm370aix.h:
* src/process.c:
* src/regex.c:
* src/s/hpux.h:
* src/sysdep.c:
* src/sysselect.h:
* src/systty.h:
* src/unexec.c:
* src/w32term.c:
* src/xsmfns.c:
* src/xterm.c: Remove code that deals with obsolete variables.
* s/msdos.h (DONT_NEED_ENVIRON): Don't define.
* ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
nothing else needs it anymore.
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/lisp.h b/src/lisp.h index 284ee0b2b25..5156386551a 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -1665,8 +1665,7 @@ typedef unsigned char UCHAR; | |||
| 1665 | A null string means call interactively with no arguments. | 1665 | A null string means call interactively with no arguments. |
| 1666 | `doc' is documentation for the user. */ | 1666 | `doc' is documentation for the user. */ |
| 1667 | 1667 | ||
| 1668 | #if (!defined (__STDC__) && !defined (PROTOTYPES)) \ | 1668 | #if (!defined (__STDC__) && !defined (PROTOTYPES)) |
| 1669 | || defined (USE_NONANSI_DEFUN) | ||
| 1670 | 1669 | ||
| 1671 | #define DEFUN(lname, fnname, sname, minargs, maxargs, intspec, doc) \ | 1670 | #define DEFUN(lname, fnname, sname, minargs, maxargs, intspec, doc) \ |
| 1672 | Lisp_Object fnname (); \ | 1671 | Lisp_Object fnname (); \ |
| @@ -2115,8 +2114,7 @@ void staticpro P_ ((Lisp_Object *)); | |||
| 2115 | 2114 | ||
| 2116 | /* Declare a Lisp-callable function. The MAXARGS parameter has the same | 2115 | /* Declare a Lisp-callable function. The MAXARGS parameter has the same |
| 2117 | meaning as in the DEFUN macro, and is used to construct a prototype. */ | 2116 | meaning as in the DEFUN macro, and is used to construct a prototype. */ |
| 2118 | #if (!defined (__STDC__) && !defined (PROTOTYPES)) \ | 2117 | #if (!defined (__STDC__) && !defined (PROTOTYPES)) |
| 2119 | || defined (USE_NONANSI_DEFUN) | ||
| 2120 | #define EXFUN(fnname, maxargs) \ | 2118 | #define EXFUN(fnname, maxargs) \ |
| 2121 | extern Lisp_Object fnname () | 2119 | extern Lisp_Object fnname () |
| 2122 | #else | 2120 | #else |
| @@ -3368,11 +3366,7 @@ extern Lisp_Object Vdirectory_sep_char; | |||
| 3368 | #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_)) | 3366 | #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_)) |
| 3369 | #endif | 3367 | #endif |
| 3370 | 3368 | ||
| 3371 | #ifdef SWITCH_ENUM_BUG | ||
| 3372 | #define SWITCH_ENUM_CAST(x) ((int)(x)) | ||
| 3373 | #else | ||
| 3374 | #define SWITCH_ENUM_CAST(x) (x) | 3369 | #define SWITCH_ENUM_CAST(x) (x) |
| 3375 | #endif | ||
| 3376 | 3370 | ||
| 3377 | /* Loop over Lisp list LIST. Signal an error if LIST is not a proper | 3371 | /* Loop over Lisp list LIST. Signal an error if LIST is not a proper |
| 3378 | list, or if it contains circles. | 3372 | list, or if it contains circles. |