Mercurial > hg > xemacs-beta
comparison src/fns.c @ 5002:0cd784a6ec44
fix some compile bugs of Aidan's
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-02-07 Ben Wing <ben@xemacs.org>
* fns.c: Qlist, Qstring mistakenly declared twice.
* fns.c (mapcarX):
(void) cast needed to avoid compile problem.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Sun, 07 Feb 2010 07:10:01 -0600 |
parents | 714d854d00e9 |
children | 1b96882bdf37 6f2158fa75ed |
comparison
equal
deleted
inserted
replaced
5001:714d854d00e9 | 5002:0cd784a6ec44 |
---|---|
54 /* NOTE: This symbol is also used in lread.c */ | 54 /* NOTE: This symbol is also used in lread.c */ |
55 #define FEATUREP_SYNTAX | 55 #define FEATUREP_SYNTAX |
56 | 56 |
57 Lisp_Object Qstring_lessp; | 57 Lisp_Object Qstring_lessp; |
58 Lisp_Object Qidentity; | 58 Lisp_Object Qidentity; |
59 Lisp_Object Qvector, Qarray, Qstring, Qlist, Qbit_vector; | 59 Lisp_Object Qvector, Qarray, Qbit_vector; |
60 | 60 |
61 Lisp_Object Qbase64_conversion_error; | 61 Lisp_Object Qbase64_conversion_error; |
62 | 62 |
63 Lisp_Object Vpath_separator; | 63 Lisp_Object Vpath_separator; |
64 | 64 |
3438 called = IGNORE_MULTIPLE_VALUES (called); | 3438 called = IGNORE_MULTIPLE_VALUES (called); |
3439 (BITP (called) && | 3439 (BITP (called) && |
3440 i < bit_vector_length (XBIT_VECTOR (lisp_vals))) ? | 3440 i < bit_vector_length (XBIT_VECTOR (lisp_vals))) ? |
3441 set_bit_vector_bit (XBIT_VECTOR (lisp_vals), i, | 3441 set_bit_vector_bit (XBIT_VECTOR (lisp_vals), i, |
3442 XINT (called)) : | 3442 XINT (called)) : |
3443 Faset (lisp_vals, make_int (i), called); | 3443 (void) Faset (lisp_vals, make_int (i), called); |
3444 break; | 3444 break; |
3445 } | 3445 } |
3446 bad_show_or_every_flag: | 3446 bad_show_or_every_flag: |
3447 default: | 3447 default: |
3448 { | 3448 { |