~ chicken-core (chicken-5) /DEPRECATED


 1Deprecated functions and variables
 2==================================
 3
 45.3.1
 5- read/source-info from the internal, undocumented module
 6  (chicken compiler support) is deprecated.  Instead, use
 7  read-with-source-info from (chicken syntax).
 8- "set-signal-handler!" and "signal-handler" have been deprecated
 9  in favor of "make-signal-handler" and "ignore-signal" which are
10  better suited in a multithreaded environment.
11- "chicken-home" is deprecated as it is not possible to override
12  when installing eggs into a custom location. Use "include-path" instead
13  (or "##sys#include-pathnames" for code that is intended to be
14  backwards compatible) when accessing the data location.
15
165.2.1
17- current-milliseconds and its C implementations C_milliseconds and
18  C_a_i_current_milliseconds have been deprecated in favor of
19  current-process_milliseconds, C_current_process_milliseconds and
20  C_a_i_current_process_milliseconds
21- C_pair() is now officially deprecated in favor of C_a_pair(), which
22  should also be faster.
23
245.1.1
25
26- ##sys#check-exact and its C implementations C_i_check_exact and
27  C_i_check_exact_2 have been deprecated (see also #1631).
28- "C_u_i_zerop" has been turned into an inline operation and is
29  deprecated in favor of "C_u_i_zerop2".
30- The define-record-printer macro has been deprecated in favour of
31  record-printer and set-record-printer! procedures, and a SRFI-17
32  setter for the former.
33
34
355.0.0
36
37- "bit->boolean" has been introduced temporarily to avoid users
38  having to figure out why "bit-set?" uses a different argument
39  order than the procedure with the same name that is specified in
40  SRFI-33 and SRFI-60. This procedure will be replaced by the proper
41  "bit-set?" in one of the next versions, together with a C level
42  macro or function.
43
44  See also: 45489c1b3d9fb20bacc91fa393ce7330dd61d22f
45
46  "bit->boolean" expands into "C_u_i_bit_to_bool", "C_i_bit_to_bool"
47  or "C_i_fixnum_bit_to_bool", which are all deprecated as well,
48  but might be re-used in a future version of "bit-set?".
Trap