Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ddf9883e
Commit
ddf9883e
authored
Mar 24, 2005
by
Stefan Monnier
Browse files
(make_number): Make prototype more precise.
parent
217604da
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/lisp.h
src/lisp.h
+3
-3
No files found.
src/lisp.h
View file @
ddf9883e
/* Fundamental definitions for GNU Emacs Lisp interpreter.
Copyright (C) 1985,
86,87,93,94,95,97,
98,1999,2000,
01,02,03,2004
Free Software Foundation, Inc.
Copyright (C) 1985,
1986, 1987, 1993, 1994, 1995, 1997, 19
98,
1999,
2000,
2001, 2002, 2003, 2004, 2005
Free Software Foundation, Inc.
This file is part of GNU Emacs.
...
...
@@ -451,7 +451,7 @@ enum pvec_type
#define make_number(N) \
(__extension__ ({ Lisp_Object _l; _l.s.val = (N); _l.s.type = Lisp_Int; _l; }))
#else
extern
Lisp_Object
make_number
(
);
extern
Lisp_Object
make_number
P_
((
EMACS_INT
)
);
#endif
#define EQ(x, y) ((x).s.val == (y).s.val && (x).s.type == (y).s.type)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment