Mercurial > emacs
comparison src/alloc.c @ 90133:4da4a09e8b1b
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-31
Merge from emacs--cvs-trunk--0
Patches applied:
* emacs--cvs-trunk--0 (patch 206-222)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 45-52)
- Update from CVS
- Update from CVS: texi Makefile.in CVS keyw cruft
- Update from CVS: ChangeLog tweaks
| author | Miles Bader <miles@gnu.org> |
|---|---|
| date | Thu, 31 Mar 2005 09:58:14 +0000 |
| parents | bf0d492ea2d5 25e4a0f171b5 |
| children | 7a3341d65a12 |
comparison
equal
deleted
inserted
replaced
| 90132:4080fe8b4f0f | 90133:4da4a09e8b1b |
|---|---|
| 1500 /* Number support. If NO_UNION_TYPE isn't in effect, we | 1500 /* Number support. If NO_UNION_TYPE isn't in effect, we |
| 1501 can't create number objects in macros. */ | 1501 can't create number objects in macros. */ |
| 1502 #ifndef make_number | 1502 #ifndef make_number |
| 1503 Lisp_Object | 1503 Lisp_Object |
| 1504 make_number (n) | 1504 make_number (n) |
| 1505 int n; | 1505 EMACS_INT n; |
| 1506 { | 1506 { |
| 1507 Lisp_Object obj; | 1507 Lisp_Object obj; |
| 1508 obj.s.val = n; | 1508 obj.s.val = n; |
| 1509 obj.s.type = Lisp_Int; | 1509 obj.s.type = Lisp_Int; |
| 1510 return obj; | 1510 return obj; |
