ChangeLog-2008 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802
  1. 2008-07-17 Neil Jerram <neil@ossau.uklinux.net>
  2. * scheme-using.texi (Evaluating Scheme Code): Document use of
  3. `C-u' prefix with evaluation commands.
  4. 2008-07-05 Ludovic Courtès <ludo@gnu.org>
  5. * api-data.texi (Symbol Primitives): Add `scm_c_symbol_length ()'.
  6. 2008-06-30 Julian Graham <joolean@gmail.com>
  7. * srfi-modules.texi (SRFI-18): New section.
  8. (SRFI-19 Time): Mention SRFI-18's `current-time'.
  9. 2008-06-28 Ludovic Courtès <ludo@gnu.org>
  10. * api-modules.texi (Using Guile Modules): Substitute "syntax
  11. transformer" to "system transformer". Reported by Sebastian
  12. Tennant <sebyte@smolny.plus.com>.
  13. 2008-06-01 Ludovic Courtès <ludo@gnu.org>
  14. * srfi-modules.texi (SRFI-88): Fix URL.
  15. 2008-05-14 Julian Graham <joolean@gmail.com>
  16. * api-scheduling.texi (Mutexes and Condition Variables): Add
  17. documentation for new functions "scm_mutex_owner",
  18. "scm_mutex_level", and "scm_mutex_locked_p". Update
  19. documentation for function "scm_lock_mutex_timed" to reflect
  20. addition of optional ownership argument.
  21. 2008-05-07 Ludovic Courtès <ludo@gnu.org>
  22. * Makefile.am (autoconf-macros.texi): Avoid use of GNU Make
  23. specific `$<' variable. This broke with BSD Make as found on
  24. FreeBSD 6.2.
  25. 2008-05-05 Neil Jerram <neil@ossau.uklinux.net>
  26. * scheme-using.texi (Using Guile in Emacs): Add concept index
  27. entries `GDS' and `Emacs'.
  28. * api-debug.texi (Debugging): Add concept index entry `Debugging'.
  29. 2008-05-04 Ludovic Courtès <ludo@gnu.org>
  30. * guile.texi (Guile Modules): Include `autoconf.texi'.
  31. * autoconf.texi (Autoconf Support): Mention `pkg-config'.
  32. (Autoconf Macros): Document `pkg-config' support.
  33. 2008-04-26 Ludovic Courtès <ludo@gnu.org>
  34. * srfi-modules.texi (SRFI-88): New section.
  35. * api-data.texi (Keyword Read Syntax): Add reference to
  36. `SRFI-88'.
  37. 2008-04-17 Neil Jerram <neil@ossau.uklinux.net>
  38. * posix.texi (File System): New doc for file-exists?.
  39. 2008-04-15 Ludovic Courtès <ludo@gnu.org>
  40. * api-data.texi (Keywords): Mention postfix syntax.
  41. (Keyword Read Syntax): Document `postfix' read option.
  42. * api-options.texi (Reader options): Update examples.
  43. (Examples of option use): Likewise.
  44. 2008-03-28 Neil Jerram <neil@ossau.uklinux.net>
  45. * libguile-concepts.texi (Multi-Threading): Fix typo.
  46. 2008-03-24 Neil Jerram <neil@ossau.uklinux.net>
  47. Applying patch from Julian Graham, containing minor fixes to his
  48. thread enhancements:
  49. * api-scheduling.texi (Mutexes and Condition Variables): Change
  50. `flag' to `flags' in docstring.
  51. 2008-03-19 Neil Jerram <neil@ossau.uklinux.net>
  52. * api-debug.texi (Low Level Trap Calls): Removed (material
  53. duplicated elsewhere); doc for with-traps and debug-object? moved
  54. to section on evaluator trap options.
  55. (High Level Traps): Renamed just `Traps'. Add references to
  56. evaluator trap options and debug options. Make language
  57. appropriate for core Guile (as opposed to previously separate
  58. package).
  59. (Location Traps): Corrected to reflect that location traps now
  60. specify a specific position, not a range of positions.
  61. (Debugging Examples): New (content moved here from
  62. scheme-debugging.texi, and updated to use traps instead of
  63. breakpoints).
  64. * api-modules.texi (Included Guile Modules): Change `Debugging
  65. Features' reference to `Tracing'.
  66. * api-options.texi (Evaluator trap options): Doc for with-traps
  67. and debug-object? is now here.
  68. * guile.texi, scheme-debugging.texi: Move the `Tracing' content of
  69. scheme-debugging.texi to the Modules section.
  70. * scheme-using.texi (Using Guile in Emacs, GDS Getting Started):
  71. Minor edits.
  72. * scheme-debugging.texi (Debugging Features, Intro to
  73. Breakpoints): Removed.
  74. (Examples): Moved to api-debug.texi.
  75. (Tracing, Old Tracing): Promoted one level.
  76. (New Tracing, Tracing Compared): Removed.
  77. 2008-03-08 Julian Graham <joolean@gmail.com>
  78. * api-scheduling.texi (Threads): Add documentation for new
  79. functions "scm_thread_p" and new "scm_join_thread_timed".
  80. (Mutexes and Condition Variables): Add documentation for new
  81. functions "scm_make_mutex_with_flags", "scm_mutex_p",
  82. "scm_lock_mutex_timed", "scm_unlock_mutex_timed", and
  83. "scm_condition_variable_p".
  84. 2008-02-11 Neil Jerram <neil@ossau.uklinux.net>
  85. * api-data.texi (Random): New text about the default random state,
  86. following suggestions by Stephen Uitti.
  87. 2008-02-01 Neil Jerram <neil@ossau.uklinux.net>
  88. * api-scheduling.texi (Threads): Add "C Function scm_join_thread"
  89. to doc for join-thread. Thanks to Antoine Mathys for reporting
  90. that scm_join_thread was missing.
  91. 2007-12-09 Stephen Compall <s11@member.fsf.org>
  92. * srfi-modules.texi (SRFI-69): Avoid use of the first person.
  93. 2007-12-03 Stephen Compall <s11@member.fsf.org>
  94. * srfi-modules.texi: Describe SRFI-69 in a new subsection.
  95. 2007-10-29 Julian Graham <joolean@gmail.com>
  96. * api-scheduling.texi (Threads): Document `cancel-thread',
  97. `set-thread-cleanup!' and `thread-cleanup'.
  98. 2007-10-24 Neil Jerram <neil@ossau.uklinux.net>
  99. * .cvsignore: Add lib-version.texi.
  100. 2007-10-02 Ludovic Courtès <ludo@gnu.org>
  101. * slib.texi (SLIB installation): Don't recommend using the site
  102. directory for the symlink; instead, suggest either adding a
  103. symlink in `/.../share/guile/1.8' (because slib will look for
  104. its files in the implementation vicinity by default) or defining
  105. `SCHEME_LIBRARY_PATH'. Mention `new-catalog'.
  106. 2007-08-11 Ludovic Courtès <ludo@gnu.org>
  107. * srfi-modules.texi (SRFI-34): New node.
  108. (SRFI-35): New node.
  109. 2007-07-18 Stephen Compall <s11@member.fsf.org>
  110. * srfi-modules.texi: Describe SRFI-37 in a new subsection.
  111. 2007-07-10 Ludovic Courtès <ludo@gnu.org>
  112. * api-data.texi (Arithmetic): Documented `1+' and `1-'.
  113. Suggested by Jon Wilson <j85wilson@fastmail.fm>.
  114. * api-modules.texi (Module System Reflection): Documented
  115. `save-module-excursion', by Jon Wilson <jsw@wilsonjc.us>.
  116. 2007-06-07 Ludovic Courtès <ludovic.courtes@laas.fr>
  117. * api-control.texi (Dynamic Wind): Fixed typo. Reported by
  118. Norman Hardy.
  119. 2007-05-16 Ludovic Courtès <ludovic.courtes@laas.fr>
  120. * posix.texi (Network Sockets and Communication): Fixed typo:
  121. `make-socket-object' instead of `make-socket-address'.
  122. 2007-03-08 Kevin Ryde <user42@zip.com.au>
  123. * api-compound.texi (Structures): Revise and expand variously, add
  124. make-vtable.
  125. * api-io.texi: Add various @cindex entries.
  126. * slib.texi (SLIB): Shorten the bit about core funcs overridden.
  127. Don't want to duplicate the SLIB specs, and the set of modified bits
  128. is likely to change over time and don't want to have to keep up with
  129. that.
  130. 2007-02-22 Kevin Ryde <user42@zip.com.au>
  131. * posix.texi (Signals): Merge sleep and usleep, note usleep not
  132. actually microsecond accurate, remove warning usleep not always
  133. available (guile has own code for it now, it's not the system call).
  134. Cross reference scm_std_sleep / scm_std_usleep.
  135. * posix.texi (Signals): Merge getitimer and setitimer, describe what
  136. each timer does, use @defvar to get them indexed, caution may not
  137. actually be microsecond accurate.
  138. 2007-02-20 Neil Jerram <neil@ossau.uklinux.net>
  139. * Makefile.am (EXTRA_DIST): Add lib-version.texi to the
  140. distribution.
  141. 2007-02-16 Kevin Ryde <user42@zip.com.au>
  142. * api-compound.texi (Records): In make-record-type, describe optional
  143. print function argument.
  144. 2007-01-31 Ludovic Courtès <ludovic.courtes@laas.fr>
  145. * api-data.texi (Conversion): Made cross refs point to `Number
  146. Input and Output' rather than `The ice-9 i18n Module'.
  147. (String Comparison): Likewise for `Text Collation'.
  148. * api-i18n.texi (Internationalization): Re-organized the whole
  149. section, documented new i18n features. Added the following
  150. subsections: `i18n Introduction', `Text Collation', `Character
  151. Case Mapping', `Number Input and Output', `Accessing Locale
  152. Information'. Removed `The ice-9 i18n Module'.
  153. * posix.texi (Locales): Updated cross-ref formerly pointing to
  154. `The ice-9 i18n Module'.
  155. * srfi-modules.texi (SRFI-19 String to date): Mention the
  156. internationalization of `string->date'.
  157. 2007-01-25 Kevin Ryde <user42@zip.com.au>
  158. * posix.texi (Signals): Note signal handlers run via system async and
  159. can hence be delayed quite a while. Struck by William Xu.
  160. 2007-01-19 Han-Wen Nienhuys <hanwen@lilypond.org>
  161. * api-options.texi (Evaluator trap options): document
  162. memoize-symbol-handler
  163. * api-evaluation.texi (Evaluator Behaviour): link to the Evaluator
  164. trap options node in trap-enable/trap-set! doco.
  165. 2007-01-16 Kevin Ryde <user42@zip.com.au>
  166. * api-data.texi (Mapping Folding and Unfolding): In string-unfold,
  167. ssay make_final default is nothing extra. The `(lambda (x) )' shown
  168. was not quite right, it would have been `(lambda (x) "")' if anything.
  169. * api-init.texi (Initialization): Cross reference Runtime Environment
  170. for scm_set_program_arguments.
  171. * posix.texi (Runtime Environment): Expand program-arguments
  172. description, add set-program-arguments, add scm_set_program_arguments,
  173. note args are per-thread.
  174. 2006-12-14 Kevin Ryde <user42@zip.com.au>
  175. * api-procedures.texi (let-keywords Reference): Expand variously to
  176. make it clear what's actually taken and done. Shortfalls reported by
  177. Han-Wen Nienhuys.
  178. 2006-12-13 Kevin Ryde <user42@zip.com.au>
  179. * api-control.texi (Handling Errors): Cross reference "Error
  180. Reporting" for `scm-error', not just "above".
  181. * posix.texi (Encryption): Cross reference crypt in the glibc manual.
  182. Clarify that key and salt are strings.
  183. * srfi-modules.texi (SRFI-17): Expand variously.
  184. 2006-11-18 Ludovic Courtès <ludovic.courtes@laas.fr>
  185. * Makefile.am (BUILT_SOURCES): New variable.
  186. (lib-version.texi): New target.
  187. * guile.texi: Include `lib-version.texi'.
  188. * api-data.texi (Conversion): Link to `The ice-9 i18n Module' when
  189. describing `string->number'.
  190. (String Comparison): Likewise.
  191. * api-i18n.texi (Internationalization)[The ice-9 i18n Module]: New
  192. node.
  193. [Gettext Support]: New node; contains text formerly in
  194. `Internationalization'.
  195. * posix.texi (Locales): Added a link to the glibc manual
  196. describing the various locale categories. Mention locale objects
  197. and link to `The ice-9 i18n Module' when describing `setlocale'.
  198. 2006-11-17 Neil Jerram <neil@ossau.uklinux.net>
  199. * intro.texi (Reporting Bugs): Note need for subscription to
  200. bug-guile@gnu.org.
  201. 2006-10-10 Neil Jerram <neil@ossau.uklinux.net>
  202. * scheme-using.texi (Setting and Managing Breakpoints): New text
  203. about what happens when a breakpoint is created.
  204. (Listing and Deleting Breakpoints, Moving and Losing Breakpoints):
  205. New.
  206. 2006-10-08 Neil Jerram <neil@ossau.uklinux.net>
  207. * scheme-using.texi (Working with GDS in Scheme Buffers): New
  208. subsection, to group (Access to Guile Help and Completion, Setting
  209. and Managing Breakpoints, Evaluating Scheme Code) together.
  210. (GDS Getting Started): Editorial updates.
  211. 2006-10-06 Neil Jerram <neil@ossau.uklinux.net>
  212. * scheme-using.texi (Using Guile in Emacs): Subnodes reordered,
  213. from (Displaying the Scheme Stack, Continuing Execution,
  214. Evaluating Scheme Code, Setting and Managing Breakpoints, Access
  215. to Guile Help and Completion) to (Access to Guile Help and
  216. Completion, Setting and Managing Breakpoints, Evaluating Scheme
  217. Code, Displaying the Scheme Stack, Continuing Execution).
  218. (Access to Guile Help and Completion): Mention where keys are
  219. defined.
  220. (Setting and Managing Breakpoints): Update text on how to set
  221. breakpoints.
  222. 2006-10-05 Kevin Ryde <user42@zip.com.au>
  223. * misc-modules.texi (File Tree Walk): Corrections to BASE parameter
  224. and symlink vs stale-symlink types in nftw.
  225. * misc-modules.texi, guile.texi (Buffered Input): New section,
  226. describing (ice-9 buffered-input).
  227. * posix.texi (User Information): Clarify getpwent returns #f at end of
  228. file.
  229. * repl-modules.texi (Readline Functions): New section on how to call
  230. readline from scheme code.
  231. 2006-10-03 Neil Jerram <neil@ossau.uklinux.net>
  232. * scheme-using.texi (GDS Getting Started): Editorial updates.
  233. 2006-09-28 Neil Jerram <neil@ossau.uklinux.net>
  234. * scheme-using.texi (GDS Introduction, GDS Getting Started): Minor
  235. edits.
  236. * api-data.texi (Symbol Props): Remove unnecessarily specific
  237. parenthesis about Guile 1.6's use of extra symbol slots.
  238. 2006-09-26 Neil Jerram <neil@ossau.uklinux.net>
  239. * scheme-using.texi (Using Guile in Emacs, GDS Introduction):
  240. Editorial updates.
  241. (GDS Architecture): Moved earlier in containing section; editorial
  242. updates.
  243. (GDS Getting Started, How to Use GDS): Merged; editorial updates;
  244. subsections reordered.
  245. 2006-09-26 Kevin Ryde <user42@zip.com.au>
  246. * api-io.texi (Random Access): In truncate-file, tweak wording for
  247. clarity, note cannot always extend file this way.
  248. (Ports): File access uses LFS.
  249. 2006-09-25 Neil Jerram <neil@ossau.uklinux.net>
  250. * scheme-using.texi (Error Handling, Interactive Debugger): Minor
  251. editorial improvements.
  252. (Leave Debugger): Removed.
  253. (Display Backtrace): Minor updates.
  254. (Frame Selection, Frame Information, Frame Evaluation) : Minor
  255. editorial improvements.
  256. (Stepping and Continuing): Merged from three previous nodes; plus
  257. minor improvements. Removed doc for `trace-finish', which no
  258. longer exists.
  259. 2006-09-22 Kevin Ryde <user42@zip.com.au>
  260. * api-data.texi (Scientific): In sqrt, note it's the positive root
  261. which is returned (as per R5RS).
  262. 2006-09-20 Ludovic Courtès <ludovic.courtes@laas.fr>
  263. * api-data.texi (Standard Character Sets): Documented the
  264. charset recomputation upon successful `setlocale'.
  265. 2006-09-08 Kevin Ryde <user42@zip.com.au>
  266. * misc-modules.texi (Formatted Output): Show ":@" rather than "@:",
  267. because ":@" is traditional common lisp, though either way works.
  268. Break a couple of example lines to avoid overflowing DVI page width.
  269. * scheme-debugging.texi (Debug Last Error): Line break in "Type
  270. (backtrace) to get ..." which overflowed the line in both info and
  271. DVI. Reported by Percy Tiglao.
  272. 2006-09-05 Kevin Ryde <user42@zip.com.au>
  273. * posix.texi (Network Sockets and Communication): Tweak description,
  274. note not multi-threading.
  275. 2006-09-04 Neil Jerram <neil@ossau.uklinux.net>
  276. * api-control.texi (Dynamic Wind): Doc for scm_dynwind_free.
  277. * api-modules.texi (The Guile module system), api-data.texi
  278. (Integers, Numerical Tower), api-compound.texi (Uniform Numeric
  279. Vectors): Fix typos. (Patch sent in by Marco Maggi.)
  280. 2006-08-29 Neil Jerram <neil@ossau.uklinux.net>
  281. * api-debug.texi (Debug on Error): Added paragraph on need to use
  282. debugging evaluator. Added text on what the Guile REPL code does.
  283. 2006-08-29 Kevin Ryde <user42@zip.com.au>
  284. * api-control.texi (Dynamic Wind): Reformat example a bit to avoid
  285. going off the right edge of the paper. Reported by Percy Tiglao.
  286. 2006-08-28 Neil Jerram <neil@ossau.uklinux.net>
  287. * api-debug.texi (Examining the Stack): Minor improvements to
  288. display-backtrace doc.
  289. (Debug on Error): More new text on catching the error stack.
  290. 2006-08-27 Neil Jerram <neil@ossau.uklinux.net>
  291. * api-debug.texi (Debug on Error): New text on how to catch errors
  292. and the error stack.
  293. 2006-08-23 Neil Jerram <neil@ossau.uklinux.net>
  294. * scheme-using.texi (Using Guile in Emacs): New text about
  295. available Emacs libraries.
  296. (GDS Introduction): New node, containing GDS-specific introductory
  297. text.
  298. 2006-08-22 Kevin Ryde <user42@zip.com.au>
  299. * api-i18n.texi (Internationalization): Cross reference gettext manual
  300. on plural forms.
  301. 2006-08-18 Neil Jerram <neil@ossau.uklinux.net>
  302. * scheme-using.texi (Using Guile in Emacs): Unignore extra GDS
  303. intro text. (I will edit this down later. For now it's
  304. convenient to have it all appearing, so it's visible on paper.)
  305. 2006-08-11 Neil Jerram <neil@ossau.uklinux.net>
  306. * scheme-using.texi (Run To Frame Exit): Improved doc for finish.
  307. (Continue Execution): Improved doc for continue.
  308. (Using Guile in Emacs): Lots of new docs about the Emacs
  309. interface.
  310. * api-debug.texi (Low Level Trap Calls): New.
  311. (Using Traps): Removed, material incorporated into Low Level Trap
  312. Calls.
  313. (High Level Traps): New.
  314. (Breakpoints): New.
  315. * scheme-using.texi (Single Stepping): Improve doc for step and
  316. next.
  317. * api-debug.texi (Debug on Error): Note need to handling of errors
  318. in C.
  319. * api-debug.texi (Debugging): New intro text. New subsection
  320. "Evaluation Model". Moved existing subsections "Capturing the
  321. Stack or Innermost Stack Frame", "Examining the Stack", "Examining
  322. Stack Frames", "Source Properties", "Decoding Memoized Source
  323. Expressions" and "Starting a New Stack" under "Evaluation Model".
  324. (Capturing the Stack or Innermost Stack Frame): Some new text, and
  325. correction to doc for last-stack-frame.
  326. (Debug on Error): Renamed from "Interactive Debugging".
  327. 2006-08-01 Neil Jerram <neil@ossau.uklinux.net>
  328. * api-debug.texi (Breakpoints): Removed (all wrong).
  329. * guile.texi (API Reference): Improved summary for "Debugging"
  330. menu item.
  331. * scheme-debugging.texi (Debug Last Error, Interactive Debugger):
  332. Moved/merged to scheme-using.texi, as REPL features.
  333. (Examples): New.
  334. (Intro to Breakpoints): New introductory text here. Removed all
  335. subnodes except for Breakpoints Overview.
  336. * scheme-using.texi: New.
  337. * guile.texi (Programming in Scheme): Include new
  338. scheme-using.texi file.
  339. * Makefile.am (guile_TEXINFOS): Include new scheme-using.texi
  340. file.
  341. 2006-07-24 Kevin Ryde <user42@zip.com.au>
  342. * api-evaluation.texi (Fly Evaluation): Add scm_c_eval_string.
  343. (Loading): Add scm_c_primitive_load.
  344. Reported by Jon Wilson.
  345. 2006-06-25 Kevin Ryde <user42@zip.com.au>
  346. * posix.texi (Time): In tm:gmtoff, give example values, note not the
  347. same as C tm_gmtoff.
  348. 2006-06-16 Ludovic Courtès <ludovic.courtes@laas.fr>
  349. * api-utility.texi (Equality): Mentioned the behavior of `equal?'
  350. for structures (as suggested by Kevin Ryde).
  351. 2006-06-13 Ludovic Courtès <ludovic.courtes@laas.fr>
  352. * api-compound.texi (Structure Concepts): Mentioned the behavior
  353. of `equal?' for structures.
  354. 2006-05-28 Kevin Ryde <user42@zip.com.au>
  355. * srfi-modules.texi (SRFI-1 Length Append etc): Add an append-reverse
  356. example.
  357. 2006-05-20 Kevin Ryde <user42@zip.com.au>
  358. * api-compound.texi (Pairs): Cross reference SRFI-1 second, third,
  359. fourth.
  360. (List Modification): Cross reference SRFI-1 delete and lset-difference.
  361. (List Searching): Cross reference SRFI-1 member.
  362. (List Mapping): Cross reference SRFI-1 map etc.
  363. (Retrieving Alist Entries): Cross reference SRFI-1 assoc.
  364. * srfi-modules.texi (SRFI-1 Association Lists): Describe argument
  365. order for "=" procedure.
  366. 2006-05-15 Kevin Ryde <user42@zip.com.au>
  367. * posix.texi (Processes): Add primitive-_exit.
  368. 2006-05-10 Kevin Ryde <user42@zip.com.au>
  369. * intro.texi (Linking Guile into Programs): Enhance example program,
  370. change scm_str2string to scm_from_locale_string, since scm_str2string
  371. is "discouraged". And check for NULL from getenv since neither
  372. scm_str2string nor scm_from_locale_string can cope with that.
  373. Reported by Frithjof.
  374. 2006-05-09 Kevin Ryde <user42@zip.com.au>
  375. * api-control.texi (Multiple Values): In `receive', add an example,
  376. cross ref SRFI-8, tweak wording.
  377. * api-io.texi (Port Implementation): @defun style for
  378. scm_make_port_type and the various set functions.
  379. * posix.texi (Ports and File Descriptors): Tweaks to fcntl.
  380. 2006-04-29 Kevin Ryde <user42@zip.com.au>
  381. * api-scheduling.texi (Threads): In call-with-new-thread, handler arg
  382. is optional (as of 1.8.0).
  383. 2006-04-15 Kevin Ryde <user42@zip.com.au>
  384. * api-scheduling.texi (System asyncs): "{void *}" in @deffnx to keep
  385. the "*" out of the name in the index.
  386. 2006-04-06 Kevin Ryde <user42@zip.com.au>
  387. * posix.texi (Ports and File Descriptors): Clarify fcntl a bit,
  388. and correction FD_CLOEXEC goes with FD_SETFD not FD_SETFL.
  389. (Network Sockets and Communication): In accept, cross-reference to
  390. fcntl on O_NONBLOCK.
  391. 2006-03-28 Kevin Ryde <user42@zip.com.au>
  392. * api-compound.texi (Vector Accessing from C): Show
  393. SCM_SIMPLE_VECTOR_SET not SCM_SIMPLE_VECTOR_SET_X, the former is
  394. what's in vector.h.
  395. 2006-03-21 Ludovic Courtès <ludovic.courtes@laas.fr>
  396. * api-data.texi (Conversion): Add scm_c_locale_stringn_to_number.
  397. 2006-03-05 Kevin Ryde <user42@zip.com.au>
  398. * api-compound.texi (Array Procedures): @pxref for `equal?'.
  399. (Shared Arrays): Correction to make-shared-array stride example, need
  400. `list' on the mapper return value.
  401. 2006-02-13 Marius Vollmer <mvo@zagadka.de>
  402. * api-utility.texi (Object Properties): Removed confusing
  403. paragraph about 'name' property.
  404. 2006-02-07 Kevin Ryde <user42@zip.com.au>
  405. * api-modules.texi (Compiled Code Installation): Revise, in particular
  406. @libdir@ needs to go via the makefile.
  407. 2006-02-04 Neil Jerram <neil@ossau.uklinux.net>
  408. * api-control.texi (Throw Handlers): New node.
  409. (Throw): Moved to after the Lazy Catch node.
  410. (Catch): Enhance to cover the optional pre-unwind handler, and new
  411. APIs scm_c_catch, scm_catch_with_pre_unwind_handler.
  412. (Lazy Catch): Describe relationship to with-throw-handler.
  413. Document that the handler may return, and what happens if it does.
  414. (Throw): Mention that a throw can be handled by a throw handler as
  415. well as by a catch.
  416. 2006-02-04 Kevin Ryde <user42@zip.com.au>
  417. * api-options.texi (Build Config): pxref libtool on libguileinterface
  418. version info.
  419. * intro.texi (Writing Guile Extensions), libguile-extensions.texi (A
  420. Sample Guile Extension): pxref libtool manual.
  421. * api-modules.texi (Compiled Code Installation): New section.
  422. * posix.texi (Network Address Conversion, Network Databases)
  423. (Network Sockets and Communication, Internet Socket Examples): Misc
  424. tweaks.
  425. 2006-01-29 Marius Vollmer <mvo@zagadka.de>
  426. * api-scheduling.texi: Removed "Futures" node.
  427. Renamed the "frames" that are related to dynamic-wind to "dynamic
  428. contexts. Renamed all functions from scm_frame_ to scm_dynwind_.
  429. Updated documentation.
  430. 2005-12-19 Ludovic Courtès <ludovic.courtes@laas.fr>
  431. * api-data.texi (Operations Related to Symbols):
  432. Documented `scm_take_locale_symbol ()'.
  433. 2005-12-15 Kevin Ryde <user42@zip.com.au>
  434. * api-evaluation.texi (Fly Evaluation): Add scm_call_4, suggested by
  435. Bruce Korb.
  436. * misc-modules.texi (Streams): In stream->list&length and
  437. stream->reversed-list&length, make the two values clearer.
  438. 2005-12-14 Neil Jerram <neil@ossau.uklinux.net>
  439. * api-options.texi (Evaluator trap options): Trap calls now always
  440. use a debug object rather than a continuation.
  441. (Debugger options, Examples of option use): Update help text for
  442. 'cheap option (which is now obsolete).
  443. * api-evaluation.texi (Loading): Document custom reader.
  444. 2005-12-06 Marius Vollmer <mvo@zagadka.de>
  445. * api-init.texi, api-scheduling.texi, libguile-concepts.texi:
  446. Removed scm_leave_guile, scm_enter_guile and all references to
  447. them since they are no longer in the API.
  448. From Stephen Compall:
  449. * api-control.texi (if cond case): Describe SRFI 61 cond.
  450. * srfi-modules.texi (SRFI-61): New section.
  451. (SRFI Support): Add SRFI-61 to menu.
  452. 2005-11-19 Kevin Ryde <user42@zip.com.au>
  453. * api-compound.texi (Retrieving Alist Entries): Revise for clarity and
  454. brevity.
  455. 2005-11-06 Kevin Ryde <user42@zip.com.au>
  456. From Ludovic Courtès, partial rework by me:
  457. * doc/ref/api-modules.texi (Creating Guile Modules): In define-module,
  458. describe #:re-export, #:export-syntax, #:re-export-syntax, #:replace
  459. and #:duplicates. Add re-export.
  460. 2005-11-01 Kevin Ryde <user42@zip.com.au>
  461. * posix.texi (Time): In strftime, note systems vary for %Z.
  462. 2005-10-29 Kevin Ryde <user42@zip.com.au>
  463. * posix.texi (Network Socket Address): Add scm_make_socket_address,
  464. scm_c_make_socket_address, scm_from_sockaddr, scm_to_sockaddr. This
  465. change by Ludovic Courtès and revised a bit by me.
  466. 2005-10-27 Kevin Ryde <user42@zip.com.au>
  467. * posix.texi (Network Address Conversion): Move INADDR_ANY to here.
  468. (Network Socket Address): New section, move sockaddr bits to here, add
  469. new make-socket-address.
  470. (Network Sockets and Communication): In connect, bind, and sendto, now
  471. take socket address object. In bind, leave INADDR constants for
  472. "Network Address Conversion" node. In those plus accept, getsockname,
  473. getpeername, reword a bit for clarity.
  474. 2005-10-24 Kevin Ryde <user42@zip.com.au>
  475. * posix.texi (Network Sockets and Communication): Combine and revise
  476. getsockopt and setsockopt. Add OPTNAME constants, including new
  477. IP_ADD_MEMBERSHIP and IP_DROP_MEMBERSHIP.
  478. * posix.texi (Time): Revise strftime for clarity, cross reference man
  479. 3 strftime (suggested by Greg Troxel), note locale character set when
  480. setlocale has been called.
  481. 2005-10-15 Neil Jerram <neil@ossau.uklinux.net>
  482. * api-debug.texi (Source Properties): Add text describing/advising
  483. limited use of source properties.
  484. * api-debug.texi (Source Properties): Documentation of source
  485. property procedures moved here from ...
  486. * api-procedures.texi (Procedure Properties): ... where it didn't
  487. belong.
  488. 2005-10-05 Kevin Ryde <user42@zip.com.au>
  489. * api-data.texi (Regexp Functions): Notes on zero bytes and locale
  490. character set.
  491. * misc-modules.texi (Formatted Output): Show modifiers like ~:d
  492. instead of in words.
  493. 2005-08-06 Kevin Ryde <user42@zip.com.au>
  494. * api-compound.texi (List Modification): In filter, return may share a
  495. tail with the input, as per docstring. In filter!, fix chopped off
  496. note of modifying input.
  497. * api-control.texi (Error Reporting): In strerror, note message is in
  498. locale language and charset.
  499. 2005-07-12 Kevin Ryde <user42@zip.com.au>
  500. * api-data.texi (String Selection): In string-pad, don't say anything
  501. about sharing strings, decided against doing that.
  502. (Miscellaneous String Operations): Ditto in string-filter and
  503. string-delete.
  504. * api-data.texi (String Selection): Merge descriptions of string-trim,
  505. string-trim-right and string-trim-both for brevity.
  506. 2005-06-24 Kevin Ryde <user42@zip.com.au>
  507. * api-options.texi (Debugger options): Cross reference new Tail Calls
  508. node rather than R5RS on tail recursion.
  509. 2005-06-23 Kevin Ryde <user42@zip.com.au>
  510. * guile.texi, libguile-concepts.texi, libguile-extensions.texi,
  511. libguile-linking.texi, libguile-smobs.texi: Spelling errors reported
  512. by hyperdivision.
  513. * api-compound.texi (Pairs, List Syntax): Cross reference Expression
  514. Syntax for quoting.
  515. * api-control.texi (Lazy Catch): Cross ref for with-fluids.
  516. * libguile-linking.texi (A Sample Guile Main Program): Cross reference
  517. automake manual for aclocal.
  518. * libguile-program.texi (Extending Dia): URL for Dia home page.
  519. (Dia Primitives): Cross ref for scm_c_define_gsubr.
  520. 2005-06-12 Marius Vollmer <mvo@zagadka.de>
  521. * gh.texi: More stuff about transitioning away from GH.
  522. 2005-06-11 Kevin Ryde <user42@zip.com.au>
  523. * api-data.texi (Miscellaneous String Operations): In string-filter
  524. and string-delete, note result may share with input string (as allowed
  525. by srfi spec).
  526. 2005-06-06 Kevin Ryde <user42@zip.com.au>
  527. * api-compound.texi (Array Procedures): In array-in-bounds?,
  528. correction to example result.
  529. * api-init.texi (Initialization), api-scheduling.texi (Blocking):
  530. {} groups around "void*" C return types.
  531. 2005-05-04 Kevin Ryde <user42@zip.com.au>
  532. * srfi-modules.texi (SRFI-1 Selectors): In drop-right, note always a
  533. new list. In take-right, note result shares common tail. Per spec.
  534. 2005-05-03 Kevin Ryde <user42@zip.com.au>
  535. * api-data.texi (String Constructors): Clarify string, list->string
  536. and reverse-list->string a bit.
  537. 2005-04-30 Kevin Ryde <user42@zip.com.au>
  538. * api-io.texi (Default Ports): Describe buffering on standard ports.
  539. 2005-04-23 Kevin Ryde <user42@zip.com.au>
  540. * api-data.texi (Regexp Functions): Add list-matches and fold-matches.
  541. * data-rep.texi (Subrs): Note that subr must not modify its rest list.
  542. 2005-04-19 Kevin Ryde <user42@zip.com.au>
  543. * api-data.texi (Regexp Functions): Clarity flags parameter.
  544. * misc-modules.texi, guile.texi (Rx Regexps): Remove this section, Rx
  545. is not in the core and we don't want to confuse anyone with it and the
  546. builtin posix regexps.
  547. 2005-04-04 Han-Wen Nienhuys <hanwen@xs4all.nl>
  548. * srfi-modules.texi (SRFI-1 Set Operations): use @cross iso. @times.
  549. * guile.texi: add @cross for @tex
  550. 2005-04-02 Kevin Ryde <user42@zip.com.au>
  551. * guile.texi (@times): New macro.
  552. * repl-modules.texi (Readline Support): Cross ref readline manual.
  553. (Loading Readline Support): Add GUILE_HISTORY and .inputrc Guile
  554. configurables.
  555. * srfi-modules.texi (SRFI-1 Association Lists): In alist-cons, clarify
  556. a bit and cross reference core acons.
  557. * srfi-modules.texi (SRFI-1 Set Operations): Revise and expand.
  558. (SRFI-1 Deleting): In delete, cross reference lset-difference.
  559. * srfi-modules.texi (SRFI-19): Note Gregorian leap year rules
  560. incorrectly extended back prior to 1582.
  561. 2005-03-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  562. * api-compound.texi: Fixed some typos and added some docs. Talk
  563. about concrete and abstract hash tables.
  564. 2005-03-14 Kevin Ryde <user42@zip.com.au>
  565. * srfi-modules.texi (SRFI-55): New section.
  566. (SRFI-60): New section.
  567. 2005-03-01 Kevin Ryde <user42@zip.com.au>
  568. * api-compound.texi (Shared Arrays): New section. Rewrite
  569. make-shared-array for clarity, adding examples.
  570. * libguile-concepts.texi (Control Flow): Cross reference Tail Calls.
  571. 2005-02-17 Kevin Ryde <user42@zip.com.au>
  572. * api-data.texi (Reals and Rationals): Use tex for sqrt2 and pi.
  573. (Complex Numbers): Add polar form read syntax.
  574. 2005-02-15 Kevin Ryde <user42@zip.com.au>
  575. * posix.texi (File System): In tmpnam, clarify security and use of
  576. O_EXCL. In mkstemp!, in fact posix doesn't specify permissions.
  577. * scheme-ideas.texi (Tail Calls): New section.
  578. 2005-02-12 Kevin Ryde <user42@zip.com.au>
  579. * api-data.texi (String Selection): In string-pad and
  580. string-pad-right, clarify which end the padding goes on, and merge
  581. descriptions.
  582. * api-data.texi (Integer Operations): In gcd and lcm, show args.
  583. (Arithmetic): In truncate, add missing arg.
  584. * srfi-modules.texi (SRFI-1 Fold and Map): Rewrite fold, pair-fold and
  585. reduce for clarity.
  586. 2005-02-05 Kevin Ryde <user42@zip.com.au>
  587. * posix.texi (File System): In mkstemp!, in fact posix doesn't specify
  588. the permissions mode. Add an example setting 666 less umask.
  589. 2005-02-04 Kevin Ryde <user42@zip.com.au>
  590. * api-io.texi (File Ports): In port-filename, cannot use after close.
  591. * posix.texi (Time): In mktime, clarify fields of sbd-time used, and
  592. the handling of tm:isdst.
  593. * srfi-modules.texi (SRFI-0): Add srfi-4, srfi-13 and srfi-14 now in
  594. the core.
  595. 2005-01-29 Kevin Ryde <user42@zip.com.au>
  596. * posix.texi (Signals): In sigaction, add SA_NOCLDSTOP, make it
  597. clearer SA_RESTART is a variable.
  598. 2005-01-28 Kevin Ryde <user42@zip.com.au>
  599. * srfi-modules.texi (SRFI-1 Predicates): Clarify proper-list?,
  600. circular-list? and dotted-list?, note any object passes exactly one of
  601. those.
  602. * srfi-modules.texi (SRFI-19 Time/Date conversions): In default
  603. tz-offset, note restrictions on a 32-bit system.
  604. 2005-01-24 Kevin Ryde <user42@zip.com.au>
  605. * api-i18n.texi (Internationalization): Expand and revise a bit for
  606. clarity.
  607. * srfi-modules.texi (SRFI-1 Searching): In member, note `=' called arg
  608. order.
  609. (SRFI-1 Set Operations): Remove lset-adjoin!, doesn't exist in the
  610. code or the srfi spec.
  611. 2005-01-20 Kevin Ryde <user42@zip.com.au>
  612. * posix.texi (Ports and File Descriptors): In flock, for LOCK_NB note
  613. logior for LOCK_NB and EWOULDBLOCK error, and note flock doesn't work
  614. over NFS.
  615. * srfi-modules.texi (SRFI-1 Searching): In list-index, note 0 based
  616. index and #f for not found.
  617. 2005-01-15 Kevin Ryde <user42@zip.com.au>
  618. * api-data.texi (Bitwise Operations): In logtest and logbit?, describe
  619. operations in words, not just equivalent expressions. In
  620. integer-expt, clarify a bit and note negative k allowed and 0^0==1.
  621. * api-data.texi (Random): In random:solid-sphere!, there is no return
  622. value.
  623. * api-evaluation.texi (Loading): In %load-hook, need to use set!, and
  624. describe #f.
  625. 2005-01-14 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  626. * scheme-scripts.texi: Describe new 1.4 compatability behavior of
  627. -e option.
  628. 2005-01-14 Kevin Ryde <user42@zip.com.au>
  629. * api-data.texi (Mapping Folding and Unfolding): In
  630. string-for-each-index, make it clear iteration is over indices.
  631. * posix.texi (User Information): Note cuserid gone from POSIX.
  632. Prompted by Roland Besserer.
  633. * srfi-modules.texi (SRFI-39): New section.
  634. 2005-01-10 Kevin Ryde <user42@zip.com.au>
  635. * srfi-modules.texi: Various index entries.
  636. (SRFI-19 Introduction): Note MJD basis is 2400000.5.
  637. (SRFI-19 Date): In date-second, clarify leap second usage. In
  638. date-year, note negatives for B.C. and no zero. In current-date,
  639. don't let it read like it's just UTC which is returned.
  640. 2005-01-08 Kevin Ryde <user42@zip.com.au>
  641. * api-modules.texi (Creating Guile Modules): Expand define-modules
  642. #:autoload, clarify that it's a list of symbols.
  643. * api-modules.texi (Included Guile Modules): Add expect, format, ftw,
  644. getop-long, history, popen, pretty-print, q, readline, receive, regex,
  645. streams, syncase, srfi-16, srfi-19 and srfi-31. Remove ice-9 jacal,
  646. no such module.
  647. * posix.texi (File System): In mkstemp!, note 0600 creation mode.
  648. 2005-01-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  649. * api-compound.texi: Finished(?) the new array API docs.
  650. 2005-01-02 Kevin Ryde <user42@zip.com.au>
  651. * posix.texi (Pipes): Expand and clarify a bit. Describe port
  652. inheritance. Caution against waitpid WAIT_ANY.
  653. 2004-12-29 Marius Vollmer <mvo@zagadka.de>
  654. * api-compound.texi (Arrays): Updated for the new 'typed' approach
  655. at creating arrays.
  656. 2004-12-28 Kevin Ryde <user42@zip.com.au>
  657. * api-data.texi (String Predicates): For string-any and string-every,
  658. last chars are now tail calls per srfi, and reinstate char_pred can be
  659. character or character set (somehow lost in cut and paste).
  660. * srfi-modules.texi (SRFI-1 Searching): In any and every, revise for
  661. clarity, note last call in each is a tail call.
  662. 2004-12-27 Marius Vollmer <mvo@zagadka.de>
  663. * api-compound.texi (Vectors, Bit Vectors, Uniform Numeric
  664. Vectors): Updated for the distinction between read-only and write
  665. access to storage locations.
  666. 2004-12-22 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  667. * api-compound.texi (Arrays): Reorganized and 'modernized'.
  668. 2004-12-20 Mikael Djurfeldt <djurfeldt@nada.kth.se>
  669. * expect.texi (Expect): Removed backslash escapes of regexp
  670. operators ( and ) in code example for expect-strings.
  671. 2004-12-14 Kevin Ryde <user42@zip.com.au>
  672. * api-data.texi (Regexp Functions): Revise regex-substitute and
  673. regex-substitute/global for clarity, add some examples.
  674. * api-procedures.texi (lambda* Reference): Revise for clarity, note
  675. how #:rest works with #:key, note previous bindings available to
  676. default expressions.
  677. 2004-12-05 Kevin Ryde <user42@zip.com.au>
  678. * srfi-modules.texi (SRFI-1 Length Append etc): In concatenate, note
  679. equivalence to "apply append".
  680. 2004-11-09 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  681. * api-compound.texi (Generalized Vectors): New.
  682. (Bit Vectors): More docs.
  683. (Uniform Vectors): Call them Uniform numeric vectors.
  684. 2004-10-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  685. * api-compound.texi (Uniform Vectors): Added c32 and c64 docs.
  686. 2004-10-27 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  687. * srfi-modules.texi, api-compound.texi: Moved SRFI-4 docs into
  688. main part. Moved bit vectors out of array section to make them
  689. more visible.
  690. 2004-10-19 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  691. * api-smobs.texi (smob mark function): List admissible functions
  692. to call.
  693. 2004-10-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  694. * api-data.texi: Removed primitive keyword section, updated
  695. keyword docs.
  696. * api-undocumented.texi: Moved keyword dash-symbol docs here.
  697. 2004-09-26 Kevin Ryde <user42@zip.com.au>
  698. * api-data.texi (Conversion to/from C): Braces {} around char* return.
  699. * api-evaluation.texi (Block Comments): More cindex entries.
  700. * guile.texi, misc-modules.texi (Streams): New section.
  701. 2004-09-25 Marius Vollmer <mvo@zagadka.de>
  702. * libguile-smobs.texi, api-smobs.texi: More words abot what a free
  703. function is allowed to do.
  704. 2004-09-24 Marius Vollmer <mvo@zagadka.de>
  705. * libguile-smobs.texi: Bugfix in example code, use SCM_NEWSMOB
  706. correctly. Use scm_assert_smob_type instead of SCM_ASSERT
  707. baroqueness.
  708. 2004-09-23 Marius Vollmer <mvo@zagadka.de>
  709. * api-i18n.texi: New file.
  710. * Makefile.am (guile_TEXINFOS): Added it.
  711. * guile.texi: Include it.
  712. 2004-09-16 Kevin Ryde <user42@zip.com.au>
  713. * api-utility.texi (Equality): Revise for clarity.
  714. 2004-09-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  715. * api-data.texi (integer-expt): Updated from docstring.
  716. * Makefile.am (CLEANFILES, MAINTAINERCLEANFILES): Moved
  717. autoconf-macros.texi to MAINTAINERCLEANFILES. It is in the
  718. tarball and we shouldn't clean it, then.
  719. 2004-09-07 Kevin Ryde <user42@zip.com.au>
  720. * api-procedures.texi (let-keywords Reference): Typo, should be
  721. let-keywords* @defunx.
  722. * api-scheduling.texi (Parallel Forms): In parallel, letpar, par-map,
  723. n-par-map and n-for-each-par-map, describe each form as being in its
  724. own thread, not a new thread, since for instance the calling thread is
  725. used when only one form. Plus typo in n-for-each-par-map example
  726. equivalent for-each + n-par-map.
  727. * posix.texi (Locales): Use @var for category arg.
  728. * posix.texi (System Identification): Remove software-type, it doesn't
  729. exist in the guile core.
  730. * srfi-modules.texi (SRFI-10): Revise and expand.
  731. 2004-09-02 Kevin Ryde <user42@zip.com.au>
  732. * misc-modules.texi (Formatted Output): Excess arguments are ignored.
  733. In ~*, correction N parameter cannot be negative. In ~t, note
  734. port-column used.
  735. 2004-08-29 Kevin Ryde <user42@zip.com.au>
  736. * srfi-modules.texi (SRFI-2): Note empty body is #t.
  737. 2004-08-25 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  738. * api-data.texi, srfi-modules.texi: Moved docs for SRFI-14 into
  739. main API chapter. Updated docstrings from libguile/.
  740. 2004-08-25 Marius Vollmer <mvo@zagadka.de>
  741. * api-data.texi, srfi-modules.texi: Moved docs for SRFI-14 into
  742. main API chapter. Updated docstrings from libguile/.
  743. 2004-08-24 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  744. Ran a (docstring-process-module "(guile)") and moved entries from
  745. new-docstrings.texi to their appropriate place.
  746. * api-undocumented.texi: New file.
  747. 2004-08-21 Marius Vollmer <mvo@zagadka.de>
  748. From Richard Todd, Thanks!
  749. * scheme-scripts.texi (Invoking Guile): documented new '-L'
  750. switch.
  751. 2004-08-20 Marius Vollmer <mvo@zagadka.de>
  752. * gh.texi: Updated transition section with new recommended things.
  753. 2004-08-19 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  754. * api-data.texi (Strings): Document copy-on-write behavior and
  755. mutation-sharing substrings.
  756. (Symbols): Document scm_from_locale_symbol and
  757. scm_from_locale_symboln.
  758. 2004-08-18 Kevin Ryde <user42@zip.com.au>
  759. * posix.texi (Network Sockets and Communication): Add SOCK_RDM and
  760. SOCK_SEQPACKET.
  761. * posix.texi (Internet Socket Examples): Correction to socket calls,
  762. should be PF_INET not AF_INET (though generally the two are the same
  763. value).
  764. 2004-08-14 Kevin Ryde <user42@zip.com.au>
  765. * api-scheduling.texi (Mutexes): New datatype-centric section, adding
  766. fair mutexes and collecting up material from ...
  767. (Low level thread primitives, Higher level thread procedures, C level
  768. thread interface): ... these nodes.
  769. * srfi-modules.texi (SRFI-13 Predicates): Add string-any and
  770. string-every support for char and charset predicates.
  771. 2004-08-11 Marius Vollmer <mvo@zagadka.de>
  772. * api-data.texi (scm_c_round, scm_c_truncate): Docs for'em.
  773. 2004-08-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  774. * api-control.texi: Updated example to use scm_to_locale_string
  775. instead of roll-your-own scm_to_string. Also showcase
  776. scm_frame_free.
  777. * api-data.texi: Docs for scm_is_string, scm_to_locale_string*,
  778. and scm_from_locale_string*.
  779. * api-memory.texi: Docs for scm_frame_free.
  780. 2004-08-09 Kevin Ryde <user42@zip.com.au>
  781. * api-io.texi (File Ports): In open-file, describe the "b" binary flag.
  782. * slib.texi (SLIB): Add notes on delete-file, provided? and open-file
  783. overridden by ice-9 slib module.
  784. 2004-08-05 Kevin Ryde <user42@zip.com.au>
  785. * api-scheduling.texi (Arbiters): Tweak wording for clarity, note any
  786. thread can unlock not just the one which locked.
  787. * posix.texi (Conventions): Describe system-error args, use @defun for
  788. system-error-errno instead of just words.
  789. * srfi-modules.texi (SRFI-13 Predicates): Tweak wording for clarity.
  790. For string-every, note return is #t when no characters. For
  791. string-any and string-every, note last pred call is not currently a
  792. tail call, contrary to SRFI-13 spec.
  793. 2004-08-03 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  794. * api-data.texi: Added scm_is_real, scm_is_rational,
  795. scm_to_double, scm_from_double, numerator, and denominator. Added
  796. scm_is_complex, scm_is_number, scm_c_make_rectangular,
  797. scm_c_make_polar, scm_c_real_part, scm_c_imag_part,
  798. scm_c_magnitude, and scm_c_angle.
  799. 2004-08-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  800. * gh.texi: Replaced references to scm_num2* with scm_to_* and
  801. references to scm_*2num with scm_from_*.
  802. Renamed many file to make the structure of the manual more evident
  803. in the names. Changed all references.
  804. * scheme-binding.texi: Renamed to api-binding.texi.
  805. * scheme-compound.texi: Renamed to api-compound.texi.
  806. * scheme-control.texi: Renamed to api-control.texi.
  807. * scheme-data.texi: Renamed to api-data.texi.
  808. * scheme-debug.texi: Renamed to api-debug.texi.
  809. * deprecated.texi: Renamed to api-deprecated.texi.
  810. * scheme-evaluation.texi: Renamed to api-evaluation.texi.
  811. * ref-init.texi: Renamed to api-init.texi.
  812. * scheme-io.texi: Renamed to api-io.texi.
  813. * scheme-memory.texi: Renamed to api-memory.texi.
  814. * scheme-modules.texi: Renamed to api-modules.texi.
  815. * scheme-options.texi: Renamed to api-options.texi.
  816. * scm.texi: Renamed to api-overview.texi.
  817. * scheme-procedures.texi: Renamed to api-procedures.texi.
  818. * scheme-scheduling.texi: Renamed to api-scheduling.texi.
  819. * scheme-scm.texi: Renamed to api-scm.texi.
  820. * scheme-smobs.texi: Renamed to api-smobs.texi.
  821. * scheme-snarf.texi: Renamed to api-snarf.texi.
  822. * scheme-translation.texi: Renamed to api-translation.texi.
  823. * scheme-utility.texi: Renamed to api-utility.texi.
  824. * debugging.texi: Renamed to scheme-debugging.texi.
  825. * scripts.texi: Renamed to scheme-scripts.texi.
  826. * program.texi: Renamed to libguile-program.texi.
  827. * api-deprecated.texi: Removed.
  828. * intro.texi (Discouraged and Deprecated): General information
  829. about deprecation, etc.
  830. 2004-07-30 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  831. * misc-modules.texi (Formatted Output): Changed @w to @w{} in
  832. itemize. The former doesn't work for some reason...
  833. 2004-07-28 Kevin Ryde <user42@zip.com.au>
  834. * misc-modules.texi (Formatted Output): Rewrite, describing escapes
  835. and parameters in detail.
  836. * guile.texi (@le, @ge): New macros for ifnottex.
  837. 2004-07-24 Kevin Ryde <user42@zip.com.au>
  838. * guile.texi (@nicode): Use @alias instead of @macro, for correct
  839. handling of backslashes.
  840. * scheme-control.texi (Frames): Add @vindex for SCM_F_WIND_EXPLICITLY.
  841. * scheme-data.texi (String Syntax): Add all backslash forms accepted.
  842. (Regexp Functions): Use @defvar for regexp/icase etc, to emphasise
  843. that they're variables not symbols etc.
  844. * scheme-smobs.texi (Smobs): In SCM_SMOB_OBJECT_LOC,
  845. SCM_SMOB_OBJECT_2_LOC, SCM_SMOB_OBJECT_3_LOC, use {} to avoid "*"
  846. getting into the index as part of the macro name.
  847. * srfi-modules.texi (SRFI-0): Revise for clarity, drop BNF in favour
  848. of plain description, emphasise this is just for portable programs.
  849. 2004-07-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  850. * scheme-data.texi (Integers): Talk more about inexact and exact
  851. integers.
  852. 2004-07-10 Kevin Ryde <user42@zip.com.au>
  853. * srfi-modules.texi (SRFI-0): Add srfi-6 to the identifiers provided
  854. by default.
  855. 2004-07-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  856. * scheme-data.texi (Integers): Added docs for the new scm_is_,
  857. scm_to_ and scm_from_ functions for integers.
  858. * data-rep.texi (How Guile does it): Mark as being in limbo. All
  859. the real documentation will be in the nodes "Programming in C" and
  860. "API Reference".
  861. (Boolean Data): Just refer to node "Booleans".
  862. * gh.texi: Replace references to SCM_NFALSEP, etc with
  863. scm_is_true, etc.
  864. * scheme-data.texi (Booleans): Flag all function-like definitions
  865. as "C Functions".
  866. 2004-07-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  867. * scheme-data.texi: Remove non-R5RS stuff from the 'rn' index.
  868. * scheme-utility.texi: Added scm_is_eq, scm_eq_p, scm_eqv_p, and
  869. scm_equal_p.
  870. 2004-07-05 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  871. * scheme-data.texi (Booleans): Added reference entries for
  872. scm_is_true, scm_is_false, scm_is_bool, scm_from_bool, and
  873. scm_to_bool.
  874. 2004-06-28 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  875. * Makefile.am: Removed home-grown code for HTML generation.
  876. Automake does it for us now.
  877. * guile.texi, scheme-scm.texi: Do not use TeXinfo markup in
  878. section or node names.
  879. 2004-06-20 Rob Browning <rlb@defaultvalue.org>
  880. * srfi-modules.texi (SRFI-31): add documentation for srfi-31.
  881. 2004-05-19 Kevin Ryde <user42@zip.com.au>
  882. * Makefile.am (CLEANFILES): Remove guile.cps guile.fns guile.rns
  883. guile.tps guile.vrs guile.tmp, cleaned by automake these days.
  884. 2004-05-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  885. * scheme-smobs.texi: Updated for new SCM_SMOB_* macros.
  886. * preface.texi: Moved around the sections so that the manual
  887. overview comes first.
  888. * libguile-smobs.texi: Updated for the new role of scm_t_bits.
  889. 2004-04-21 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  890. * Big reorganization of the whole manual to give it a simpler
  891. structure.
  892. 2004-03-25 Kevin Ryde <user42@zip.com.au>
  893. * slib.texi (SLIB): Amend `require' cross reference node name, is
  894. called "Require" in slib 3a1.
  895. 2004-03-23 Kevin Ryde <user42@zip.com.au>
  896. * scheme-data.texi (Reals and Rationals): Typo in `rationalize'.
  897. 2004-03-04 Kevin Ryde <user42@zip.com.au>
  898. * posix.texi (Processes): Add setgroups.
  899. * srfi-modules.texi (SRFI-26): New section.
  900. 2004-02-21 Kevin Ryde <user42@zip.com.au>
  901. * scheme-evaluation.texi (Expression Syntax): Add @findex entries for
  902. quote and quasiquote no longer using @deffn.
  903. 2004-02-20 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  904. * scheme-evaluation.texi (Expression Syntax): Turned syntax
  905. description into a table, @deffn is not really up to the task.
  906. 2004-02-18 Marius Vollmer <mvo@zagadka.de>
  907. * guile.texi: Replaced list of authors with "The Guile
  908. Developers".
  909. * preface.texi (Contributors to the Manual): New section.
  910. * scheme-evaluation.texi (Expression Syntax): Use an empty name
  911. for the function call syntax definition. Otherwise, TeX complains
  912. about unbalanced parenthesis.
  913. 2004-02-18 Kevin Ryde <user42@zip.com.au>
  914. * scheme-evaluation.texi (Expression Syntax): Fill section with
  915. function calling etc, and quote and quasiquote.
  916. * srfi-modules.texi (SRFI-9): Revise for detail and clarity. Don't
  917. use ":foo" for example type name, since that depends on the keyword
  918. reading option.
  919. 2004-02-15 Mikael Djurfeldt <mdj@chunk.mit.edu>
  920. * scheme-compound.texi (Hash Table Reference): Wrote a new entry
  921. for hash-for-each-handle.
  922. 2004-02-16 Kevin Ryde <user42@zip.com.au>
  923. * scheme-compound.texi (Sloppy Alist Functions): Amend error messages
  924. shown to match current guile output.
  925. 2004-02-15 Mikael Djurfeldt <mdj@chunk.mit.edu>
  926. * scheme-compound.texi (Hash Table Reference): Renamed hash-map
  927. --> hash-map->list.
  928. 2004-02-15 Kevin Ryde <user42@zip.com.au>
  929. * scheme-compound.texi (Hash Table Reference): In scm_hash_ref etc,
  930. remove note that dflt must be given, it can be SCM_UNSPECIFIED.
  931. * scheme-control.texi (while do): Expand and clarify `do', in
  932. particular note iteration binds fresh locations, rather than values
  933. "stored".
  934. * srfi-modules.texi (SRFI-4): Revise for clarity, give each function
  935. explicitly rather than showing TAG so Emacs info-look can find them,
  936. merge "SRFI-4 - Read Syntax" and "SRFI-4 - Procedures" into just one
  937. node.
  938. 2004-02-12 Kevin Ryde <user42@zip.com.au>
  939. * scheme-compound.texi (Conventional Arrays): Revise for clarity.
  940. In array-equal?, show multiple arguments allowed.
  941. (Uniform Arrays): Remove duplicate array?.
  942. * guile.texi (cross): New macro.
  943. * scheme-compound.texi (Uniform Arrays): Note 1/3 prototype for
  944. doubles is now an exact fraction.
  945. * slib.texi (SLIB): Index entry for replacement `system'.
  946. 2004-01-28 Mikael Djurfeldt <mdj@chunk.mit.edu>
  947. * scheme-compound.texi (Uniform Arrays): Added a FIXME warning
  948. that the 1/3 prototype no longer works.
  949. 2004-01-23 Marius Vollmer <mvo@zagadka.de>
  950. * Makefile.am (guile_TEXINFOS): Added fdl.texi.
  951. 2004-01-21 Marius Vollmer <mvo@zagadka.de>
  952. Added copyright notices to all TeXinfo files.
  953. * fdl.texi: New.
  954. * guile.texi: Include it as an appendix.
  955. * preface.texi: State that the manual is FDL.
  956. 2004-01-20 Kevin Ryde <user42@zip.com.au>
  957. * preface.texi (Guile License): Note readline is GPL and manual has
  958. its own copying terms. Describe briefly what the licenses mean in
  959. practice.
  960. * scheme-scheduling.texi (Higher level thread procedures): In monitor,
  961. don't let "newly created" suggest a mutex created on every evaluation.
  962. Note what "monitor" means.
  963. * slib.texi (SLIB): Note `system' redefined by (ice-9 slib). Tweak
  964. `require' example.
  965. 2004-01-11 Kevin Ryde <user42@zip.com.au>
  966. * misc-modules.texi (Queues): New chapter.
  967. * guile.texi (Top): Add it.
  968. 2004-01-09 Kevin Ryde <user42@zip.com.au>
  969. * scheme-compound.texi (Bit Vectors): Revise for clarity, following
  970. report by Rouben Rostamian. Remove #b() example, that syntax is not
  971. accepted.
  972. 2004-01-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  973. * scheme-control.texi, scheme-io.tex, scheme-scheduling.texi:
  974. Adapt to new 'frame' names. Document scm_c_with_fluid,
  975. scm_c_with_fluids, and scm_frame_fluid.
  976. 2004-01-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  977. * scheme-control.texi: Document scm_on_unwind_with_scm and
  978. scm_on_rewind_with_scm.
  979. 2004-01-05 Marius Vollmer <mvo@zagadka.de>
  980. * scheme-scheduling.texi: Document scm_with_[un]blocked_asyncs.
  981. * scheme-io.texi: Document scm_with_current_<foo>_port.
  982. 2004-01-03 Marius Vollmer <mvo@zagadka.de>
  983. * scheme-control.texi: Document the frames stuff and other random
  984. changes.
  985. 2004-01-04 Kevin Ryde <user42@zip.com.au>
  986. * scheme-scheduling.texi (Threads): Note Guile uses POSIX threads, for
  987. concurrency and preemption.
  988. (C level thread interface): Note periodic libguile call required for C
  989. code in threads, add commented out reminders for SCM_TICK and
  990. guile-mode, for when those features are ready.
  991. * srfi-modules.texi (SRFI-1 Filtering and Partitioning): For partition
  992. and partition!, emphasise the multi-value return, note partition may
  993. share a tail with the given list.
  994. * srfi-modules.texi (SRFI-1 Searching, SRFI-1 Deleting, SRFI-1
  995. Association Lists): Note how member, delete, delete! and assoc extend
  996. the corresponding core functions.
  997. 2003-11-25 Kevin Ryde <user42@zip.com.au>
  998. * tools.texi (Macros guile-snarf recognizes): Correction to GOOPS
  999. cross reference.
  1000. 2003-11-19 Marius Vollmer <mvo@zagadka.de>
  1001. * scheme-data.texi: Include exact rationals.
  1002. From Stephen Compall. Thanks!
  1003. * intro.texi (What is Guile?): Add @acronym for POSIX, R5RS, GUI,
  1004. and HTTP. Conclude linking libguile. Say what one can find *for*.
  1005. * preface.texi (Manual Conventions): Double-quote some statements
  1006. formerly single-quoted. Remove some redundant quotes around code.
  1007. Clarify meaning of `iff' further for those that didn't get it the
  1008. first time 'round (like me). Make graphical indicators samples,
  1009. not code. Put results of evaluation on the same line as @result
  1010. symbols. Use @print example as example of total usage, and remind
  1011. readers not to forget the difference.
  1012. 2003-11-17 Marius Vollmer <mvo@zagadka.de>
  1013. * scheme-modules.texi: Document '@' and '@@'.
  1014. * scripts.texi: Mention that "-e (@ ...)" also works.
  1015. 2003-11-15 Kevin Ryde <user42@zip.com.au>
  1016. * scheme-data.texi (Random): Add *random-state* variable, put note at
  1017. the top of the node about it being the default, rather than just in
  1018. the description of random.
  1019. 2003-11-13 Marius Vollmer <mvo@zagadka.de>
  1020. * preface.texi (Manual Layout): Wrap POSIX, API, and SLIB in
  1021. @acronym. Change from paragraph format (somewhat clumsy-looking
  1022. on paper, at least) to @table format, with headers @strong. Made
  1023. example modules complete sentences. From Stephen Compall, thanks!
  1024. 2003-11-09 Kevin Ryde <user42@zip.com.au>
  1025. * misc-modules.texi (Pretty Printing): Add new keyword options, break
  1026. example to avoid long line.
  1027. * scheme-data.texi (Random): In random, use @code for *random-state*.
  1028. Reported by Stephen Compall.
  1029. * srfi-modules.texi (SRFI-1 Filtering and Partitioning): Move filter
  1030. and filter! ...
  1031. * scheme-compound.texi (List Modification): ... to here, now that
  1032. they're implemented in the core.
  1033. 2003-11-03 Kevin Ryde <user42@zip.com.au>
  1034. * misc-modules.texi (File Tree Walk): New chapter.
  1035. * guile.texi: Add it.
  1036. 2003-10-18 Kevin Ryde <user42@zip.com.au>
  1037. * gh.texi (Calling Scheme procedures from C, scm transition summary):
  1038. Refer to scm_list_n, not the old name scm_listify.
  1039. (scm transition summary): For gh_apply, recommend scm_apply_0, which
  1040. is now documented.
  1041. * gh.texi (Defining new Scheme procedures in C): Don't use
  1042. @strong{Note:}, latest makeinfo will complain it looks like a cross
  1043. reference.
  1044. * posix.texi (Time): Correction to strftime glibc cross reference
  1045. node, now "Formatting Calendar Time".
  1046. * srfi-modules.texi (SRFI-1 Searching): In break, note conflict with
  1047. binding established by `while'.
  1048. 2003-10-09 Kevin Ryde <user42@zip.com.au>
  1049. * scheme-compound.texi (Hash Table Reference): Decribe rehashing, note
  1050. no hashx-remove!, describe make-hash-table size parameter.
  1051. 2003-10-06 Marius Vollmer <mvo@zagadka.de>
  1052. * scheme-memory.texi: Added a short explanation of the GC and the
  1053. conservative stack scanning.
  1054. (scm_gc_protect_object, scm_gc_unprotect_object,
  1055. scm_permanent_object): New.
  1056. * data-rep.texi, scheme-memory.texi (scm_remember_upto_here_1,
  1057. scm_remember_upto_here_2): Moved from data-rep.texi to
  1058. scheme-memory.texi.
  1059. 2003-10-02 Kevin Ryde <user42@zip.com.au>
  1060. * scheme-io.texi (String Ports): In call-with-output-string, note proc
  1061. should not close the port. In get-output-string, note string must be
  1062. gotten before closing the port.
  1063. 2003-09-21 Kevin Ryde <user42@zip.com.au>
  1064. * posix.texi (File System): In access?, reword a bit, clarify real
  1065. versus effective ID handling, cross reference glibc on that, and
  1066. recommend against access tests in library functions.
  1067. 2003-09-13 Kevin Ryde <user42@zip.com.au>
  1068. * posix.texi (File System): In stat:dev and stat:mode, clarify that
  1069. both are numbers.
  1070. * posix.texi (Network Address Conversion): Under IPv4, describe
  1071. numeric representation in Guile, add INADDR_LOOPBACK and
  1072. INADDR_BROADCAST, add commented-out INADDR_NONE.
  1073. * scheme-compound.texi (Append/Reverse): Merge reverse and reverse!,
  1074. describe newtail parameter for reverse!, remove confusing caveat about
  1075. head becoming tail for reverse!.
  1076. * scheme-io.texi (Reading): In port-column, port-line,
  1077. set-port-column! and set-port-line!, port parameter must be given,
  1078. there's no default to current input.
  1079. * scheme-io.texi (Reading): Add scm_c_read.
  1080. (Writing): Add scm_c_write.
  1081. * srfi-modules.texi (SRFI-1 Constructors): Add list-copy.
  1082. * srfi-modules.texi (SRFI-19): Rewrite, adding descriptions of all
  1083. functions, and a bit of an introduction.
  1084. 2003-09-03 Kevin Ryde <user42@zip.com.au>
  1085. * scheme-data.texi (Keyword Primitives): Add examples to
  1086. make-keyword-from-dash-symbol and keyword-dash-symbol. Add
  1087. scm_c_make_keyword.
  1088. * scheme-data.texi (Symbol Primitives): In gensym, cross reference
  1089. uninterned symbols, use @w{} on " g" prefix to avoid any chance of a
  1090. line break obscuring it.
  1091. 2003-08-30 Kevin Ryde <user42@zip.com.au>
  1092. * data-rep.texi (Remembering During Operations): Note
  1093. scm_remember_upto_here_1 applies only to C automatic variables.
  1094. * guile.texi: Move @contents to usual place after title page, and
  1095. after first menu since that looks nice in html.
  1096. * posix.texi (Ports and File Descriptors): In pipe PIPE_BUF, use
  1097. @defvar, reword a bit for clarity, cross reference glibc.
  1098. * posix.texi (Network Sockets and Communication): In socket, use
  1099. @defvar for protocol variables, cross reference for getprotobyname,
  1100. note it's usually connect and accept that establishes communication.
  1101. * posix.texi (Network Sockets and Communication): In socketpair,
  1102. clarify the return is a pair with ports in car and cdr, note
  1103. connection is full duplex, refer to socket for parameters, refer to
  1104. PF_UNIX rather than AF_UNIX.
  1105. * scheme-compound.texi (Append/Reverse): Merge append and append!,
  1106. shown parameters as lst1 ... lstN, describe list argument for
  1107. scm_append and scm_append_x and note that it's unmodified.
  1108. * scheme-compound.texi (Hash Table Reference): Add hashx- case
  1109. insensitive string example, add cross references to symbol-hash,
  1110. string-hash, string-hash-ci, and char-set-hash.
  1111. * scheme-control.texi (Multiple Values): In values, show args as "arg1
  1112. ... argN". In scm_values, note args is a list and returned object
  1113. shares structure with it.
  1114. * scheme-control.texi (Catch): Add scm_internal_catch.
  1115. (Lazy Catch): Add scm_internal_lazy_catch.
  1116. * scheme-data.texi (Arithmetic): Use a table for scheme to C libm
  1117. equivalences, add C99 trunc.
  1118. * scheme-procedures.texi (Lambda): Note ". rest" list argument is
  1119. always newly created.
  1120. * srfi-modules.texi (SRFI-1 Association Lists): In alist-delete and
  1121. alist-delete!, note argument order for the equality calls per SRFI-1
  1122. spec.
  1123. 2003-08-26 Kevin Ryde <user42@zip.com.au>
  1124. * scheme-data.texi (Scientific): Add two-argument atan.
  1125. * tools.texi (How guile-snarf works): Need @@ for texinfo in example.
  1126. 2003-08-17 Kevin Ryde <user42@zip.com.au>
  1127. * scheme-compound.texi (Hash Table Reference): Collect up groups of
  1128. functions to avoid duplication. Revise notes on hashx functions and
  1129. on vector implementation. In make-hash-table, size is now optional.
  1130. Add hash-map and hash-for-each.
  1131. 2003-08-14 Kevin Ryde <user42@zip.com.au>
  1132. * scheme-control.texi (while do): Update `while' for code rewrite, in
  1133. particular describe break and continue.
  1134. 2003-08-09 Kevin Ryde <user42@zip.com.au>
  1135. * scheme-memory.texi (Memory Blocks): Add index entries for deprecated
  1136. scm_must_malloc and friends.
  1137. 2003-07-29 Kevin Ryde <user42@zip.com.au>
  1138. * scheme-compound.texi (List Constructors): Remove scm_cons_star,
  1139. since it's not very helpful.
  1140. * scheme-utility.texi (Property Primitives): In primitive-property-ref,
  1141. note parameters to not-found-proc, use hyphens rather than underscores
  1142. for that parameter name.
  1143. In primitive-property-set!, VAL is the value parameter not CODE.
  1144. 2003-07-24 Kevin Ryde <user42@zip.com.au>
  1145. * scheme-control.texi (Dynamic Wind): Untabify.
  1146. (Multiple Values): Use @result.
  1147. Reported by Stephen Compall <s11@member.fsf.org>.
  1148. * scheme-control.texi (Continuations): Rewrite with more detail.
  1149. * scheme-scheduling.texi (System asyncs): Add index entries for C
  1150. functions.
  1151. * scheme-scheduling.texi (Parallel Forms): New section.
  1152. 2003-07-18 Kevin Ryde <user42@zip.com.au>
  1153. * scheme-compound.texi (List Constructors): In list, use "elem1
  1154. ... elemN". Add scm_list_1, scm_list_2, scm_list_3, scm_list_4,
  1155. scm_list_5, scm_list_n. Remove scm_list, since it's a no-op.
  1156. * guile.texi (nicode): New macro.
  1157. * scheme-evaluation.texi (Fly Evaluation): In apply, reword for
  1158. clarity, drop the "append" example. Add scm_apply, scm_apply_0,
  1159. scm_apply_1, scm_apply_2, scm_apply_3.
  1160. Add scm_call_0, scm_call_1, scm_call_2, scm_call_3.
  1161. In apply:nconc2last, move down after "apply", reword for clarity, note
  1162. correspondence to apply params.
  1163. * srfi-modules.texi (SRFI-0): Add cond-expand index entry.
  1164. (SRFI-9): Add define-record-type index entry.
  1165. 2003-07-12 Kevin Ryde <user42@zip.com.au>
  1166. * srfi-modules.texi (SRFI-1 Constructors): In iota, reword a bit for
  1167. clarity and add a couple of examples.
  1168. 2003-07-10 Kevin Ryde <user42@zip.com.au>
  1169. * deprecated.texi (Deprecated): Add scm_remember.
  1170. 2003-06-22 Kevin Ryde <user42@zip.com.au>
  1171. * data-rep.texi (Remembering During Operations): Refer to all "Guile
  1172. library functions" as provoking gc.
  1173. 2003-06-19 Kevin Ryde <user42@zip.com.au>
  1174. * scheme-io.texi (File Ports): Describe call-with-input-file and
  1175. call-with-output-file together. Describe with-input-from-file,
  1176. with-output-to-file and with-error-to-file together, and add that they
  1177. use dynamic-wind on the current port setting and keep the port open in
  1178. support of captured continuations.
  1179. (Closing): Describe close-input-port and close-output-port together,
  1180. tweak the wording slightly.
  1181. 2003-06-14 Kevin Ryde <user42@zip.com.au>
  1182. * data-rep.texi (Vector Data): For SCM_VECTOR_BASE, SCM_STRING_CHARS
  1183. and SCM_SYMBOL_CHARS, cross reference "Remembering During Operations".
  1184. * scheme-data.texi (Arithmetic): round is to nearest even.
  1185. 2003-06-12 Kevin Ryde <user42@zip.com.au>
  1186. * data-rep.texi (Remembering During Operations): New section.
  1187. * scheme-data.texi (Primitive Numerics): Add atan2, pow, asinh, acosh
  1188. and atanh to scheme<->C table. Note asinh, acosh and atanh are C99,
  1189. and scm_asinh, scm_acosh and scm_atanh are equivalents. Cross ref
  1190. glibc "Mathematics". Reword this end part for clarity.
  1191. * scheme-memory.texi (Memory Blocks): Use {} around types for
  1192. @deftypefn, for correct name in indexes.
  1193. * scheme-utility.texi (C Hooks): Ditto.
  1194. * gh.texi (Scheme to C): Ditto.
  1195. * gh.texi (Scheme to C): In gh_scm2newstr, lenp is size_t* not int*.
  1196. This changed in guile 1.6, the docs weren't updated.
  1197. 2003-06-09 Marius Vollmer <mvo@zagadka.de>
  1198. From Mike Gran <spikegran@earthlink.net>. Thanks!
  1199. * preface.texi: Minor punctuation mistakes. Hyphens should link
  1200. compound adjectives. Commas should be placed after a "therefore"
  1201. that begins a sentence. Commas should not be used to separate a
  1202. list of only 2 dependent clauses.
  1203. 2003-06-07 Kevin Ryde <user42@zip.com.au>
  1204. * scheme-data.texi (Arithmetic): Cross reference glibc floor and ceil.
  1205. 2003-06-05 Kevin Ryde <user42@zip.com.au>
  1206. * posix.texi (File System): stat:rdev and stat:blocks can return #f,
  1207. stat:blksize returns a sensible size if the field is not available.
  1208. * scheme-compound.texi (Array Mapping): Reword for clarity, and in
  1209. particular have the same parameter names in the text and prototypes.
  1210. * scheme-evaluation.texi (Delayed Evaluation): Add delay, reword
  1211. promise? and force a bit, describe recursive forcing of a promise by
  1212. its own code.
  1213. * scheme-io.texi (Ports): Add notes on garbage collection, and on
  1214. explicitly closing file ports.
  1215. (File Ports): Cross reference Ports node on explicit closing.
  1216. * posix.texi (Network Sockets and Communication): Cross reference
  1217. Ports node on explicit closing.
  1218. * scheme-scheduling.texi (Futures): New section.
  1219. * srfi-modules.texi (SRFI-13 Miscellaneous): In string-replace, note
  1220. that start1 and end1 optional is a Guile extension.
  1221. 2003-05-30 Kevin Ryde <user42@zip.com.au>
  1222. * deprecated.texi: Add substring-move-left! and substring-move-right!.
  1223. * scheme-io.texi (Default Ports): Remove duplicate descriptions of
  1224. set-current-output-port and set-current-error-port.
  1225. 2003-05-27 Dirk Herrmann <D.Herrmann@tu-bs.de>
  1226. * scheme-compound.texi: Clarified that vectors need to be quoted.
  1227. 2003-05-26 Kevin Ryde <user42@zip.com.au>
  1228. * posix.texi (Locales): Clarify setlocale a bit, list all categories,
  1229. cross reference to libc.
  1230. 2003-05-24 Kevin Ryde <user42@zip.com.au>
  1231. * scheme-procedures.texi: Add index entries lambda, optargs, syncase.
  1232. * scsh.texi (The Scheme shell (scsh)): Add index entries.
  1233. 2003-05-22 Kevin Ryde <user42@zip.com.au>
  1234. * srfi-modules.texi (SRFI-2): Rewrite and-let*, describing plain
  1235. expression clauses and improving the examples.
  1236. 2003-05-17 Marius Vollmer <mvo@zagadka.de>
  1237. * posix.texi (socket): Use PF_ instead of AF_ prefix.
  1238. 2003-05-16 Kevin Ryde <user42@zip.com.au>
  1239. * guile.texi: Use @copying, show copyright and permissions at start of
  1240. info and html.
  1241. * srfi-modules.texi (SRFI-1 Deleting): Rewrite delete and
  1242. delete-duplicates, adding behaviour details specified by srfi-1.
  1243. 2003-05-12 Kevin Ryde <user42@zip.com.au>
  1244. * preface.texi (Guile License): Refer to COPYING.LIB.
  1245. * repl-modules.texi (Loading Readline Support, Readline Options):
  1246. Index entries for readline functions.
  1247. * scheme-control.texi (Handling Errors): Fix regexp error key, should
  1248. be `regular-expression-syntax'.
  1249. * scheme-data.texi (Complex): Show z argument in prototypes.
  1250. 2003-05-10 Kevin Ryde <user42@zip.com.au>
  1251. * scheme-data.texi (Reals and Rationals): Fix typo @result{#f}, and
  1252. put @result outside @code.
  1253. * scheme-data.texi (Bitwise Operations): Note negatives are treated as
  1254. infinite precision twos complement. Revise `ash' to emphasise this
  1255. for right shifts of negatives. Describe integer-length behaviour on
  1256. negatives. Add `...' to logand, logior, logxor since they take
  1257. multiple parameters.
  1258. * guile.texi (m): New macro.
  1259. * scheme-control.texi (Handling Errors): Revise C support section to
  1260. get index entries, and clarify parameters. Remove scm_regex_error, no
  1261. longer exists and wasn't available to applications.
  1262. * scheme-control.texi (Handling Errors): Index entries for error keys.
  1263. 2003-05-08 Kevin Ryde <user42@zip.com.au>
  1264. * scheme-data.texi (Bitwise Operations): Fix lognot to ones-complement.
  1265. * slib.texi (JACAL): Fix @ref title.
  1266. Add index entries, use @file and @code variously.
  1267. 2003-05-06 Kevin Ryde <user42@zip.com.au>
  1268. * scheme-scheduling.texi (C level thread interface): Use @deftypefn
  1269. not @deftypefun, to get function names (not types) indexed.
  1270. * scheme-options.texi (Build Config): Add index entries for
  1271. %guile-build-info keys.
  1272. 2003-05-04 Kevin Ryde <user42@zip.com.au>
  1273. * scheme-data.texi (Integer Operations): Describe how quotient,
  1274. remainder and modulo round their results.
  1275. * scheme-io.texi (Reading): In read-char and peek-char, fix typos "?"
  1276. in @rnindex. In port-column, use @: after i.e.
  1277. (Writing): In get-print-state, two spaces after full stop. Add write,
  1278. revise display.
  1279. * srfi-modules.texi (SRFI-1 Length Append etc): Add count.
  1280. (SRFI-1 Fold and Map): In reduce, fix typo "... variant of fold", add
  1281. "f" to fold call shown. In reduce-right, use @code on "reduce".
  1282. * data-rep.texi, gh.texi: Add spaces after some @defun names.
  1283. * posix.texi (Processes): Fix typo "hhhh".
  1284. 2003-05-01 Neil Jerram <neil@ossau.uklinux.net>
  1285. * posix.texi: Add index entries for many variables and functions,
  1286. either using @defvar/@deffn or @vindex/@pindex. (Patch supplied
  1287. by Kevin Ryde.)
  1288. 2003-04-30 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  1289. * posix.texi (scm_c_port_for_each): Added.
  1290. 2003-04-26 Neil Jerram <neil@ossau.uklinux.net>
  1291. * scheme-data.texi (Symbol Primitives): Document scm_str2symbol
  1292. and scm_mem2symbol.
  1293. * data-rep.texi (Describing a New Type): Clarify that
  1294. scm_make_smob_type_mfpe is deprecated. (Thanks to
  1295. tomas@fabula.de.)
  1296. * scheme-control.texi (Handling Errors): Remove scm_sysmissing,
  1297. long since gone from libguile. (Thanks to Kevin Ryde.)
  1298. 2003-04-23 Rob Browning <rlb@defaultvalue.org>
  1299. * posix.texi (Processes): add documentation for system*.
  1300. 2003-04-05 Marius Vollmer <mvo@zagadka.de>
  1301. * preface.texi: Reflect change to LGPL.
  1302. 2003-03-27 Rob Browning <rlb@defaultvalue.org>
  1303. * scheme-io.texi (Reading): clarify character ordering in port for
  1304. unread-string.
  1305. 2003-03-07 Rob Browning <rlb@defaultvalue.org>
  1306. * guile.texi: change MANUAL_EDITION to MANUAL-EDITION so we don't
  1307. choke TeX (thanks to Dale P. Smith).
  1308. * preface.texi: change MANUAL_EDITION to MANUAL-EDITION so we
  1309. don't choke TeX (thanks to Dale P. Smith).
  1310. 2003-01-02 Mikael Djurfeldt <djurfeldt@nada.kth.se>
  1311. * scheme-scheduling.texi (Low level thread primitives): Fixed typo
  1312. in broadcast-condition-variable.
  1313. 2002-12-08 Rob Browning <rlb@defaultvalue.org>
  1314. * scheme-options.texi (Build Config): add effective-version docs.
  1315. 2002-11-17 Neil Jerram <neil@ossau.uklinux.net>
  1316. Applied patches from Stephen Compall as follows. (Thanks!)
  1317. 2002-11-06 Stephen Compall <rushing@sigecom.net>
  1318. * posix.texi: Changed quotes to match Texinfo expectations.
  1319. Added references to the glibc manual.
  1320. Used proper Texinfo text marking for many keywords, such as @code,
  1321. @samp, @env, @var.
  1322. Fixed argument metasyntactic variable references in
  1323. file-manipulation section so the usage in the descriptions matches
  1324. the usage in the declarations.
  1325. 2002-10-26 Stephen Compall <rushing@sigecom.net>
  1326. * scheme-data.texi: Addition and change of many Texinfo tags,
  1327. particularly usage of @var and @samp, as well as reformatting of
  1328. some lists into tables and usage of @result.
  1329. Notes about some things I didn't understand, as well as a
  1330. missing section on non-control characters.
  1331. 2002-10-27 Gary Houston <ghouston@arglist.com>
  1332. * scheme-modules.texi (Environments): only available when
  1333. (ice-9 r5rs) is used.
  1334. * scsh.texi (The Scheme shell (scsh)): current url is www.scsh.net.
  1335. 2002-10-27 Marius Vollmer <mvo@zagadka.ping.de>
  1336. * scheme-scheduling.texi: Updated mutex and condition varable
  1337. functions.
  1338. 2002-10-27 Neil Jerram <neil@ossau.uklinux.net>
  1339. * debugging.texi (Debugging Features): Rewritten.
  1340. 2002-10-19 Neil Jerram <neil@ossau.uklinux.net>
  1341. * new-docstrings.texi, scheme-binding.texi, scheme-io.texi,
  1342. scheme-scheduling.texi, posix.texi: Automatic docstring updates.
  1343. 2002-10-14 Marius Vollmer <mvo@zagadka.ping.de>
  1344. * intro.texi (Whirlwind Tour): Added pointer to examples
  1345. directory.
  1346. 2002-10-10 Marius Vollmer <mvo@zagadka.ping.de>
  1347. * scheme-scheduling.texi (System Asyncs): Updated.
  1348. 2002-10-07 Marius Vollmer <mvo@zagadka.ping.de>
  1349. * scheme-scheduling.texi (Asyncs): Updated.
  1350. * posix.texi (sigaction): Updated.
  1351. 2002-10-03 Neil Jerram <neil@ossau.uklinux.net>
  1352. * posix.texi (Processes), scheme-options.texi (Common Feature
  1353. Symbols): Refer to provided? rather than deprecated feature?.
  1354. 2002-10-03 Marius Vollmer <mvo@zagadka.ping.de>
  1355. * tools.texi (How guile-snarf works): Updated.
  1356. (Writing your own snarfing macros): New.
  1357. 2002-09-25 Neil Jerram <neil@ossau.uklinux.net>
  1358. * scheme-debug.texi (Debugging): Make sections into nodes.
  1359. (Debugging Options): Node removed.
  1360. * scheme-options.texi (Feature Tracking): Brought forward before
  1361. sections on options.
  1362. (Runtime Options): New section, to group options-related nodes.
  1363. 2002-09-24 Neil Jerram <neil@ossau.uklinux.net>
  1364. * scheme-options.texi (Options and Config): Chapter name changed,
  1365. and intro text improved.
  1366. (Install Config): Brought forward, and renamed Build
  1367. Configuration.
  1368. The following doc updates are from Ian Sheldon - thanks!
  1369. * scheme-data.texi (Appending Strings, Regexp Functions, Match
  1370. Structures): Add examples.
  1371. (Regular Expressions): Add instruction to use (ice-9 regex)
  1372. module.
  1373. * slib.texi (SLIB): Remove duplicate `the'.
  1374. 2002-09-22 Neil Jerram <neil@ossau.uklinux.net>
  1375. * scheme-options.texi (General option interface): Mention
  1376. eval-options-interface and debug-options-interface.
  1377. * scheme-debug.texi (Debugging): New node describing source
  1378. properties.
  1379. 2002-09-19 Neil Jerram <neil@ossau.uklinux.net>
  1380. * scheme-utility.texi (Hook Reference): Improvements to hook docs.
  1381. Thanks to Thien-Thi Nguyen for the patches.
  1382. 2002-09-16 Marius Vollmer <mvo@zagadka.ping.de>
  1383. * scheme-data.texi (Symbol Props): It's "set-symbol-property!",
  1384. not "set-symbol-property". Thanks to Pieter Pareit!
  1385. 2002-09-15 Marius Vollmer <mvo@zagadka.ping.de>
  1386. * scheme-data.texi: Tell them to use 'provided?' instead of
  1387. '*feaures*'.
  1388. 2002-09-09 Marius Vollmer <mvo@zagadka.ping.de>
  1389. * scheme-ideas.texi (Creating a Procedure): Fixed typo. Thanks to
  1390. Pieter Pareit!
  1391. * intro.texi: Updated GNu ftp server name. Use "-lguile" instead
  1392. of "libguile.a". Some small fixes/improvements.
  1393. * scheme-reading.texi: Added www.schemers.org. Removed foldoc,
  1394. it's too generic. Updated 'teach yourself ...' URL.
  1395. 2002-08-27 Marius Vollmer <mvo@zagadka.ping.de>
  1396. * scheme-modules.texi: Markup fixes and removal of gh_ references.
  1397. Thanks to Dale Smith!
  1398. 2002-08-14 Marius Vollmer <mvo@zagadka.ping.de>
  1399. * scheme-evaluation.texi (eval-string): Updated.
  1400. * scheme-scheduling.texi (Fluids): Touched up a bit, added
  1401. with-fluids.
  1402. 2002-08-13 Marius Vollmer <mvo@zagadka.ping.de>
  1403. * scheme-modules.texi (More Modules Procedures): Removed.
  1404. (Accessing Modules from C): New.
  1405. 2002-08-10 Gary Houston <ghouston@arglist.com>
  1406. * scheme-procedures.texi: new section Primitive Procedures,
  1407. documentation for scm_c_make_gsubr and scm_c_define_gsubr.
  1408. * scheme-modules.texi (Compiled Code Modules): replace
  1409. gh_new_procedure with scm_c_define_gsubr.
  1410. 2002-08-08 Neil Jerram <neil@ossau.uklinux.net>
  1411. * gh.texi (Data types and constants defined by gh): Avoid
  1412. generating index entry for SCM.
  1413. * posix.texi (Runtime Environment): Remove duplicate doc for
  1414. setenv.
  1415. * data-rep.texi, scheme-memory.texi, scheme-modules.texi: Merge
  1416. recent updates from stable branch.
  1417. * posix.texi (File System, Time, Pipes, Network Databases,
  1418. Internet Socket Examples): Add examples provided by Ian Sheldon.
  1419. 2002-08-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  1420. * scheme-binding.texi: Don't talk about 'bound?' which is gone.
  1421. Thanks to Christopher Cramer.
  1422. 2002-08-06 Han-Wen Nienhuys <hanwen@cs.uu.nl>
  1423. * scheme-memory.texi (Memory Blocks): add scm_calloc, scm_gc_calloc.
  1424. correct typos.
  1425. 2002-08-05 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  1426. * intro.texi, srfi-modules.texi: Added (use-modules (ice-9
  1427. rdelim)) to an example that uses read-line. Thanks to Ralf
  1428. Mattes!
  1429. * scheme-memory.texi: Added an introductory blurb about GC that I
  1430. had lying around.
  1431. 2002-08-02 Gary Houston <ghouston@arglist.com>
  1432. * scheme-modules.texi: split "Scheme and modules" into
  1433. "provide and require" and "Environments". Mention R5RS
  1434. environments.
  1435. 2002-07-16 Neil Jerram <neil@ossau.uklinux.net>
  1436. * scheme-options.texi (Debugger options): New subsection
  1437. describing stack overflow and what to do about it.
  1438. 2002-07-10 Gary Houston <ghouston@arglist.com>
  1439. * scheme-modules.texi (Compiled Code Modules): Removed description
  1440. of scm_register_module_xxx, which no longer exists. A description
  1441. of current techniques is needed.
  1442. 2002-05-09 Marius Vollmer <mvo@zagadka.ping.de>
  1443. * scheme-data.texi (Numbers): Added description of the new values
  1444. +inf.0, -inf.0 and +nan.0.
  1445. * posix.texi (Runtime Environment): Added entries for 'setenv' and
  1446. 'unsetenv'.
  1447. 2002-04-28 Marius Vollmer <mvo@zagadka.ping.de>
  1448. * gh.texi, data-rep.texi: Moved `@deftyp {Data type} SCM' line
  1449. from gh.texi to data-rep.texi. Both files already had similar
  1450. descriptions for SCM. Given that gh.texi is deprecated, looking
  1451. up `SCM' in the index should take one to the primary location
  1452. rather than deprecated section. Hence this change. Added
  1453. `@deftp' for scm_t_bits data type so that a proper index entry is
  1454. added for this. Thanks to Richard Y. Kim!
  1455. * data-rep.texi (Subrs): Changed scm_make_gsubr to
  1456. scm_c_define_gsubr. Thanks to Richard Y. Kim!
  1457. 2002-04-24 Marius Vollmer <mvo@zagadka.ping.de>
  1458. * srfi-modules.texi (SRFI-13 Miscellaneous): Updated docs of
  1459. string-tokenize.
  1460. 2002-04-20 Neil Jerram <neil@ossau.uklinux.net>
  1461. * scheme-intro.texi (Scheme Layout), scm.texi (Reference Layout):
  1462. Node moved from a to b.
  1463. * guile.texi (Scheme Intro, Basic Ideas, Guile Scripting, Command
  1464. Line Handling, Debugging Features, Autoconf Support, Miscellaneous
  1465. Tools, Further Reading): Moved to new Part II.
  1466. * preface.texi (Manual Layout): Part numbers updated accordingly.
  1467. * guile.texi (Top): Move API Overview node to beginning of Guile
  1468. API Reference part.
  1469. (Part II: Writing and Running Guile Scheme): New part; will
  1470. contain content from `Programming with Guile' that pertains to
  1471. writing and using Guile on the Scheme level.
  1472. * scm.texi (API Overview): Renamed from `Guile API'.
  1473. * guile.texi (Top), scheme-modules.texi (Included Guile Modules):
  1474. Debugger User Interface node renamed Debugging Features.
  1475. * debugging.texi (Stacks and Frames): Node deleted; non-duplicated
  1476. material moved to scheme-debug.texi.
  1477. (Debugging Features): Renamed from `Debugger User Interface'.
  1478. * scheme-debug.texi (Debugging): Rename chapter `Debugging
  1479. Infrastructure' and reorganize its contents.
  1480. * scheme-debug.texi (Debugging), scheme-control.texi (Handling
  1481. Errors): Move display-error to error-focussed section.
  1482. * scheme-debug.texi (Debugging), debugging.texi (Backtrace): Move
  1483. backtrace to user-level debugging chapter.
  1484. * scheme-debug.texi (Debugging), scheme-procedures.texi (Procedure
  1485. Properties): Move procedure-name, procedure-source and
  1486. procedure-environment to procedures chapter.
  1487. * scheme-debug.texi (Debugging), scheme-memory.texi (Memory
  1488. Blocks): Move malloc-stats to memory management chapter.
  1489. * scheme-procedures.texi (Syntax Rules): Remove mention of
  1490. use-modules for loading syncase; only use-syntax really works.
  1491. Thanks to Panagiotis Vossos for spotting this.
  1492. * program.texi (Scheme vs C): New node, with existing material
  1493. taken from chapter intro.
  1494. (Programming Overview): New intro para to introduce example of
  1495. Guile integration:
  1496. (Extending Dia): New node.
  1497. 2002-04-17 Marius Vollmer <mvo@zagadka.ping.de>
  1498. * Makefile.am (CLEANFILES): Added guile.cps, guile.fns, guile.rns,
  1499. guile.tps, guile.vrs, guile.tmp.
  1500. 2002-04-01 Neil Jerram <neil@ossau.uklinux.net>
  1501. * scheme-intro.texi (Scheme Layout): Remove reference to defunct
  1502. Guile Extensions index.
  1503. * guile.texi: Removed Guile Extensions index.
  1504. * scheme-indices.texi (Guile Extensions Index): Removed.
  1505. * guile.texi: Remove vgone, vdeprecated, vchanged and vnote
  1506. macros; they're not actually useful after all. Update copyright
  1507. years.
  1508. * scheme-compound.texi (Vectors): Make subsections into nodes.
  1509. (Vectors): Review, slightly reorg and clarify docs in this
  1510. section.
  1511. * scheme-data.texi (Symbols): Reorganized node substructure and
  1512. added lots of explanatory text around the @deffn's.
  1513. 2002-03-29 Neil Jerram <neil@ossau.uklinux.net>
  1514. * scheme-modules.texi (Variables): Mention obarrays.
  1515. * scheme-data.texi (Symbol Tables, Symbol Props): Remove vgone
  1516. markers for deprecated symbol items.
  1517. (Symbol Props): Remove doc for obsolete 2 arg version of
  1518. symbol-interned?.
  1519. (String Miscellanea): Removed, since it only contained duplicate
  1520. doc for string-ci->symbol.
  1521. (Symbol Tables): Move doc for gensym to Symbol Primitives; rest of
  1522. section removed.
  1523. * posix.texi (Ports and File Descriptors), scheme-evaluation.texi
  1524. (Fly Evaluation): Remove vgone markers for close-all-ports-except,
  1525. eval2 and read-and-eval!.
  1526. * data-rep.texi (Describing a New Type), scheme-compound.texi
  1527. (Append/Reverse), scheme-procedures.texi (Internal Macros):
  1528. Trivial updates to sync with stable branch.
  1529. 2002-03-27 Neil Jerram <neil@ossau.uklinux.net>
  1530. * scheme-compound.texi (List Searching): Remove docs for
  1531. `scm_sloppy_mem*', which no longer exist.
  1532. 2002-03-24 Neil Jerram <neil@ossau.uklinux.net>
  1533. * guile.texi (Top), intro.texi (What is Guile?, The Basic Guile
  1534. Package): Use @ifnottex instead of @ifinfo, so that HTML
  1535. generation works correctly.
  1536. 2002-03-24 Marius Vollmer <mvo@zagadka.ping.de>
  1537. * tools.texi: Updated to reflect changes to the guile-snarf tool.
  1538. 2002-03-16 Neil Jerram <neil@ossau.uklinux.net>
  1539. * scheme-utility.texi (Hooks): Further updates. New material on
  1540. GC hooks.
  1541. * scheme-evaluation.texi (Fly Evaluation): Note disappearance of
  1542. eval2 and read-and-eval!.
  1543. * deprecated.texi (Deprecated): Remove docs about previously
  1544. deprecated items that have now been removed.
  1545. 2002-03-15 Thien-Thi Nguyen <ttn@giblet.glug.org>
  1546. * tools.texi (guile-1.4 guile-snarf): Remove this node.
  1547. (How guile-snarf works): Update usage and description to
  1548. no longer mention "--compat=1.4" and instead "-d" and "-D".
  1549. (Macros guile-snarf recognizes): Add list of deprecated macros
  1550. and blurb. Add cindex for deprecated macros.
  1551. 2002-03-15 Neil Jerram <neil@ossau.uklinux.net>
  1552. * scheme-utility.texi (Hooks): Reviewed and updated.
  1553. * scheme-options.texi (Feature Tracking): New section.
  1554. * scheme-data.texi (Arithmetic, Primitive Numerics): Add
  1555. description of corresponding C functions.
  1556. * scheme-utility.texi (Object Properties): Revamp documentation on
  1557. object properties.
  1558. * scheme-memory.texi (Weak References): Update reference to Object
  1559. Properties node.
  1560. * guile.texi: Add macros for describing version information.
  1561. * scheme-data.texi, scheme-debug.texi, scheme-io.texi,
  1562. scheme-procedures.texi: Automatic updates from snarfed libguile
  1563. docstrings.
  1564. 2002-03-13 Thien-Thi Nguyen <ttn@giblet.glug.org>
  1565. * Makefile.am (guile_toc.html): Look for guile.texi in $(srcdir).
  1566. * tools.texi (How guile-snarf works): Mention "--compat=1.4", and
  1567. new processing steps. Update usage example, makefile frag.
  1568. (guile-1.4 guile-snarf): New subsubsection under
  1569. "Init Snarfing with guile-snarf".
  1570. 2002-03-12 Neil Jerram <neil@ossau.uklinux.net>
  1571. * scheme-compound.texi, scheme-data.texi, new-docstrings.texi:
  1572. Automatic updates from snarfed libguile docstrings.
  1573. * data-rep.texi, guile.texi, scheme-evaluation.texi,
  1574. scheme-options.texi, scheme-translation.texi: Various minor
  1575. enhancements ported from the stable CVS branch.
  1576. 2002-03-08 Thien-Thi Nguyen <ttn@giblet.glug.org>
  1577. * tools.texi (Miscellaneous Tools): New node/chapter.
  1578. (Snarfing, Init Snarfing with guile-snarf, How guile-snarf works,
  1579. Macros guile-snarf recognizes, Doc Snarfing): New nodes/(sub)sections.
  1580. (Executable Modules): Now a section under "Miscellaneous Tools".
  1581. * guile.texi (Miscellaneous Tools): Add under "Part II".
  1582. Implement by including tools.texi.
  1583. * Makefile.am (guile_TEXINFOS): Add tools.texi.
  1584. 2002-03-07 Thien-Thi Nguyen <ttn@giblet.glug.org>
  1585. * tools.texi: New file.
  1586. 2002-03-03 Neil Jerram <neil@ossau.uklinux.net>
  1587. * autoconf.texi (Autoconf Background): Insert missing `of'.
  1588. 2002-03-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
  1589. * api.txt, data-rep.texi: Renamed the struct scm_cell to
  1590. scm_t_cell.
  1591. * data-rep.texi: Renamed scm_alloc_cell to scm_cell and
  1592. scm_alloc_double_cell to scm_double_cell.
  1593. 2002-03-01 Marius Vollmer <mvo@zagadka.ping.de>
  1594. * scheme-memory.texi (Upgrading from scm_must_malloc et al): New
  1595. section.
  1596. 2002-02-28 Marius Vollmer <mvo@zagadka.ping.de>
  1597. * data-rep.texi: Use scm_gc_malloc and scm_gc_free instead of
  1598. scm_must_malloc and free in example code. Updated text for the
  1599. new memory management functions.
  1600. * scheme-debug.texi (malloc-stats): Refer to scm_gc_malloc instead
  1601. of to scm_must_malloc.
  1602. 2002-02-27 Stefan Jahn <stefan@lkcc.org>
  1603. * gh.texi (scm transition summary): Documented some more
  1604. gh equivalents and removed appropriate FIXME's.
  1605. 2002-02-26 Thien-Thi Nguyen <ttn@giblet.glug.org>
  1606. * Makefile.am: Update path to pre-inst-guile automake frag.
  1607. 2002-02-24 Rob Browning <rlb@defaultvalue.org>
  1608. * .cvsignore: add autoconf-macros.texi.
  1609. * Makefile.am (CLEANFILES): add autoconf-macros.texi.
  1610. 2002-02-19 Marius Vollmer <mvo@zagadka.ping.de>
  1611. * scheme-memory.texi (Memory Blocks): New section.
  1612. 2002-02-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
  1613. * Makefile.am: Include $(top_srcdir)/pre-inst-guile.am.
  1614. (GUILE): Delete var.
  1615. (autoconf-macros.texi): Use $(preinstguiletool).
  1616. 2002-02-04 Thien-Thi Nguyen <ttn@giblet.glug.org>
  1617. * autoconf.texi (Autofrisk, Using Autofrisk): New sections.
  1618. (Autoconf Support): Add new sections to menu.
  1619. 2002-02-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  1620. * scheme-data.texi (Symbol Uninterned): Added node.
  1621. 2002-01-29 Stefan Jahn <stefan@lkcc.org>
  1622. * gh.texi (scm transition summary): Documented gh equivalents
  1623. `scm_c_string2str', `scm_c_substring2str' and `scm_c_symbol2str'
  1624. and removed the appropriate FIXME's.
  1625. 2002-01-14 Marius Vollmer <marius.vollmer@uni-dortmund.de>
  1626. * Makefile.am (autoconf-macros.texi): Also set GUILE_LOAD_PATH
  1627. when invoking the uninstalled guile executable.
  1628. 2002-01-09 Thien-Thi Nguyen <ttn@giblet.glug.org>
  1629. * Makefile.am (autoconf-macros.texi): Fix build bug:
  1630. Write this file to srcdir. Thanks to I. N. Golubev.
  1631. 2002-01-08 Gary Houston <ghouston@arglist.com>
  1632. * Makefile.am: attempt to use guile from $(top_builddir)/libguile
  1633. when building autoconf-macros.texi. There are still problems with
  1634. modules and running makeinfo when builddir != srcdir.
  1635. 2002-01-08 Thien-Thi Nguyen <ttn@giblet.glug.org>
  1636. * data-rep.texi, gh.texi, guile.texi, intro.texi,
  1637. misc-modules.texi, new-docstrings.texi, posix.texi, program.texi,
  1638. repl-modules.texi, scheme-binding.texi, scheme-compound.texi,
  1639. scheme-control.texi, scheme-data.texi, scheme-debug.texi,
  1640. scheme-ideas.texi, scheme-io.texi, scheme-memory.texi,
  1641. scheme-modules.texi, scheme-procedures.texi,
  1642. scheme-translation.texi, scheme-utility.texi, scm.texi, slib.texi,
  1643. srfi-modules.texi: Spell check. Thanks to Fabrice Bauzac.
  1644. 2002-01-07 Neil Jerram <neil@ossau.uklinux.net>
  1645. * intro.texi (Linking Programs With Guile): Fix typo (superfluous
  1646. `do'). Thanks to Fabrice Bauzac.
  1647. 2002-01-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
  1648. * intro.texi: Spell check. Thanks to Fabrice Bauzac.
  1649. 2002-01-02 Thien-Thi Nguyen <ttn@giblet.glug.org>
  1650. * guile.texi (Part II): Add "Autoconf Support"; include
  1651. autoconf.texi.
  1652. * Makefile.am (guile_TEXINFOS): Add autoconf.texi and
  1653. autoconf-macros.texi.
  1654. (autoconf.texi, autoconf-macros.texi): New rules.
  1655. * autoconf.texi: New file.
  1656. 2001-12-22 Marius Vollmer <mvo@zagadka.ping.de>
  1657. * scheme-compound.texi (Alist Example): Changed "Bismarck" to
  1658. "Pierre". Thanks to Ron Peterson!
  1659. 2001-12-22 Neil Jerram <neil@ossau.uklinux.net>
  1660. * program.texi (Programming Overview): Chapter renamed from
  1661. `Programming Options'; some new material added.
  1662. 2001-12-07 Neil Jerram <neil@ossau.uklinux.net>
  1663. * scm.texi (Guile API): Renamed from `Scheme Primitives' and
  1664. broadened so that this chapter discusses the Guile API as a whole.
  1665. * program.texi (Available Functionality): Revise so that text
  1666. reads better.
  1667. * guile.texi (Programming Intro): New introductory text.
  1668. * scheme-ideas.texi (Definition): Reorder reference bullets in
  1669. ascending page number order.
  1670. 2001-12-04 Martin Grabmueller <mg@glug.org>
  1671. * scheme-procedures.texi (Optional Arguments): Typo fix: wither ->
  1672. either.
  1673. 2001-12-01 Neil Jerram <neil@ossau.uklinux.net>
  1674. * scheme-data.texi (Hooks): Moved into scheme-utility.texi.
  1675. * Makefile.am (guile_TEXINFOS): Added scheme-compound.texi.
  1676. * scheme-data.texi (Variables): Node moved to modules chapter.
  1677. (Symbol Read Syntax): New node, with syntax-related material taken
  1678. from old Symbols node.
  1679. (Symbol Primitives): Renamed from `Symbols'.
  1680. (Symbols and Variables): Renamed to `Symbols'.
  1681. (Symbol Props): Renamed from `Symbol Tables'.
  1682. (Symbols): General review, improvements and additional material
  1683. throughout this section.
  1684. (Other Data Types): New material: links to object types documented
  1685. elsewhere. Also renamed node to `Other Types'.
  1686. (Data Types): Split into two: `Simple Data Types' and `Compound
  1687. Data Types'. Introductory blurbs rewritten accordingly.
  1688. * guile.texi: Updated Notes comment.
  1689. * scheme-data.texi (Rx Interface): Node moved to Guile Modules
  1690. part, as the Rx interface is not core Guile.
  1691. 2001-11-30 Neil Jerram <neil@ossau.uklinux.net>
  1692. * scheme-data.texi (String Miscellanea): Removed, moving doc for
  1693. string-ci->symbol into the node on Symbols.
  1694. * Makefile.am (ETAGS_ARGS): Added.
  1695. * scheme-data.texi (Symbol Tables): Removed doc for gentemp,
  1696. intern-symbol, string->obarray-symbol, symbol-binding,
  1697. symbol-bound?, symbol-set!, unintern-symbol, symbol-interned?; all
  1698. of which no longer exist.
  1699. 2001-11-25 Thien-Thi Nguyen <ttn@glug.org>
  1700. * posix.texi: Fix spelling. Thanks to Chris Cramer.
  1701. Reword `getpass' intro blurb.
  1702. 2001-11-23 Neil Jerram <neil@ossau.uklinux.net>
  1703. * program.texi (Program Control): Remove spurious placeholder
  1704. text.
  1705. 2001-11-20 Thien-Thi Nguyen <ttn@glug.org>
  1706. * scheme-options.texi (Install Config):
  1707. Tweak `%load-path' verb to not imply it's a proc.
  1708. Add documentation for `%guile-build-info'.
  1709. 2001-11-19 Neil Jerram <neil@ossau.uklinux.net>
  1710. * scheme-data.texi (Symbol Tables), new-docstrings.texi: Removed
  1711. doc for builtin-bindings (no longer exists).
  1712. (Variables): Expanded existing description of variables. Removed
  1713. doc for builtin-variable (no longer exists).
  1714. * scheme-binding.texi (Top Level): New docs for define, scm_define
  1715. and scm_c_define. Also clarified point about interchangeability
  1716. of define and set!.
  1717. 2001-11-18 Neil Jerram <neil@ossau.uklinux.net>
  1718. * scheme-data.texi (Vectors): Autoupdate docs for
  1719. vector-move-left! and vector-move-right!.
  1720. 2001-11-16 Neil Jerram <neil@ossau.uklinux.net>
  1721. * debugging.texi, deprecated.texi, intro.texi, misc-modules.texi,
  1722. new-docstrings.texi, posix.texi, scheme-binding.texi,
  1723. scheme-control.texi, scheme-data.texi, scheme-debug.texi,
  1724. scheme-evaluation.texi, scheme-io.texi, scheme-memory.texi,
  1725. scheme-modules.texi, scheme-options.texi, scheme-procedures.texi,
  1726. scheme-scheduling.texi, scheme-translation.texi,
  1727. scheme-utility.texi, script-getopt.texi, srfi-modules.texi: Change
  1728. category for "primitive" and "procedure" @deffn's to {Scheme
  1729. Procedure}; add @deffnx lines for {C Function}s; automatic updates
  1730. from libguile docstring changes.
  1731. * scheme-memory.texi (Garbage Collection): Removed doc for removed
  1732. `unhash-name'.
  1733. 2001-11-14 Thien-Thi Nguyen <ttn@glug.org>
  1734. * scheme-procedures.texi: Spell "library" correctly.
  1735. 2001-11-13 Neil Jerram <neil@ossau.uklinux.net>
  1736. * new-docstrings.texi, scheme-data.texi: Merge recent doc
  1737. improvements from stable branch.
  1738. * scheme-options.texi: Automatic updates from docstring changes in
  1739. libguile's C source code.
  1740. 2001-11-12 Neil Jerram <neil@ossau.uklinux.net>
  1741. * scheme-data.texi (Vtables, Structure Basics): Automatic doc
  1742. updates for struct? and struct-vtable?.
  1743. (String Searching): Add missing "for". Thanks to Scott Lenser.
  1744. 2001-11-08 Neil Jerram <neil@ossau.uklinux.net>
  1745. * guile.texi (Top): Added new chapter `Programming Options'.
  1746. * program.texi: New file.
  1747. * Makefile.am (guile_TEXINFOS): Added program.texi.
  1748. 2001-11-07 Neil Jerram <neil@ossau.uklinux.net>
  1749. * scheme-memory.texi, scheme-io.texi, scheme-debug.texi,
  1750. scheme-data.texi, scheme-binding.texi, posix.texi,
  1751. new-docstrings.texi: Automatic updates from improved libguile
  1752. docstrings.
  1753. 2001-11-04 Neil Jerram <neil@ossau.uklinux.net>
  1754. * preface.texi: Use MANUAL_EDITION variable.
  1755. (Manual Layout): Updated to reflect reorg.
  1756. * guile.texi (MANUAL_EDITION): New variable, with value
  1757. incremented from 1.0 to 1.1 to reflect the reorg described here.
  1758. (Top): Use MANUAL_EDITION variable.
  1759. * scheme-indices.texi (R5RS Index, Guile Extensions Index): Use
  1760. @unnumbered rather than @chapter for these indices.
  1761. * guile.texi (Top): A little top-level reshuffling, with the aims
  1762. that: (1) the `Guile Scheme' (reference) part of the manual
  1763. becomes the `Guile API Reference', and covers both Scheme and C
  1764. interfaces; (2) non-API-reference material such as the `Basic
  1765. Ideas in Scheme' chapter is collected together to form a new part
  1766. `Programming with Guile'. This new part will contain general
  1767. documentation on using and programming Guile in both Scheme and C,
  1768. including - for example - awareness of GC when C programming, how
  1769. to use the snarf macros, how to debug ...
  1770. (Top): Move inclusion of scheme-indices.texi so that all indices
  1771. appear together in the printed manual.
  1772. * Makefile.am (guile_TEXINFOS): Removed appendices.texi, added
  1773. debugging.texi.
  1774. * appendices.texi: Removed.
  1775. * debugging.texi (Debugger User Interface): New file, same as the
  1776. material that used to be in appendices.texi, but now a chapter in
  1777. Part II rather than an appendix.
  1778. * appendices.texi (Obtaining and Installing Guile): Moved to
  1779. become a chapter in ...
  1780. * intro.texi: ... Part I: Introduction to Guile.
  1781. * scm.texi (I/O Extensions): Moved to become a section of ...
  1782. * scheme-io.texi (Input and Output): ... this chapter.
  1783. * scm.texi (Handling Errors): Moved to become a section of ...
  1784. * scheme-control.texi (Control Mechanisms): ... this chapter.
  1785. 2001-11-06 Thien-Thi Nguyen <ttn@glug.org>
  1786. * srfi-modules.texi (SRFI-19, SRFI-19 Constants, SRFI-19 Current
  1787. time and clock resolution, SRFI-19 Time object and accessors,
  1788. SRFI-19 Time comparison procedures, SRFI-19 Time arithmetic
  1789. procedures, SRFI-19 Date object and accessors, SRFI-19
  1790. Time/Date/Julian Day/Modified Julian Day converters, SRFI-19 Date
  1791. to string/string to date converters): New nodes.
  1792. (SRFI Support): Add "SRFI-19" to menu.
  1793. 2001-11-06 Marius Vollmer <mvo@zagadka.ping.de>
  1794. * scripts.texi: Document `--debug' and `--no-debug'.
  1795. 2001-10-27 Gary Houston <ghouston@arglist.com>
  1796. * guile.texi, scsh.texi: removed obsolete guile-scsh material
  1797. and updated links (I don't know if it should remain in the
  1798. main menu. It's like slib I think.)
  1799. * minor updates to the slib installation notes.
  1800. 2001-10-05 Neil Jerram <neil@ossau.uklinux.net>
  1801. * scheme-evaluation.texi (Fly Evaluation): Removed documentation
  1802. for `read-and-eval!' and `eval2'. (Thanks to Alex Schroeder for
  1803. noticing that they'd disappeared!)
  1804. 2001-10-05 Thien-Thi Nguyen <ttn@glug.org>
  1805. * scheme-io.texi (Writing): Add entry for `display'.
  1806. Include in R5RS Index. Thanks to Alex Schroeder for suggestion.
  1807. 2001-09-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
  1808. * srfi-modules.texi (SRFI-13): Tyop fix.
  1809. (SRFI-13): Changed paragraph about bindings both in the code and
  1810. in SRFI-13.
  1811. * misc-modules.texi (Formatted Output): Tyop fix.
  1812. (Formatted Output): Document ~g properly.
  1813. Thanks to Alex Schroeder for pointing out the typos and sending
  1814. suggestions.
  1815. 2001-09-25 Thien-Thi Nguyen <ttn@glug.org>
  1816. * scheme-procedures.texi (Syntax Rules): Add `cindex' directive.
  1817. Thanks to suggestion by Alex Schroeder.
  1818. 2001-08-30 Neil Jerram <neil@ossau.uklinux.net>
  1819. * guile.texi (Top): Group all index nodes together so that
  1820. `Info-index' works more effectively in Info. Thanks to Eric
  1821. Hanchrow for the report and fix.
  1822. * scheme-data.texi (Random, String Syntax, String Modification,
  1823. Regular Expressions), scheme-ideas.texi (Definition),
  1824. scheme-modules.texi (Dynamic Linking and Compiled Code Modules),
  1825. scm.texi (Transforming Scheme name to C name, Port
  1826. Implementation): Various typo fixes and clarifications merged from
  1827. the stable CVS branch.
  1828. 2001-08-27 Neil Jerram <neil@ossau.uklinux.net>
  1829. * intro.texi: Merged wording fixes from stable CVS branch.
  1830. * Makefile.am (guile_TEXINFOS): Remove ../AUTHORS.
  1831. * guile.texi: Incorporate text previously in separate AUTHORS
  1832. file.
  1833. 2001-08-27 Neil Jerram <neil@ossau.uklinux.net>
  1834. The change log for files in this directory continues backwards
  1835. from 2001-08-27 in ../ChangeLog, as all the Guile documentation
  1836. prior to this date was contained in a single directory.
  1837. ;; Local Variables:
  1838. ;; coding: utf-8
  1839. ;; End: