comparison modules/ChangeLog @ 5581:56144c8593a8

Mechanically change INT to FIXNUM in our sources. src/ChangeLog addition: 2011-10-09 Aidan Kehoe <kehoea@parhasard.net> [...] Mechanically change INT (where it refers to non-bignum Lisp integers) to FIXNUM in our sources. Done for the following functions, enums, and macros: Lisp_Type_Int_Even, Lisp_Type_Int_Odd, INT_GCBITS, INT_VALBITS, make_int(), INTP(), XINT(), CHECK_INT(), XREALINT(), INT_PLUS(), INT_MINUS(), EMACS_INT_MAX (to MOST_POSITIVE_FIXNUM), EMACS_INT_MIN (to MOST_NEGATIVE_FIXNUM), NUMBER_FITS_IN_AN_EMACS_INT() to NUMBER_FITS_IN_A_FIXNUM(), XFLOATINT, XCHAR_OR_INT, INT_OR_FLOAT. The EMACS_INT typedef was not changed, it does not describe non-bignum Lisp integers. Script that did the change available in http://mid.gmane.org/20067.17650.181273.12014@parhasard.net . modules/ChangeLog addition: 2011-10-09 Aidan Kehoe <kehoea@parhasard.net> [...] Mechanically change INT to FIXNUM, where the usage describes non-bignum Lisp integers. See the src/ChangeLog entry for more details. man/ChangeLog addition: 2011-10-09 Aidan Kehoe <kehoea@parhasard.net> * internals/internals.texi (How Lisp Objects Are Represented in C): * internals/internals.texi (Integers and Characters): Mechanically change INT to FIXNUM, where the usage describes non-bignum Lisp integers.
author Aidan Kehoe <kehoea@parhasard.net>
date Sun, 09 Oct 2011 09:51:57 +0100
parents 4aa8ee813265
children 900a0a8796c3
comparison
equal deleted inserted replaced
5580:a0e81357194e 5581:56144c8593a8
1 2011-10-09 Aidan Kehoe <kehoea@parhasard.net>
2
3 * postgresql/postgresql.c (Fpq_conn_defaults):
4 * postgresql/postgresql.c (Fpq_client_encoding):
5 * postgresql/postgresql.c (Fpq_set_client_encoding):
6 * postgresql/postgresql.c (Fpq_pgconn):
7 * postgresql/postgresql.c (Fpq_ntuples):
8 * postgresql/postgresql.c (Fpq_nfields):
9 * postgresql/postgresql.c (Fpq_fname):
10 * postgresql/postgresql.c (Fpq_fnumber):
11 * postgresql/postgresql.c (Fpq_ftype):
12 * postgresql/postgresql.c (Fpq_fsize):
13 * postgresql/postgresql.c (Fpq_fmod):
14 * postgresql/postgresql.c (Fpq_get_value):
15 * postgresql/postgresql.c (Fpq_get_length):
16 * postgresql/postgresql.c (Fpq_get_is_null):
17 * postgresql/postgresql.c (Fpq_oid_value):
18 * postgresql/postgresql.c (Fpq_set_nonblocking):
19 * postgresql/postgresql.c (Fpq_flush):
20 * postgresql/postgresql.c (Fpq_notifies):
21 * postgresql/postgresql.c (Fpq_env_2_encoding):
22 * postgresql/postgresql.c (Fpq_lo_import):
23 * postgresql/postgresql.c (Fpq_lo_export):
24 * postgresql/postgresql.c (Fpq_get_line):
25 * postgresql/postgresql.c (Fpq_get_line_async):
26 * postgresql/postgresql.c (init_postgresql_from_environment):
27 * ldap/eldap.c (Fldap_open):
28 * ldap/eldap.c (Fldap_search_basic):
29 * ldap/eldap.c (Fldap_add):
30 * ldap/eldap.c (Fldap_modify):
31 * canna/canna_api.c (storeResults):
32 * canna/canna_api.c (Fcanna_initialize):
33 * canna/canna_api.c (Fcanna_set_width):
34 * canna/canna_api.c (Fcanna_change_mode):
35 * canna/canna_api.c (Fcanna_do_function):
36 * canna/canna_api.c (Fcanna_henkan_next):
37 * canna/canna_api.c (Fcanna_bunsetu_henkou):
38 * canna/canna_api.c (Fcanna_henkan_kakutei):
39 Mechanically change INT to FIXNUM, where the usage describes non-bignum
40 Lisp integers. See the src/ChangeLog entry for more details.
41
1 2011-05-20 Jerry James <james@xemacs.org> 42 2011-05-20 Jerry James <james@xemacs.org>
2 43
3 * base64/Makefile: Default DESTDIR to the empty string, and use it in 44 * base64/Makefile: Default DESTDIR to the empty string, and use it in
4 install targets. 45 install targets.
5 * common/Makefile.common: Ditto. 46 * common/Makefile.common: Ditto.