~ chicken-core (master) /DEPRECATED


 1Deprecated functions and variables
 2==================================
 3
 46.0.1
 5- The procedure "read-buffered" can return a string with incomplete
 6  codepoints when a non-binary encoding is used in the port. It
 7  will be replaced by a method that returns bytevectors in the
 8  future.
 9
106.0.0
11- The foreign type "blob" is obsolete and equivalent to the 
12  foreign type "bytevector".
13
145.3.1
15- "set-signal-handler!" and "signal-handler" have been deprecated
16  in favor of "make-signal-handler" and "ignore-signal" which are
17  better suited in a multithreaded environment.
18
195.0.0
20- "bit->boolean" has been introduced temporarily to avoid users
21  having to figure out why "bit-set?" uses a different argument
22  order than the procedure with the same name that is specified in
23  SRFI-33 and SRFI-60. This procedure will be replaced by the proper
24  "bit-set?" in one of the next versions, together with a C level
25  macro or function.
26
27  See also: 45489c1b3d9fb20bacc91fa393ce7330dd61d22f
28
29  "bit->boolean" expands into "C_u_i_bit_to_bool", "C_i_bit_to_bool"
30  or "C_i_fixnum_bit_to_bool", which are all deprecated as well,
31  but might be re-used in a future version of "bit-set?".
Trap