diff options
| author | Paul Eggert | 2011-04-10 18:47:57 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-10 18:47:57 -0700 |
| commit | 95c82688bc8063f0be5a04baee5ea2a18f9ddf6b (patch) | |
| tree | 59148942e32ef89387b765f62d00877755af3405 /src/lisp.h | |
| parent | 16a97296c05ec9d5bb4ffeae9dce90fc63f578ed (diff) | |
| download | emacs-95c82688bc8063f0be5a04baee5ea2a18f9ddf6b.tar.gz emacs-95c82688bc8063f0be5a04baee5ea2a18f9ddf6b.zip | |
* lisp.h (DEFINE_FUNC): Make sname 'static'.
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 2 |
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}; \ |