]> git.eshelyaron.com Git - emacs.git/commitdiff
(DEFUN): Check USE_NONANSI_DEFUN.
authorRichard M. Stallman <rms@gnu.org>
Fri, 26 Aug 1994 00:44:42 +0000 (00:44 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 26 Aug 1994 00:44:42 +0000 (00:44 +0000)
src/lisp.h

index 0fa1d28017ff1e59d05502ef90bf4ed6c1b4e8de..d720944d8b81c5a1b7d23265d7e2a99310a1d694 100644 (file)
@@ -861,7 +861,7 @@ typedef unsigned char UCHAR;
  `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}; \