aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 6a28a0f81b3..10fc66f4406 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -1811,7 +1811,7 @@ typedef struct {
1811#define DEFUE extern DEFINE_FUNC 1811#define DEFUE extern DEFINE_FUNC
1812#define DEFINE_FUNC(lname, fnname, sname, minargs, maxargs, intspec, doc) \ 1812#define DEFINE_FUNC(lname, fnname, sname, minargs, maxargs, intspec, doc) \
1813 Lisp_Object fnname DEFUN_ARGS_ ## maxargs ; \ 1813 Lisp_Object fnname DEFUN_ARGS_ ## maxargs ; \
1814 DECL_ALIGN (struct Lisp_Subr, sname) = \ 1814 static DECL_ALIGN (struct Lisp_Subr, sname) = \
1815 { PVEC_SUBR | (sizeof (struct Lisp_Subr) / sizeof (EMACS_INT)), \ 1815 { PVEC_SUBR | (sizeof (struct Lisp_Subr) / sizeof (EMACS_INT)), \
1816 { .a ## maxargs = fnname }, \ 1816 { .a ## maxargs = fnname }, \
1817 minargs, maxargs, lname, intspec, 0}; \ 1817 minargs, maxargs, lname, intspec, 0}; \