Mercurial > emacs
diff src/lisp.h @ 8631:232f6277bb8a
(DEFUN): Check USE_NONANSI_DEFUN.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Fri, 26 Aug 1994 00:44:42 +0000 |
| parents | 42b300c5ac5d |
| children | 97bf951c0b98 |
line wrap: on
line diff
--- a/src/lisp.h Fri Aug 26 00:40:24 1994 +0000 +++ b/src/lisp.h Fri Aug 26 00:44:42 1994 +0000 @@ -861,7 +861,7 @@ `doc' is documentation for the user. */ -#ifndef __STDC__ +#if !defined (__STDC__) || defined (USE_NONANSI_DEFUN) #define DEFUN(lname, fnname, sname, minargs, maxargs, prompt, doc) \ Lisp_Object fnname (); \ struct Lisp_Subr sname = {fnname, minargs, maxargs, lname, prompt, 0}; \
