aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2005-03-24 19:53:53 +0000
committerStefan Monnier2005-03-24 19:53:53 +0000
commitddf9883e17bc2e6f971a8a19e5c0839e0822f31a (patch)
treecdd81f2586b1a299271c9a600920ff3958ce0bc5
parent217604dab1b3a760fa6c43f9beb017a797b06cf6 (diff)
downloademacs-ddf9883e17bc2e6f971a8a19e5c0839e0822f31a.tar.gz
emacs-ddf9883e17bc2e6f971a8a19e5c0839e0822f31a.zip
(make_number): Make prototype more precise.
-rw-r--r--src/lisp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lisp.h b/src/lisp.h
index c7b7ca1a2f6..c80d8a822cc 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -1,6 +1,6 @@
1/* Fundamental definitions for GNU Emacs Lisp interpreter. 1/* Fundamental definitions for GNU Emacs Lisp interpreter.
2 Copyright (C) 1985,86,87,93,94,95,97,98,1999,2000,01,02,03,2004 2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 1998, 1999, 2000,
3 Free Software Foundation, Inc. 3 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
@@ -451,7 +451,7 @@ enum pvec_type
451#define make_number(N) \ 451#define make_number(N) \
452 (__extension__ ({ Lisp_Object _l; _l.s.val = (N); _l.s.type = Lisp_Int; _l; })) 452 (__extension__ ({ Lisp_Object _l; _l.s.val = (N); _l.s.type = Lisp_Int; _l; }))
453#else 453#else
454extern Lisp_Object make_number (); 454extern Lisp_Object make_number P_ ((EMACS_INT));
455#endif 455#endif
456 456
457#define EQ(x, y) ((x).s.val == (y).s.val && (x).s.type == (y).s.type) 457#define EQ(x, y) ((x).s.val == (y).s.val && (x).s.type == (y).s.type)