ChangeLog-2008 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320
  1. 2008-06-28 Ludovic Courtès <ludo@gnu.org>
  2. * Makefile.am (INCLUDES): Renamed to...
  3. (AM_CPPFLAGS): this, to match current Automake conventions.
  4. * srfi-19.scm (priv:read-tai-utc-data): Use `eof-object?'
  5. instead of comparing LINE with `eof'.
  6. 2008-04-28 Ludovic Courtès <ludo@gnu.org>
  7. * srfi-1.c (scm_srfi1_partition): Properly type-check LIST.
  8. Reported by Julian Graham <joolean@gmail.com>.
  9. 2008-04-27 Ludovic Courtès <ludo@gnu.org>
  10. * srfi-1.c: Include <config.h>.
  11. 2008-04-26 Ludovic Courtès <ludo@gnu.org>
  12. * srfi-35.scm: Provide `srfi-35' through `cond-expand-provide'.
  13. 2008-04-26 Ludovic Courtès <ludo@gnu.org>
  14. * Makefile.am (srfi_DATA): Add `srfi-88.scm'.
  15. * srfi-88.scm: New file.
  16. 2008-03-12 Ludovic Courtès <ludo@gnu.org>
  17. * srfi-37.scm (args-fold)[short-option]: Set ARGS to `(cdr
  18. args)' before calling `next-arg'. This fixes parsing of
  19. argument-less options when using short names.
  20. 2008-01-22 Neil Jerram <neil@ossau.uklinux.net>
  21. * srfi-39.scm: Update copyright statement to LGPL.
  22. 2007-12-13 Stephen Compall <s11@member.fsf.org>
  23. * srfi-69.scm (without-keyword-args): Use `cdr' instead of
  24. `rest'.
  25. 2007-12-03 Stephen Compall <s11@member.fsf.org>
  26. * srfi-69.scm: New file.
  27. * Makefile.am: Add it.
  28. 2007-09-10 Ludovic Courtès <ludo@gnu.org>
  29. * srfi-35.scm (make-compound-condition-type): When PARENTS
  30. contains only one element, return its car. This improves the
  31. output of `print-condition' for non-compound conditions returned
  32. by `make-compound-condition'.
  33. 2007-08-11 Ludovic Courtès <ludo@gnu.org>
  34. * srfi-35.scm: New file.
  35. * Makefile.am (srfi_DATA): Added `srfi-35.scm'.
  36. 2007-07-18 Stephen Compall <s11@member.fsf.org>
  37. * srfi-37.scm: New file.
  38. * Makefile.am: Add it.
  39. 2007-07-09 Ludovic Courtès <ludo@gnu.org>
  40. * srfi-19.scm (date->julian-day): Take OFFSET into account.
  41. Patch by Jon Wilson <j85wilson@fastmail.fm>.
  42. 2007-05-09 Ludovic Courtès <ludo@chbouib.org>
  43. * srfi-19.scm (priv:current-time-process): Removed shadowing
  44. definition that returned a list. Use the right argument order to
  45. `make-time'. Reported by Scott Shedden.
  46. 2006-12-02 Kevin Ryde <user42@zip.com.au>
  47. * srfi-60.c (scm_srfi60_copy_bit): Should be long not int for fixnum
  48. bitshift, fixes 64-bit systems setting a bit between 32 and 63.
  49. Reported by Aaron M. Ucko, Debian bug 396119.
  50. 2006-05-28 Kevin Ryde <user42@zip.com.au>
  51. * srfi-1.scm, srfi-1.c, srfi-1.h (append-reverse, append-reverse!):
  52. Rewrite in C.
  53. 2006-05-20 Kevin Ryde <user42@zip.com.au>
  54. * srfi-1.c (scm_srfi1_assoc): Correction to comparison procedure
  55. argument order, SRFI-1 specifies given key is first.
  56. 2006-02-06 Marius Vollmer <mvo@zagadka.de>
  57. * srfi-1.scm, srfi-60.scm: Updated versions in library name to
  58. match GUILE-VERSION.
  59. 2006-02-04 Kevin Ryde <user42@zip.com.au>
  60. * srfi-1.c (scm_srfi1_delete, scm_srfi1_delete_duplicates): Use a
  61. count to protect against nasty code in the equality procedure changing
  62. the lists we're working on. The results don't have to be sensible in
  63. that case, just not hang or access non-cells.
  64. * srfi-60.c (booleans->integer): Avoid newline in macro, it breaks the
  65. snarfer.
  66. 2005-11-24 Kevin Ryde <user42@zip.com.au>
  67. * srfi-1.scm, srfi-1.c, srfi-1.h (lset-difference!): Rewrite in C.
  68. 2005-08-19 Kevin Ryde <user42@zip.com.au>
  69. * srfi-19.scm (priv:leap-second-table): Add new 2005 leap second.
  70. 2005-08-12 Marius Vollmer <mvo@zagadka.de>
  71. * srfi-1.c: Use scm_is_null instead of SCM_NULLP. Thanks to
  72. Peter Gavin!
  73. 2005-08-01 Marius Vollmer <mvo@zagadka.de>
  74. * srfi-1.c (check_map_args): Move check_map_error label and elt
  75. variable outside of loop scope so that we do not jump past the
  76. initialization of elt.
  77. 2005-06-12 Marius Vollmer <mvo@zagadka.de>
  78. * srfi-1.c: Do not use INUM macros, they are deprecated.
  79. 2005-05-07 Kevin Ryde <user42@zip.com.au>
  80. * srfi-1.scm, srfi-1.c, srfi-1.h (car+cdr, fold, last, list-index,
  81. list-tabulate, not-pair, xcons): Rewrite in C.
  82. 2005-05-04 Kevin Ryde <user42@zip.com.au>
  83. * srfi-1.scm, srfi-1.c, srfi-1.h (break, break!, drop-right!,
  84. drop-while, eighth, fifth, lset-adjoin, ninth, reduce, reduce-right,
  85. seventh, sixth, span, span!, take!, take-while, take-while!, tenth):
  86. Rewrite in C.
  87. 2005-04-23 Kevin Ryde <user42@zip.com.au>
  88. * srfi-1.c (scm_srfi1_count, scm_srfi1_filter_map): Don't modify the
  89. rest argument, that belongs to the caller when reached from apply.
  90. Use a temp vector like scm_srfi1_for_each.
  91. 2005-04-04 Kevin Ryde <user42@zip.com.au>
  92. * srfi-1.c, srfi-1.h (scm_srfi1_concatenate, scm_srfi1_concatenate_x):
  93. Add code to check argument is a list, scm_append and scm_append_x
  94. don't do that on their "rest" list (in a normal build).
  95. 2005-04-02 Kevin Ryde <user42@zip.com.au>
  96. * srfi-1.c (scm_srfi1_count): Use scm_list_copy to make arg list,
  97. instead of an inline loop. Share final list check between all cases
  98. to save some code.
  99. * srfi-1.c (scm_srfi1_filter_map): Have 2-arg case share finalization
  100. code of 1-arg case.
  101. * srfi-1.scm (alist-cons): Define just as acons, not a call to acons.
  102. * srfi-1.scm, srfi-1.c, srfi-1.h (alist-copy): Rewrite in C.
  103. * srfi-1.scm (lset-union): Rewrite to accumulate result by consing in
  104. the order specified by the SRFI.
  105. 2005-03-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  106. * srfi-60.c: Replaced SCM_INUMP with SCM_I_INUMP and SCM_INUM with
  107. SCM_I_INUM throughout.
  108. 2005-03-26 Marius Vollmer <mvo@zagadka.de>
  109. * Makefile.am (srfiinclude_HEADERS): Added srfi-60.h.
  110. 2005-03-18 Kevin Ryde <user42@zip.com.au>
  111. * srfi-1.scm, srfi-1.c, srfi-1.h (filter-map): Rewrite in C.
  112. 2005-03-16 Kevin Ryde <user42@zip.com.au>
  113. * srfi-1.scm, srfi-1.c, srfi-1.h (drop-right, partition!, remove!,
  114. split-at, split-at!, take-right): Rewrite in C. remove! derived from
  115. core filter!.
  116. 2005-03-14 Kevin Ryde <user42@zip.com.au>
  117. * srfi-1.scm, srfi-1.c, srfi-1.h (find, find-tail): Rewrite in C.
  118. 2005-03-13 Kevin Ryde <user42@zip.com.au>
  119. * srfi-1.scm (lset-union): Call `=' procedure with args in the order
  120. specified by the SRFI.
  121. * srfi-60.scm, srfi-60.c, srfi-60.h: New files.
  122. * Makefile.am: Add them.
  123. 2005-03-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  124. * srfi-1.c: Use scm_is_pair instead of SCM_CONSP; use scm_is_null
  125. instead of SCM_NULLP.
  126. 2005-02-18 Kevin Ryde <user42@zip.com.au>
  127. * srfi-1.scm (lset-adjoin): Revert change using `list' not `acc', the
  128. spec is not quite clear, but reference code uses acc, so do that.
  129. 2005-02-12 Kevin Ryde <user42@zip.com.au>
  130. * srfi-1.scm (reduce, reduce-right): Don't call f with ridentity, use
  131. it only if lst is empty, per srfi and intended optimization reduce
  132. represents over fold.
  133. 2005-02-04 Kevin Ryde <user42@zip.com.au>
  134. * srfi-1.scm (list=): Correction to arguments passed to given elt=,
  135. spec is (elt= e[i] e[i+1]) for lists i and i+1, previously the first
  136. arg was always from list 0 not list i.
  137. 2005-01-29 Kevin Ryde <user42@zip.com.au>
  138. * srfi-1.scm (lset-adjoin): Actually use the given `=' procedure.
  139. Test membership only on the given `list', not `acc', as per the spec.
  140. * srfi-1.c, srfi-1.scm (remove): Rewrite in C, a trivial adaption from
  141. scm_filter in the core.
  142. * srfi-1.scm (remove!): Use filter!.
  143. 2005-01-28 Kevin Ryde <user42@zip.com.au>
  144. * srfi-1.scm (lset=): Correction to pred call arg order, srfi spec is
  145. (= e[i] e[i+1]), but had some calls the other way around.
  146. 2005-01-24 Kevin Ryde <user42@zip.com.au>
  147. * srfi-1.c (scm_srfi1_member): Correction to pred call arg order, srfi
  148. spec is (PRED X elem). Update docstring from manual.
  149. * srfi-1.scm (lset=): Allow no list arguments, per srfi spec example.
  150. 2005-01-18 Kevin Ryde <user42@zip.com.au>
  151. * srfi-1.scm: Remove (ice-9 session) and (ice-9 receive), not used.
  152. 2005-01-12 Kevin Ryde <user42@zip.com.au>
  153. * srfi-39.scm (current-input-port, current-output-port): Parameter
  154. replacements for core functions, per SRFI spec.
  155. (current-error-port): The same, for consistency.
  156. 2005-01-10 Marius Vollmer <mvo@zagadka.de>
  157. * srfi-1.c (check_args): Bugfix to change from 2005-01-02: ARGV is
  158. the vector to check, not ARGS.
  159. 2005-01-02 Marius Vollmer <mvo@zagadka.de>
  160. * srfi-1.c: Use new vector elements API or simple vector API, as
  161. appropriate.
  162. 2005-01-02 Kevin Ryde <user42@zip.com.au>
  163. * Makefile.am (srfi_DATA): Add srfi-39.scm.
  164. 2004-12-20 Mikael Djurfeldt <djurfeldt@nada.kth.se>
  165. * README: Update, document available SRFIs.
  166. 2004-12-06 Kevin Ryde <user42@zip.com.au>
  167. * srfi-1.scm (alist-copy, alist-delete, break, span): Change to
  168. tail-recursive forms.
  169. * srfi-1.scm (alist-delete): Correction to equality proc call argument
  170. order, spec is for given KEY param first.
  171. 2004-12-05 Kevin Ryde <user42@zip.com.au>
  172. * srfi-1.scm (filter-map): Change to a tail-recursive form.
  173. (append-map, append-map!): Rewrite as simple "concatenate map" forms,
  174. for tail recursiveness.
  175. 2004-10-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  176. * srfi-4.scm, srfi-4.h, srfi-4.c: Moved content into core; only
  177. the skeletons remains.
  178. 2004-10-22 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  179. * srfi-4.c (print_int64, print_uint64): Removed.
  180. (uvec_print): Use scm_intprint for signed elemets and
  181. scm_uintprint for unsigned ones. Do not use print_int64 and
  182. print_uint64 since scm_intprint and scm_Uintprint can handle 64
  183. bits now.
  184. 2004-09-03 Stefan Jahn <stefan@lkcc.org>
  185. * srfi-1.c, srfi-1.h: Renamed any 'lst1' into 'list1' because
  186. lst1 is a #define on Win32 systems.
  187. 2004-08-26 Kevin Ryde <user42@zip.com.au>
  188. * srfi-31.scm (rec): Add missing `error' to else clause.
  189. 2004-08-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  190. * Makefile.am: Added appropriate @LIBGUILE_*_MAJOR@ substitutions
  191. to the library names.
  192. * srfi-1.scm, srfi-4.scm: Use the new library names with
  193. load-extension.
  194. 2004-08-25 Marius Vollmer <mvo@zagadka.de>
  195. SRFI-13 and SRFI-14 have been moved into the core.
  196. * srfi-13.scm, srfi-14.scm: Simply re-export the relevant
  197. bindings.
  198. * srfi-13.h, srfi-13.c, srfi-14.h, srfi-14.c: Removed all real
  199. content except for the init functions.
  200. 2004-08-19 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  201. * srfi-13.h, srfi-13.c: (scm_substring_shared): Renamed to
  202. scm_substring_sharedS.
  203. * srfi-14.c, srfi-13.c: Adapted to new internal string and symbol
  204. API.
  205. * srfi-13.scm (substring/shared): Export as replacement since we
  206. now have a version in the core.
  207. 2004-08-15 Marius Vollmer <mvo@zagadka.de>
  208. * srfi-39.scm: New, from Jose A Ortega Ruiz. Thanks!
  209. 2004-08-14 Kevin Ryde <user42@zip.com.au>
  210. * srfi-13.c (scm_string_any, scm_string_every): Add support for char
  211. and charset as predicates, per SRFI-13 spec.
  212. 2004-08-12 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  213. * srfi-13.c (MY_VALIDATE_SUBSTRING_SPEC_COPY,
  214. MY_VALIDATE_STRING_COPY): Modernized clones of the deprecated
  215. validation macros. Replaced every use.
  216. 2004-08-05 Kevin Ryde <user42@zip.com.au>
  217. * srfi-13.c (scm_string_any, scm_string_every): Enhance docstrings as
  218. per doc/ref/srfi-modules.texi.
  219. 2004-08-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  220. * srfi-4.c: Replaced scm_num2* and scm_*2num with scm_to_* and
  221. scm_from_*, respectively.
  222. (print_int64, print_uint64): Rewritten by just calling scm_iprin1
  223. on a SCM.
  224. 2004-08-02 Kevin Ryde <user42@zip.com.au>
  225. * srfi-13.c (scm_string_every): Correction to initial "res" value,
  226. return should be #t for an empty string. Reported by Andreas Vögele.
  227. 2004-07-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  228. * srfi-13.c, srfi-14.c, srfi-4.c: Changed all uses of
  229. SCM_VALIDATE_INUM, SCM_VALIDATE_INUM_COPY, SCM_VALIDATE_BIGINT,
  230. SCM_VALIDATE_INUM_MIN, SCM_VALIDATE_INUM_MIN_COPY,
  231. SCM_VALIDATE_INUM_MIN_DEF_COPY,SCM_VALIDATE_INUM_DEF,
  232. SCM_VALIDATE_INUM_DEF_COPY, SCM_VALIDATE_INUM_RANGE,
  233. SCM_VALIDATE_INUM_RANGE_COPY to scm_to_size_t or similar.
  234. 2004-07-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  235. * srfi-1.c, srfi-13.c, srfi-14.c, srfi-4.c: Replaced all uses of
  236. deprecated SCM_FALSEP, SCM_NFALSEP, SCM_BOOL, SCM_NEGATE_BOOL, and
  237. SCM_BOOLP with scm_is_false, scm_is_true, scm_from_bool, and
  238. scm_is_bool, respectively.
  239. 2004-07-05 Kevin Ryde <user42@zip.com.au>
  240. * srfi-4.c (uvec_sizes): Add "const".
  241. * srfi-31.scm: Correction to heading comment.
  242. 2004-06-20 Rob Browning <rlb@defaultvalue.org>
  243. * srfi-4.c: fix #ifdef checks for 64-bit types; should be #if.
  244. Add separate symmetric test for SCM_HAVE_T_UINT64 in one case.
  245. (uvec_print): rewrite using a union to make more
  246. compact, and use static print_uint64 and print_int64 to print
  247. 64-bit elements.
  248. (print_int64): new static function (temporary fix).
  249. (print_uint64): new static function (temporary fix).
  250. * Makefile.am (srfi_DATA): add srfi-31.scm.
  251. * srfi-31.scm: new file.
  252. 2004-04-24 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
  253. * srfi-17.scm (setter, car, cdr etc.): When within one define
  254. expression a new variable in the local module is defined in terms
  255. of an equally named variable from some other module, use @ to
  256. refer to the variable in the other module. This is necessary due
  257. to section 5.2.1 of R5RS: In a define expression first the new
  258. binding is created and then the expression is evaluated.
  259. 2004-04-24 Kevin Ryde <user42@zip.com.au>
  260. * srfi-11.scm (let-values): Use make-symbol rather than gensym, for
  261. guaranteed uniqueness of temp variable symbols.
  262. 2004-04-15 Kevin Ryde <user42@zip.com.au>
  263. * srfi-13.c (scm_string_trim, scm_string_trim_right,
  264. scm_string_trim_both): Cast to unsigned char for isspace.
  265. 2004-04-06 Han-Wen Nienhuys <hanwen@xs4all.nl>
  266. * srfi-13.c (s_scm_string_map): convert character to unsigned char
  267. before converting to unsigned int. This prevents hi-bit ascii as
  268. being converted large integers.
  269. (string_upcase_x): change caller for scm_{up,down}case to
  270. scm_c_{up,down}case
  271. 2004-03-23 Kevin Ryde <user42@zip.com.au>
  272. * srfi-1.scm (circular-list): Rewrite using set-cdr!, no need to copy
  273. parameter list.
  274. 2004-02-08 Mikael Djurfeldt <djurfeldt@nada.kth.se>
  275. * Makefile.am (TAGS_FILES): Use this variable instead of
  276. ETAGS_ARGS so that TAGS can be built using separate build
  277. directory.
  278. 2004-01-24 Marius Vollmer <mvo@zagadka.de>
  279. * Makefile.am (srfi_DATA): Added srfi-26.scm.
  280. 2004-01-21 Marius Vollmer <m.vollmer@ping.de>
  281. * srfi-26.scm: New, from Daniel Skarda. Thanks!
  282. 2003-12-03 Kevin Ryde <user42@zip.com.au>
  283. * srfi-1.c, srfi-1.h, srfi-1.scm (count): Rewrite in C, avoiding
  284. non-tail recursion.
  285. * srfi-1.scm (map!): Define as an alias for map, previous definition
  286. was not tail-recursive.
  287. 2003-08-23 Kevin Ryde <user42@zip.com.au>
  288. * srfi-1.c, srfi-1.h, srfi-1.scm (list-copy): New function, derived
  289. from core list-copy but allowing improper lists, per SRFI-1 spec.
  290. * srfi-19.scm (date-week-number): Correction, day of week starting
  291. week applied was off by one.
  292. 2003-07-29 Kevin Ryde <user42@zip.com.au>
  293. * srfi-1.c, srfi-1.scm (concatenate, concatenate!): Use scm_append and
  294. scm_append_x.
  295. * srfi-1.c, srfi-1.h, srfi-1.scm (length+): Rewrite using scm_ilength.
  296. * srfi-34.scm: Add cond-expand-provide srfi-34.
  297. 2003-07-14 Matthias Koeppe <mkoeppe@mail.math.uni-magdeburg.de>
  298. * srfi-1.c, srfi-1.h (scm_srfi1_partition), srfi-1.scm (partition):
  299. Re-implement in C to avoid stack overflows for long input lists.
  300. 2003-07-08 Kevin Ryde <user42@zip.com.au>
  301. * srfi-1.c, srfi-1.h (scm_srfi1_delete, scm_srfi1_delete_x,
  302. scm_srfi1_delete_duplicates, scm_srfi1_delete_duplicates_x): New
  303. functions. scm_srfi1_delete_x is derived from scm_delete_x.
  304. * srfi-1.scm (delete, delete!, delete-duplicates, delete-duplicates!):
  305. Remove.
  306. 2003-06-07 Kevin Ryde <user42@zip.com.au>
  307. * srfi-6.scm: #:re-export open-input-string, open-output-string and
  308. get-output-string, for the benefit of applications wanting to use
  309. #:select on the module.
  310. 2003-05-29 Stefan Jahn <stefan@lkcc.org>
  311. * Makefile.am (libguile_srfi_srfi_1_la_LDFLAGS,
  312. libguile_srfi_srfi_4_la_LDFLAGS,
  313. libguile_srfi_srfi_13_14__la_LDFLAGS): Added the -no-undefined
  314. option for the mingw32 build.
  315. 2003-05-13 Kevin Ryde <user42@zip.com.au>
  316. * srfi-1.scm (delete): Fix predicate arg order to match srfi-1 spec.
  317. 2003-05-10 Kevin Ryde <user42@zip.com.au>
  318. * srfi-1.scm (take): Make this an alias for list-head.
  319. (drop): Make this an alias for list-tail.
  320. 2003-04-30 Neil Jerram <neil@ossau.uklinux.net>
  321. * srfi-34.scm: New file.
  322. 2003-04-23 Marius Vollmer <mvo@zagadka.de>
  323. * srfi-1.scm: Removed stray "o" from exports list.
  324. 2003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
  325. * srfi-1.c (srfi1_ilength): Prefer !SCM_CONSP over SCM_NCONSP.
  326. Now, guile itself does not include any calls to SCM_NCONSP any
  327. more.
  328. 2003-04-05 Marius Vollmer <mvo@zagadka.de>
  329. * Changed license terms to the plain LGPL thru-out.
  330. 2003-03-25 Rob Browning <rlb@defaultvalue.org>
  331. * srfi-4.c: replace typedefs for basic types with typedefs using
  332. new standard int types (i.e. scm_t_uint8, etc.) -- should probably
  333. remove typedefs altogether later.
  334. 2003-03-24 Mikael Djurfeldt <djurfeldt@nada.kth.se>
  335. * srfi-1.scm: Re-export all srfi-1 bindings implemented by the
  336. core. (Thanks to Kevin Ryde.)
  337. 2003-03-12 Mikael Djurfeldt <djurfeldt@nada.kth.se>
  338. * srfi-13.scm: Mark replacements.
  339. * srfi-17.scm: Mark replacements.
  340. 2003-03-11 Mikael Djurfeldt <djurfeldt@nada.kth.se>
  341. * srfi-1.scm (iota, map, for-each, map-in-order, list-index,
  342. member, delete, delete!, assoc): Marked as replacements.
  343. (filter, filter!): Removed. (Now implemented in the core.)
  344. 2003-03-06 Mikael Djurfeldt <djurfeldt@nada.kth.se>
  345. * srfi-1.c (scm_init_srfi_1): Extend root module map and for-each
  346. with the versions in this module using
  347. scm_c_extend_primitive_generic.
  348. 2003-02-03 Mikael Djurfeldt <djurfeldt@nada.kth.se>
  349. * srfi-1.c (srfi1_for_each): Corrected argument checking for the
  350. case of two argument lists. (Thanks to Kevin Ryde.)
  351. 2002-12-08 Rob Browning <rlb@defaultvalue.org>
  352. * Makefile.am (srfidir): VERSION -> GUILE_EFFECTIVE_VERSION.
  353. 2002-12-02 Marius Vollmer <mvo@zagadka.ping.de>
  354. * Makefile.am (srfiinclude_HEADERS): Added srfi-1.h.
  355. 2002-12-01 Mikael Djurfeldt <mdj@linnaeus>
  356. * srfi-1.scm: Load srfi-1 extension.
  357. (map, map-in-order, for-each, member, assoc): Replaced by
  358. primitives in srfi-1.c.
  359. (map1): Defined as `map'.
  360. * Makefile.am: Added rules for srfi-1.c.
  361. * srfi-1.c, srfi-1.h: New files.
  362. 2002-05-06 Marius Vollmer <mvo@zagadka.ping.de>
  363. * srfi-13.c (scm_string_tokenize): Instead of using "isgraphic" as
  364. the subtitute for char-set:graphic when then token-set hsa been
  365. defaulted, grab the real char-set:graphic from (srfi srfi-14).
  366. * srfi-14.h (SCM_CHARSET_GET): Cast IDX to unsigned char so that
  367. it works for 8-bit characters. Thanks to Matthias Koeppe! No,
  368. make that "Köppe".
  369. 2002-04-24 Marius Vollmer <mvo@zagadka.ping.de>
  370. * srfi-13.c (s_scm_string_tokenize): Only take character sets as
  371. the second arg. Collect characters belonging to this set into
  372. tokens (as specified by the SRFI), instead of splitting at these
  373. characters. Default to an equivalent of char-set:graphic instead
  374. of everything-but-whitespace. Thanks to Matthias Koeppe!
  375. 2002-04-10 Rob Browning <rlb@defaultvalue.org>
  376. * .cvsignore: add *.c.clean.c.
  377. 2002-03-27 Thien-Thi Nguyen <ttn@giblet.glug.org>
  378. * srfi-1.scm, srfi-13.scm, srfi-17.scm, srfi-4.scm, srfi-9.scm,
  379. srfi-10.scm, srfi-14.scm, srfi-19.scm, srfi-6.scm, srfi-11.scm,
  380. srfi-16.scm, srfi-2.scm, srfi-8.scm: Update copyright.
  381. Point to manual in commentary; nfc.
  382. 2002-03-24 Marius Vollmer <mvo@zagadka.ping.de>
  383. * Makefile.am (.c.x): Pass "-o $@" to guile-snarf.
  384. 2002-03-13 Thien-Thi Nguyen <ttn@giblet.glug.org>
  385. * srfi-13.c, srfi-14.c, srfi-4.c:
  386. Retire inclusion guard macro SCM_MAGIC_SNARFER.
  387. * Makefile.am (snarfcppopts): New var.
  388. (.c.x): Use $(snarfcppopts). Rework guile-snarf usage.
  389. 2002-03-11 Marius Vollmer <mvo@zagadka.ping.de>
  390. * srfi-13.c (string_titlecase_x): Treat characters as unsigned so
  391. that 8-bit chars work. Thanks to David Pirotte!
  392. 2002-02-24 Rob Browning <rlb@defaultvalue.org>
  393. * Makefile.am (libguile_srfi_srfi_4_la_LDFLAGS): use
  394. @LIBGUILE_SRFI_SRFI_4_INTERFACE@.
  395. (libguile_srfi_srfi_13_14_la_LDFLAGS): use
  396. @LIBGUILE_SRFI_SRFI_13_14_INTERFACE@.
  397. 2002-02-23 Neil Jerram <neil@ossau.uklinux.net>
  398. * srfi-19.scm (priv:month-assoc): Correct numbers so that they
  399. match the expectations of priv:year-day.
  400. 2002-02-22 Neil Jerram <neil@ossau.uklinux.net>
  401. * srfi-19.scm (priv:year-day): Index into priv:month-assoc using
  402. month number, not day number. (Thanks to Sébastien de Menten de
  403. Horne for reporting the problem.)
  404. 2002-02-11 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  405. * srfi-14.c, srfi-4.c: Use scm_gc_malloc/scm_malloc and
  406. scm_gc_free/free instead of scm_must_malloc and scm_must_free, as
  407. appropriate.
  408. 2002-01-21 Thien-Thi Nguyen <ttn@giblet.glug.org>
  409. * srfi-1.scm (count1, take-while): Rewrite to be tail-recursive.
  410. Thanks to Panagiotis Vossos.
  411. 2002-01-20 Thien-Thi Nguyen <ttn@giblet.glug.org>
  412. * srfi-1.scm (map1): Rewrite to be tail-recursive.
  413. Thanks to Panagiotis Vossos for the bug report.
  414. 2001-12-16 Marius Vollmer <mvo@zagadka.ping.de>
  415. * srfi-11.scm (let-values): Use `gensym' instead of `gentemp'.
  416. 2001-11-30 Neil Jerram <neil@ossau.uklinux.net>
  417. * Makefile.am (ETAGS_ARGS): Added.
  418. 2001-11-12 Marius Vollmer <mvo@zagadka.ping.de>
  419. * srfi-4.c: Use HAVE_LONG_LONG instead of HAVE_LONG_LONGS and test
  420. it with `#ifdef' instead of `#if'.
  421. 2001-11-07 Neil Jerram <neil@ossau.uklinux.net>
  422. * srfi-13.c (scm_string_unfold, scm_string_unfold_right),
  423. srfi-14.c (scm_char_set_unfold, scm_char_set_unfold_x): Remove
  424. superfluous whitespace at end of docstring lines.
  425. 2001-11-06 Thien-Thi Nguyen <ttn@glug.org>
  426. * srfi-19.scm (time-monotonic->time-monotonic): Spurious;
  427. remove from exports.
  428. 2001-11-04 Stefan Jahn <stefan@lkcc.org>
  429. * srfi-13.h, srfi-14.h, srfi-4.h: Follow-up patch. Renamed
  430. __FOO__ macros into FOO.
  431. 2001-11-03 Marius Vollmer <mvo@zagadka.ping.de>
  432. * Makefile.am (libguile_srfi_srfi_4_la_LIBADD,
  433. libguile_srfi_srfi_13_14_la_LIBADD): Refer to build directory, not
  434. the source directory, for libguile.la. Thanks to Ken Raeburn.
  435. 2001-11-02 Marius Vollmer <mvo@zagadka.ping.de>
  436. Support for native Win32. Thanks to Stefan Jahn!
  437. * Makefile.am: Put `-no-undefined' into LDFLAGS to support linkers
  438. which do not allow unresolved symbols inside shared libraries.
  439. * srfi-13.h, srfi-14.h: Defined SCM_SRFI1314_API. Prefixed each
  440. exported symbol with SCM_SRFI1314_API.
  441. * srfi-4.h: Defined SCM_SRFI4_API. Prefixed each exported
  442. symbol with SCM_SRFI4_API.
  443. 2001-10-21 Mikael Djurfeldt <mdj@linnaeus>
  444. * srfi-2.scm, srfi-4.scm, srfi-8.scm, srfi-9.scm, srfi-10.scm,
  445. srfi-11.scm, srfi-14.scm, srfi-16.scm: Move module the system
  446. directives `export', `export-syntax', `re-export' and
  447. `re-export-syntax' into the `define-module' form. This is the
  448. recommended way of exporting bindings.
  449. 2001-09-22 Mikael Djurfeldt <mdj@linnaeus>
  450. * srfi-19.scm (priv:split-real): Inserted missing call to
  451. inexact->exact.
  452. 2001-09-21 Rob Browning <rlb@defaultvalue.org>
  453. * srfi-14.h (SCM_CHARSET_GET): need 1L, not just 1 in "<<".
  454. * srfi-14.c (SCM_CHARSET_SET): need 1L, not just 1 in "<<".
  455. (scm_char_set_hash): val needs to be long, not just unsigned.
  456. (scm_char_set): need 1L, not just 1 in "<<".
  457. (scm_list_to_char_set): need 1L, not just 1 in "<<".
  458. (scm_list_to_char_set_x): need 1L, not just 1 in "<<".
  459. (scm_list_to_char_set_x): FUNC_NAME was wrong - added a _x.
  460. (scm_string_to_char_set): string length var needed to be
  461. scm_sizet, not int.
  462. (scm_string_to_char_set): need 1L, not just 1 in "<<".
  463. (scm_string_to_char_set_x): string length var needed to be
  464. scm_sizet, not int.
  465. (scm_string_to_char_set_x): need 1L, not just 1 in "<<".
  466. (scm_char_set_filter): need 1L, not just 1 in "<<".
  467. (scm_char_set_filter_x): need 1L, not just 1 in "<<".
  468. (scm_ucs_range_to_char_set): need 1L, not just 1 in "<<".
  469. (scm_ucs_range_to_char_set_x): need 1L, not just 1 in "<<".
  470. (scm_char_set_adjoin): need 1L, not just 1 in "<<".
  471. (scm_char_set_delete): need 1L, not just 1 in "<<".
  472. (scm_char_set_adjoin_x): need 1L, not just 1 in "<<".
  473. (scm_char_set_delete_x): need 1L, not just 1 in "<<".
  474. 2001-09-12 Gary Houston <ghouston@arglist.com>
  475. * srfi-1.scm (filter): change "caller" to "filter" in check-arg-type.
  476. 2001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
  477. * srfi-1.scm, srfi-13.scm: Remove the defines that were needed to
  478. trick export from the beginning of the files.
  479. 2001-08-25 Thien-Thi Nguyen <ttn@revel.glug.org>
  480. * srfi-19.scm (add-duration): Fix bug: Call `add-duration!' w/
  481. two args. Thanks to Alex Shinn.
  482. 2001-08-25 Marius Vollmer <mvo@zagadka.ping.de>
  483. * Makefile.am (AUTOMAKE_OPTIONS): Change "foreign" to "gnu".
  484. 2001-08-24 Thien-Thi Nguyen <ttn@revel.glug.org>
  485. * srfi-13.h (scm_string_map, scm_string_map_x,
  486. scm_string_for_each): Reverse order of first two args.
  487. (scm_string_for_each_index): New proc.
  488. * srfi-13.c (scm_string_for_each): Reverse order of first 2 args.
  489. (scm_string_for_each_index): New func.
  490. * srfi-13.scm (string-for-each-index): New exported proc.
  491. Thanks to Alex Shinn.
  492. 2001-08-22 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
  493. * srfi-13.c (string-map): Swapped order of string and proc args to
  494. conform with the srfi. (Thanks to Alex Shinn.)
  495. 2001-08-05 Gary Houston <ghouston@arglist.com>
  496. * srfi-1.scm (check-arg-type, non-negative-integer?): a couple of new
  497. internal definitions.
  498. (list-tabulate, iota): check for bad arguments that otherwise
  499. give weird output.
  500. (filter): check for proper list, to avoid infinite recursion on
  501. a circular list.
  502. 2001-08-04 Gary Houston <ghouston@arglist.com>
  503. * srfi-1.scm (filter): replaced with a tail-recursive version.
  504. (remove): implement using filter, to make it tail-recursive.
  505. 2001-07-31 Gary Houston <ghouston@arglist.com>
  506. * srfi-14.c (scm_char_set_diff_plus_intersection): wasn't correctly
  507. accounting for the (char-set-union cs2...) in the spec. i.e.,
  508. (char-set-diff+intersection a) -> copy-of-a, empty-set
  509. and the following are equivalent:
  510. (char-set-diff+intersection a (char-set #\a) (char-set #\b))
  511. (char-set-diff+intersection a (char-set #\a #\b))
  512. (scm_char_set_xor_x): disabled the side-effecting code, since it
  513. gives inconsistent results to scm_char_set_xor for the case
  514. (char-set-xor! a a a).
  515. (scm_char_set_diff_plus_intersection_x): added cs2 argument, since
  516. two arguments are compulsory in final spec. also similar changes
  517. as for scm_char_set_diff_plus_intersection.
  518. * srfi-14.h (scm_char_set_diff_plus_intersection_x): added cs2.
  519. 2001-07-22 Gary Houston <ghouston@arglist.com>
  520. * srfi-14.c (scm_char_set_intersection, scm_char_set_xor): remove
  521. the compulsory cs1 arguments: all args are optional in final spec.
  522. * srfi-14.h: declarations updated.
  523. 2001-07-18 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  524. * srfi-11.scm, srfi-8.scm: Update copyright notice.
  525. 2001-07-17 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  526. * srfi-14.c: Okay. Now I got it. Really. This time it's fixed.
  527. Guaranteed. (Maybe)
  528. * srfi-19.scm: Define `current-time' before exporting it.
  529. 2001-07-17 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  530. * srfi-14.c: Fix for bug caused by brain-malfunctioning on my
  531. side. Bit sets were handled wrong because I couldn't tell bit
  532. counts from byte counts. Also, the bit array should be 256 / 8
  533. bytes long. Thank you, Gary!
  534. Removed unnecessary protoype for scm_char_set_copy.
  535. 2001-07-16 Gary Houston <ghouston@arglist.com>
  536. * srfi-14.scm: export string->char-set!, not string-char-set!.
  537. * srfi-14.c (scm_char_set_ref, scm_char_set_cursor_next,
  538. scm_end_of_char_set_p): reject negative cursor values.
  539. (scm_list_to_char_set, scm_list_to_char_set_x): when reporting
  540. type error in list component, omit the position (was always 1).
  541. 2001-07-16 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  542. (scm_char_set_map): Bug-fix: char-set-map was modifying the
  543. argument instead of the return value.
  544. 2001-07-16 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  545. * srfi-14.c: Allocate correct memory size for charsets (32 bytes),
  546. use this value for initializing and comparing charsets.
  547. (scm_char_set_hash): Use ``better'' hash algorithm which produces
  548. more values.
  549. 2001-07-15 Gary Houston <ghouston@arglist.com>
  550. * srfi-14.c (scm_char_set_hash): recognise 0 instead of #f in the
  551. opt arg to give default bound, as in final spec. don't allow
  552. negative bounds.
  553. (scm_char_set_hash): bug fix: was overrunning the buffer and
  554. calculating based on garbage.
  555. (scm_char_set_eq, scm_char_set_leq): fix argument number in error
  556. reporting: wasn't incremented due to macro coding.
  557. (scm_char_set): report argument number in error reporting: was
  558. hard coded to 1. remove a couple of local variables.
  559. 2001-07-13 Marius Vollmer <mvo@zagadka.ping.de>
  560. * srfi-2.scm (and-let*): Use `re-export-syntax' instead of
  561. `export-syntax'.
  562. 2001-07-11 Gary Houston <ghouston@arglist.com>
  563. * srfi-14.c (s_scm_char_set_eq): bug fix: (char-set=) should
  564. return #t instead of giving wrong-number-of-arguments . take a
  565. single "rest" argument. use memcmp instead of a loop to compare
  566. the values.
  567. (s_scm_char_set_leq): similarly, (char-set<=) should return #t.
  568. take a single "rest" argument.
  569. srfi-14.h: update the declarations.
  570. 2001-07-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  571. * README: Cleanup.
  572. 2001-07-06 Gary Houston <ghouston@arglist.com>
  573. * srfi-1.scm (iota, map, for-each, list-index, member, delete,
  574. delete!, assoc): roll back the previous change. instead place
  575. dummy definitions in a deprecated block at the beginning as in
  576. srfi-13.scm.
  577. 2001-07-06 Rob Browning <rlb@defaultvalue.org>
  578. * srfi-19.scm (priv:locale-reader): don't need open-output-string.
  579. 2001-07-03 Gary Houston <ghouston@arglist.com>
  580. * srfi-1.scm (iota, map, for-each, list-index, member, delete,
  581. delete!, assoc): don't export until the new bindings have been
  582. created. otherwise "export" thinks they are being re-exported and
  583. a deprecation warning is produced.
  584. (map-in-order): defined and exported, to support lists of unequal
  585. length.
  586. 2001-07-03 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  587. * srfi-1.scm (list-tabulate): Do not go into infinite loop for
  588. invalid arguments. Same fix for several other procedures (do not
  589. use zero?, use <= 0).
  590. 2001-07-02 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  591. * srfi-1.scm: Replaced calls to `map' in several procedures to
  592. calls to `map1'.
  593. (map, for-each): New procedures, extended from R5RS.
  594. 2001-06-28 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  595. * srfi-4.c: Minor cleanups.
  596. * srfi-14.c (scm_char_set_fold, scm_char_set_unfold)
  597. (scm_char_set_unfold_x, scm_char_set_for_each)
  598. (scm_char_set_map, scm_char_set_filter)
  599. (scm_char_set_filter_x, scm_char_set_count)
  600. (scm_char_set_every, scm_char_set_any): Replace calls to
  601. scm_apply() with the corresponding scm_call_N() functions.
  602. * srfi-14.c (scm_char_set_ref, scm_char_set_cursor_next)
  603. (scm_char_set_unfold, scm_char_set_unfold_x)
  604. (scm_char_set_map, scm_char_set_diff_plus_intersection)
  605. (scm_char_set_diff_plus_intersection_x): Replace deprecated macros
  606. SCM_LISTN with calls to scm_list_N().
  607. * srfi-13.c (scm_string_tabulate, scm_string_map)
  608. (scm_string_map_x, scm_string_unfold)
  609. (scm_string_unfold_right): Replace deprecated macros SCM_LISTN
  610. with calls to scm_list_N().
  611. * srfi-13.c (scm_string_any, scm_string_every),
  612. (scm_string_tabulate, scm_string_trim),
  613. (scm_string_trim_right, scm_string_trim_both),
  614. (scm_string_compare, scm_string_compare_ci),
  615. (scm_string_indexS, scm_string_index_right),
  616. (scm_string_skip, scm_string_skip_right, scm_string_count),
  617. (scm_string_map, scm_string_map_x, scm_string_fold),
  618. (scm_string_fold_right, scm_string_unfold),
  619. (scm_string_unfold_right, scm_string_for_each),
  620. (scm_string_filter, scm_string_delete): Replace calls to
  621. scm_apply() with the corresponding scm_call_N() functions.
  622. 2001-06-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  623. * Makefile.am: Added SRFI-4 files in various places.
  624. * srfi-4.c, srfi-4.h, srfi-4.scm: New files implementing SRFI-4.
  625. 2001-06-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
  626. * srfi-13.c (scm_string_copyS, scm_string_take, scm_string_drop,
  627. scm_string_take_right, scm_string_drop_right, scm_string_trim,
  628. scm_string_trim_right, scm_string_trim_both, scm_string_tokenize):
  629. Use scm_mem2string instead of scm_makfromstr.
  630. (scm_reverse_list_to_string, string_titlecase_x): Prefer
  631. !SCM_<pred> over SCM_N<pred>.
  632. 2001-06-25 Marius Vollmer <mvo@zagadka.ping.de>
  633. * srfi-8.scm: Use `re-export-syntax' to correctly re-export
  634. `receive'.
  635. 2001-06-18 Matthias Koeppe <mkoeppe@mail.math.uni-magdeburg.de>
  636. The SRFI-19 implementation was completely broken. Already the
  637. reference implementation did not handle DST and time zones
  638. properly and relied on non-R5RS-isms like passing reals to
  639. `quotient'. For Guile, some additional fixes were needed because
  640. of the incomplete numeric tower implementation. See also
  641. srfi-19.test.
  642. * srfi-19.scm (date-zone-offset): Fixed typo in export clause.
  643. (add-duration): Renamed from priv:add-duration.
  644. (priv:time-normalize!): Handle fractional nanoseconds; remove
  645. duplicate definition.
  646. (priv:current-time-tai): Fixed typo.
  647. (time=?, time<=?): Fixed typos.
  648. (time-tai->time-utc, time-utc->time-tai,
  649. time-utc->time-monotonic): Use make-time-unnormalized instead of
  650. make-time when uninitialized time fields are used.
  651. (set-date-nanosecond!, set-date-second!, set-date-minute!,
  652. set-date-hour!, set-date-day!, set-date-month!, set-date-year!,
  653. set-date-zone-offset!): Define.
  654. (priv:local-tz-offset): Take an extra argument in order to handle
  655. DST effects.
  656. (time-utc->date, time-tai->date, time-monotonic->date): Handle the
  657. changed signature of priv:local-tz-offset. Don't pass non-integer
  658. arguments to quotient (non-R5RS, not supported by Guile).
  659. (date->time-utc): Ensure that seconds in a date structure are
  660. always exact integers. Handle DST properly.
  661. (current-date, julian-day->date, modified-julian-day->date):
  662. Handle the changed signature of priv:local-tz-offset.
  663. (julian-day->time-utc): Reverted earlier inexact->exact hack;
  664. make-time now handles inexact arguments.
  665. (priv:locale-print-time-zone): At least print the numerical time
  666. zone.
  667. (priv:integer-reader): Fixed named let iteration.
  668. (priv:read-directives): Use set-date-month! instead of
  669. priv:set-date-month! etc.
  670. (string->date): Handle DST properly.
  671. 2001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
  672. * srfi-13.scm: Prevent `export' from re-exporting core bindings.
  673. 2001-06-07 Dirk Herrmann <D.Herrmann@tu-bs.de>
  674. * srfi-14.c (charset_print): Mark unused parameters with
  675. SCM_UNUSED.
  676. 2001-06-07 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  677. * srfi-1.scm (fold, fold-pair): Fixed a buggy call to apply.
  678. (delete-duplicates): Now the first occurrence of an element is
  679. retained, as required.
  680. (member, assoc): Fixed wrong order of equality predicate
  681. application.
  682. 2001-06-06 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  683. * README: Update.
  684. * srfi-1.scm: New file.
  685. 2001-06-04 Marius Vollmer <mvo@zagadka.ping.de>
  686. Added exception notice to all files.
  687. 2001-05-31 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  688. * srfi-14.scm, srfi-13.scm: Use `load-extension' for loading the
  689. shared library.
  690. 2001-05-31 Michael Livshin <mlivshin@bigfoot.com>
  691. * Makefile.am (MKDEP): copied from libguile/Makefile.am, just in
  692. case.
  693. (CLEANFILES): added *.x (and removed from DISTCLEANFILES)
  694. 2001-05-28 Michael Livshin <mlivshin@bigfoot.com>
  695. * srfi-19.scm: removed a stray open parenthesis. (thanks to
  696. Matthias Köppe for the report).
  697. 2001-05-23 Rob Browning <rlb@cs.utexas.edu>
  698. * srfi-19.scm (:optional): renamed to optional to avoid reader
  699. keywords conflict. Time passes... Removed :optional altogether
  700. and just handle optional args directly. Thanks to Matthias Koeppe
  701. for the report of this and the two bits below.
  702. (priv:decode-julian-day-number): add inexact->exact for truncate
  703. result.
  704. (time-utc->date): add inexact->exact and floor so quotient will
  705. work.
  706. 2001-05-22 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  707. * README: Update, document available SRFIs.
  708. 2001-05-21 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  709. * srfi-19.scm, srfi-17.scm, srfi-16.scm, srfi-14.scm, srfi-13.scm,
  710. srfi-11.scm, srfi-10.scm, srfi-9.scm, srfi-8.scm, srfi-6.scm,
  711. srfi-2.scm: Use `cond-expand-provide' for providing features to
  712. `cond-expand'.
  713. 2001-05-20 Marius Vollmer <mvo@zagadka.ping.de>
  714. * srfi-14.c (scm_c_init_srfi_14): Added "int" to declaration of
  715. `initialized'.
  716. 2001-05-19 Marius Vollmer <mvo@zagadka.ping.de>
  717. Avoid using module operations from C.
  718. * srfi-13.c (scm_init_srfi_13_14): Removed.
  719. * srfi-14.h, srfi-14.c (scm_c_init_srfi_14): New. Contains
  720. initializations needed by C clients of srfi-14.
  721. (scm_init_srfi_13, scm_init_srfi_14): Call it.
  722. * srfi-13.scm: Call "scm_init_srfi_13" instead of
  723. "scm_init_srfi_13_14".
  724. * srfi-14.scm: Call "scm_init_srfi_14" instead of
  725. "scm_init_srfi_13_14".
  726. 2001-05-16 Rob Browning <rlb@cs.utexas.edu>
  727. * srfi-19.scm (priv:integer-reader-exact): minor cleanups.
  728. 2001-05-14 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  729. * Makefile.am (srfi_DATA): Added srfi-16.scm.
  730. * srfi-16.scm: New file.
  731. 2001-05-10 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  732. * srfi-13.c (scm_string_delete): Logic was inversed for charset.
  733. Fixed.
  734. 2001-05-08 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  735. * srfi-13.c (scm_string_copyS): Fixed nasty bug.
  736. 2001-05-05 Rob Browning <rlb@cs.utexas.edu>
  737. * Makefile.am (srfi_DATA): added srfi-19.scm.
  738. * srfi-19.scm: New file - time/date SRFI. Thanks to Will
  739. Fitzgerald.
  740. 2001-05-02 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  741. * srfi-14.c, srfi-13.c: Added @bullet to various @itemize lists.
  742. * srfi-10.scm: Typo fix.
  743. 2001-05-02 Rob Browning <rlb@cs.utexas.edu>
  744. * srfi-11.scm (let-values): fix (a b c . d) case. Thanks Martin.
  745. 2001-05-02 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  746. * Makefile.am (srfi_DATA): Added srfi-10.scm and srfi-17.scm.
  747. * srfi-10.scm: New file.
  748. * srfi-17.scm: New file, contributed by Matthias Koeppe. Thanks a
  749. lot!
  750. Added `Commentary:' tag.
  751. * srfi-9.scm: Added `Commentary:' tag.
  752. 2001-04-27 Rob Browning <rlb@cs.utexas.edu>
  753. * srfi-13.h
  754. (scm_reverse_string_concatenate): renamed to
  755. scm_string_concatentate_reverse.
  756. (scm_reverse_string_concatenate_shared): renamed to
  757. scm_string_concatenate_reverse_shared.
  758. 2001-04-27 Gary Houston <ghouston@arglist.com>
  759. * srfi-13.c (scm_init_srfi_13), srfi-14.c (scm_init_srfi_14):
  760. add "srfi/" to lines including .x files so they can be found
  761. when build_dir != src_dir.
  762. 2001-04-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  763. * Makefile.am (srfi_DATA): Added srfi-9.scm.
  764. * srfi-9.scm: New file. Exports `define-record-type'.
  765. 2001-04-26 Rob Browning <rlb@cs.utexas.edu>
  766. * Makefile.am (srfi_DATA): added srfi-6.scm.
  767. (srfi_DATA): added srfi-11.scm.
  768. (srfi_DATA): added srfi-8.scm.
  769. (srfi_DATA): added srfi-2.scm.
  770. * srfi-11.scm: new file - exports let-values and let*-values.
  771. * srfi-6.scm: new file - guile already has srfi-6 procedures
  772. loaded by default, so this is a dummy file right now.
  773. * srfi-8.scm: new file - exports receive.
  774. * srfi-2.scm: new file - just use/export (ice-9 and-let-star)
  775. 2001-04-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  776. Changed two procedure names to match final SRFI document. Thanks
  777. to Rob Browning for spotting this.
  778. * srfi-13.scm (string-concatenate-reverse),
  779. (string-concatenate-reverse/shared): Rename from
  780. reverse-string-concatenate[/shared].
  781. * srfi-13.c (scm_string_concatenate_reverse_shared): Renamed from
  782. scm_reverse_string_concatenate_shared.
  783. (scm_string_concatenate_reverse): Renamed from
  784. scm_reverse_string_concatenate.
  785. 2001-04-25 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  786. * configure.in, autogen.sh: Removed.
  787. * srfi-13.c (scm_string_replace): Take sizeof (char) into account
  788. when using memmove().
  789. * srfi-14.h: Added prototypes for all exported procedures..
  790. * srfi-13.c: Include srfi-13.h
  791. * srfi-13.h: New file containing the prototypes.
  792. * Makefile.am: Removed guile-srfi.texi and info_TEXINFOS variable.
  793. (libguile_srfi_srfi_13_14_la_SOURCES): Added srfi-14.h, so it gets
  794. distributed.
  795. (libguile_srfi_srfi_13_14_la_SOURCES): Added srfi-13.h.
  796. 2001-04-24 Neil Jerram <neil@ossau.uklinux.net>
  797. * Makefile.am: Fixed "srf-14.x" typo.
  798. 2001-04-24 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  799. * guile-srfi.texi: Removed, because merged with the GRM.
  800. * guile-srfi.texi: The docs are now up to date with the
  801. implementation and have new introductory material.
  802. 2001-04-23 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  803. Integrated the guile-srfi package into the Guile distribution.
  804. * srfi-13.c: All procedures so specified in the SRFI now accept
  805. character set arguments.
  806. * Makefile.am: Snarfed some variables from the guile-readline
  807. directory.
  808. * srfi-14.c, srfi-14.h: Add prefix SCM_ to exported macros.
  809. * srfi-13.scm, srfi-14.scm, srfi-13.c, srfi-14.c, srfi-14.h,
  810. configure.in, Makefile.am: Added FSF copyright and Guile license
  811. information.
  812. * srfi-13.c, srfi-14.c: Include srfi-14.h.
  813. (scm_init_srfi_13_14): Initialize the complete module, if not
  814. already done so.
  815. * srfi-14.h: New file.
  816. * srfi-13.scm, srfi-14.scm: Load new combined library.
  817. * Makefile.am: Build only one library,
  818. `libguile-srfi-srfi-13-14.la'
  819. 2001-04-04 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  820. * guile-srfi.texi: Integrated the SRFI-14 documentation.
  821. * srfi-14.c, srfi-14.scm: Made the procedures and variables
  822. compliant to the final SRFI document.
  823. * Renamed the package to guile-srfi.
  824. 2001-04-03 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  825. * NEWS: New section for 0.0.3.
  826. * configure.in, README, guile-srfi-13.texi: Bumped version number
  827. to 0.0.3.
  828. * Released version 0.0.2.
  829. * Makefile.am: Added rules for builing the SRFI-14 library.
  830. * srfi-14.c, srfi-14.scm: New files, implementing SRFI-14
  831. (character set library).
  832. 2001-03-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  833. * README: Updated procedure and incompatibility list.
  834. * srfi-13.c (string_upcase_x, scm_string_upcase_xS),
  835. (scm_string_upcase, string_downcase_x, scm_string_downcase_xS),
  836. (scm_string_downcaseS, string_titlecase_x),
  837. (scm_string_titlecase_x, scm_string_titlecase),
  838. (scm_string_fill_xS, scm_string_copyS, scm_string_to_listS): New
  839. procedures.
  840. * srfi-13.scm: Export new case mapping procedures.
  841. * guile-srfi-13.texi (What cannot be done): Removed case mapping
  842. procedures from incompatibility list.
  843. (Case Mapping): New section for case mapping procedures.
  844. 2001-03-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  845. * NEWS: New section for 0.0.2
  846. * configure.in, README, guile-srfi-13.texi: Bumbed version number
  847. to 0.0.2
  848. * Released version 0.0.1.
  849. * README: Made procedure list up-to-date.
  850. * guile-srfi-13.texi: Fixed typos, completed reference and added
  851. introductory blurb.
  852. * srfi-13.c, srfi-13.scm: Filled in the last missing pieces.
  853. 2001-03-22 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  854. * Started guile-srfi-13 package. Files are copied from the
  855. guile-gdbm and slightly modified.
  856. ;; Local Variables:
  857. ;; coding: utf-8
  858. ;; End: