Rewrite boot-9 map to be recursive and pure
[bpt/guile.git] / NEWS
CommitLineData
b2cbe8d8 1Guile NEWS --- history of user-visible changes.
b3f1bb5d 2Copyright (C) 1996-2014 Free Software Foundation, Inc.
5c54da76
JB
3See the end for copying conditions.
4
1e457544 5Please send Guile bug reports to bug-guile@gnu.org.
5ebbe4ef 6
66ad445d 7
b3f1bb5d
AW
8\f
9Changes in 2.1.1 (changes since the 2.0.x series):
10
11* Notable changes
12
13** Speed
14
15The biggest change in Guile 2.2 is a complete rewrite of its virtual
16machine and compiler internals. The result is faster startup time,
17better memory usage, and faster execution of user code. See the
18"Performance improvements" section below for more details.
19
20** Better thread-safety
21
22This new release series takes the ABI-break opportunity to fix some
23interfaces that were difficult to use correctly from multiple threads.
24Notably, weak hash tables are now transparently thread-safe. Ports are
25also thread-safe; see "New interfaces" below for details on the changes
26to the C interface.
27
28** Off-main-thread finalization
29
30Following Guile 2.0.6's change to invoke finalizers via asyncs, Guile
312.2 takes the additional step of invoking finalizers from a dedicated
32finalizer thread, if threads are enabled. This avoids concurrency
33issues between finalizers and application code, and also speeds up
34finalization.
35
36** Better locale support in Guile scripts
37
38When Guile is invoked directly, either from the command line or via a
39hash-bang line (e.g. "#!/usr/bin/guile"), it now installs the current
40locale via a call to `(setlocale LC_ALL "")'. For users with a unicode
41locale, this makes all ports unicode-capable by default, without the
42need to call `setlocale' in your program. This behavior may be
43controlled via the GUILE_INSTALL_LOCALE environment variable; see the
44manual for more.
45
46** Complete Emacs-compatible Elisp implementation
47
48Thanks to the work of BT Templeton, Guile's Elisp implementation is now
49fully Emacs-compatible, implementing all of Elisp's features and quirks
50in the same way as the editor we know and love.
51
52** Dynamically expandable stacks
53
54Instead of allocating fixed stack sizes for running Scheme code, Guile
c2379a5b
AW
55now starts off each thread with only one page of stack, and expands and
56shrinks it dynamically as needed. Guile will throw an exception for
57stack overflows if growing the stack fails. It is also possible to
58impose a stack limit during the extent of a function call. See "Stack
59Overflow" in the manual, for more.
b3f1bb5d 60
c2379a5b 61This change allows users to write programs that use the stack as a data
b3f1bb5d
AW
62structure for pending computations, as it was meant to be, without
63reifying that data out to the heap. Where you would previously make a
64loop that collect its results in reverse order only to re-reverse them
65at the end, now you can just recurse without worrying about stack
66overflows.
67
68* Performance improvements
69
70** Faster programs via new virtual machine
71
72Guile's new virtual machine compiles programs to instructions for a new
73virtual machine. The new virtual machine's instructions can address
74their source and destination operands by "name" (slot). This makes
75access to named temporary values much faster, and removes a lot of
76value-shuffling that the old virtual machine had to do. The end result
77is that loop-heavy code can be two or three times as fast with Guile 2.2
78as in 2.0. Your mileage may vary, of course; see "A Virtual Machine for
79Guile" in the manual for the nitties and the gritties.
80
81** Better startup time, memory usage with ELF object file format
82
83Guile now uses the standard ELF format for its compiled code. (Guile
84has its own loader and linker, so this does not imply a dependency on
85any particular platform's ELF toolchain.) The benefit is that Guile is
86now able to statically allocate more data in the object files. ELF also
87enables more sharing of data between processes, and decreases startup
88time (about 40% faster than the already fast startup of the Guile 2.0
89series). Guile also uses DWARF for some of its debugging information.
90Much of the debugging information can be stripped from the object files
91as well. See "Object File Format" in the manual, for full details.
92
93** Better optimizations via compiler rewrite
94
95Guile's compiler now uses a Continuation-Passing Style (CPS)
96intermediate language, allowing it to reason easily about temporary
97values and control flow. Examples of optimizations that this permits
98are optimal contification, dead code elimination, parallel moves with at
99most one temporary, and allocation of stack slots using precise liveness
100information. For more, see "Continuation-Passing Style" in the manual.
101
102** Faster interpreter
103
104Combined with a number of optimizations to the interpreter itself,
105simply compiling `eval.scm' with the new compiler yields an interpreter
106that is consistently two or three times faster than the one in Guile
1072.0.
108
109** Allocation-free dynamic stack
110
111Guile now implements the dynamic stack with an actual stack instead of a
112list of heap objects, avoiding most allocation. This speeds up prompts,
113the `scm_dynwind_*' family of functions, fluids, and `dynamic-wind'.
114
115** Optimized UTF-8 and Latin-1 ports, symbols, and strings
116
117Guile 2.2 is faster at reading and writing UTF-8 and Latin-1 strings
118from ports, and at converting symbols and strings to and from these
119encodings.
120
121** Optimized hash functions
122
123Guile 2.2 now uses Bob Jenkins' `hashword2' (from his `lookup3.c') for
124its string hash, and Thomas Wang's integer hash function for `hashq' and
125`hashv'. These functions produce much better hash values across all
126available fixnum bits.
127
128* New interfaces
129
130** New `cond-expand' feature: `guile-2.2'
131
132Use this feature if you need to check for Guile 2.2 from Scheme code.
133
134** New predicate: `nil?'
135
136See "Nil" in the manual.
137
138** New compiler modules
139
140Since the compiler was rewritten, there are new modules for the back-end
141of the compiler and the low-level loader and introspection interfaces.
142See the "Guile Implementation" chapter in the manual for all details.
143
144** New functions: `scm_to_intptr_t', `scm_from_intptr_t'
145** New functions: `scm_to_uintptr_t', `scm_from_uintptr_t'
146
c2379a5b 147See "Integers" in the manual, for more.
b3f1bb5d
AW
148
149** New thread-safe port API
150
151For details on `scm_c_make_port', `scm_c_make_port_with_encoding',
152`scm_c_lock_port', `scm_c_try_lock_port', `scm_c_unlock_port',
153`scm_c_port_type_ref', `scm_c_port_type_add_x', `SCM_PORT_DESCRIPTOR',
154and `scm_dynwind_lock_port', see XXX.
155
156There is now a routine to atomically adjust port "revealed counts". See
157XXX for more on `scm_adjust_port_revealed_x' and
158`adjust-port-revealed!',
159
160All other port API now takes the lock on the port if needed. There are
161some C interfaces if you know that you don't need to take a lock; see
162XXX for details on `scm_get_byte_or_eof_unlocked',
163`scm_peek_byte_or_eof_unlocked' `scm_c_read_unlocked',
164`scm_getc_unlocked' `scm_unget_byte_unlocked', `scm_ungetc_unlocked',
165`scm_ungets_unlocked', `scm_fill_input_unlocked' `scm_putc_unlocked',
166`scm_puts_unlocked', and `scm_lfwrite_unlocked'.
167
168** New inline functions: `scm_new_smob', `scm_new_double_smob'
169
170These can replace many uses of SCM_NEWSMOB, SCM_RETURN_NEWSMOB2, and the
171like. See XXX in the manual, for more.
172
173** New low-level type accessors
174
175For more on `SCM_HAS_TYP7', `SCM_HAS_TYP7S', `SCM_HAS_TYP16', see XXX.
176
177`SCM_HEAP_OBJECT_P' is now an alias for the inscrutable `SCM_NIMP'.
178
179`SCM_UNPACK_POINTER' and `SCM_PACK_POINTER' are better-named versions of
180the old `SCM2PTR' and `PTR2SCM'. Also, `SCM_UNPACK_POINTER' yields a
181void*.
182
183** `scm_c_weak_vector_ref', `scm_c_weak_vector_set_x'
184
185Weak vectors can now be accessed from C using these accessors.
186
187** <standard-vtable>, standard-vtable-fields
188
189See "Structures" in the manual for more on these
190
191** Convenience utilities for ports and strings.
192
193See XXX for more on `scm_from_port_string', `scm_from_port_stringn',
194`scm_to_port_string', and `scm_to_port_stringn'.
195
196** New expressive PEG parser
197
198See "PEG Parsing" in the manual for more. Thanks to Michael Lucy for
199originally writing these, and to Noah Lavine for integration work.
200
201* Incompatible changes
202
203** ASCII is not ISO-8859-1
204
205In Guile 2.0, if a user set "ASCII" or "ANSI_X3.4-1968" as the encoding
206of a port, Guile would treat it as ISO-8859-1. While these encodings
207are the same for codepoints 0 to 127, ASCII does not extend past that
208range, whereas ISO-8859-1 goes up to 255. Guile 2.2 no longer treats
209ASCII as ISO-8859-1. This is likely to be a problem only if the user's
210locale is set to ASCII, and the user or a program writes non-ASCII
211codepoints to a port.
212
213** String ports default to UTF-8
214
215Guile 2.0 would use the `%default-port-encoding' when creating string
216ports. This resulted in ports that could only accept a subset of valid
217characters, which was surprising to users. Now string ports default to
218the UTF-8 encoding. Sneaky users can still play encoding conversion
219games with string ports by explicitly setting the encoding of a port
220after it is open. See "Ports" in the manual for more.
221
222** `scm_from_stringn' and `scm_to_stringn' encoding arguments are never NULL
223
224These functions now require a valid `encoding' argument, and will abort
225if given `NULL'.
226
227** All r6rs ports are both textual and binary
228
229Because R6RS ports are a thin layer on top of Guile's ports, and Guile's
230ports are both textual and binary, Guile's R6RS ports are also both
231textual and binary, and thus both kinds have port transcoders. This is
232an incompatibility with respect to R6RS.
233
234** Vtable hierarchy changes
235
236In an attempt to make Guile's structure and record types integrate
237better with GOOPS by unifying the vtable hierarchy, `make-vtable-vtable'
238is now deprecated. Instead, users should just use `make-vtable' with
239appropriate arguments. See "Structures" in the manual for all of the
240details. As such, `record-type-vtable' and `%condition-type-vtable' now
241have a parent vtable and are no longer roots of the vtable hierarchy.
242
243** Syntax parameters are a distinct type
244
245Guile 2.0's transitional implementation of `syntax-parameterize' was
246based on the `fluid-let-syntax' interface inherited from the psyntax
247expander. This interface allowed any binding to be dynamically rebound
248-- even bindings like `lambda'. This is no longer the case in Guile
2492.2. Syntax parameters must be defined via `define-syntax-parameter',
250and only such bindings may be parameterized. See "Syntax Parameters" in
251the manual for more.
252
253** Defined identifiers scoped in the current module
254
255Sometimes Guile's expander would attach incorrect module scoping
256information for top-level bindings made by an expansion. For example,
257given the following R6RS library:
258
259 (library (defconst)
260 (export defconst)
261 (import (guile))
262 (define-syntax-rule (defconst name val)
263 (begin
264 (define t val)
265 (define-syntax-rule (name) t))))
266
267Attempting to use it would produce an error:
268
269 (import (defconst))
270 (defconst foo 42)
271 (foo)
272 =| Unbound variable: t
273
274It wasn't clear that we could fix this in Guile 2.0 without breaking
275someone's delicate macros, so the fix is only coming out now.
276
277** Pseudo-hygienically rename macro-introduced bindings
278
279Bindings introduced by macros, like `t' in the `defconst' example above,
280are now given pseudo-fresh names. This allows
281
282 (defconst foo 42)
283 (defconst bar 37)
284
285to introduce different bindings for `t'. These pseudo-fresh names are
286made in such a way that if the macro is expanded again, for example as
287part of a simple recompilation, the introduced identifiers get the same
288pseudo-fresh names. See "Hygiene and the Top-Level" in the manual, for
289details.
290
291** Fix literal matching for module-bound literals
292
293`syntax-rules' and `syntax-case' macros can take a set of "literals":
294bound or unbound keywords that the syntax matcher treats specially.
295Before, literals were always matched symbolically (by name). Now they
296are matched by binding. This allows literals to be reliably bound to
297values, renamed by imports or exports, et cetera. See "Syntax-rules
298Macros" in the manual for more on literals.
299
300** `dynamic-wind' doesn't check that guards are thunks
301
302Checking that the dynamic-wind out-guard procedure was actually a thunk
303before doing the wind was slow, unreliable, and not strictly needed.
304
305** All deprecated code removed
306
307All code deprecated in Guile 2.0 has been removed. See older NEWS, and
308check that your programs can compile without linker warnings and run
309without runtime warnings. See "Deprecation" in the manual.
310
311** Remove miscellaneous unused interfaces
312
313We have removed accidentally public, undocumented interfaces that we
314think are not used, and not useful. This includes `scm_markstream',
315`SCM_FLUSH_REGISTER_WINDOWS', `SCM_THREAD_SWITCHING_CODE', `SCM_FENCE',
316`scm_call_generic_0', `scm_call_generic_1', `scm_call_generic_2'
317`scm_call_generic_3', `scm_apply_generic', and `scm_program_source'.
318`scm_async_click' was renamed to `scm_async_tick', and `SCM_ASYNC_TICK'
319was made private (use `SCM_TICK' instead).
320
321** Many internal compiler / VM changes
322
323As the compiler and virtual machine were re-written, there are many
324changes in the back-end of Guile to interfaces that were introduced in
325Guile 2.0. These changes are only only of interest if you wrote a
326language on Guile 2.0 or a tool using Guile 2.0 internals. If this is
327the case, drop by the IRC channel to discuss the changes.
328
329** Defining a SMOB or port type no longer mucks exports of `(oop goops)'
330
331It used to be that defining a SMOB or port type added an export to
332GOOPS, for the wrapper class of the smob type. This violated
333modularity, though, so we have removed this behavior.
334
335** Bytecode replaces objcode as a target language
336
337One way in which people may have used details of Guile's runtime in
338Guile 2.0 is in compiling code to thunks for later invocation. Instead
339of compiling to objcode and then calling `make-program', now the way to
340do it is to compile to `bytecode' and then call `load-thunk-from-memory'
341from `(system vm loader)'.
342
343** Remove weak pairs.
344
345Weak pairs were not safe to access with `car' and `cdr', and so were
346removed.
347
348** Remove weak alist vectors.
349
350Use weak hash tables instead.
351
352* New deprecations
353
354** SCM_WTA_DISPATCH_0, SCM_WTA_DISPATCH_1, SCM_WTA_DISPATCH_2, SCM_WTA_DISPATCH_N
355** SCM_GASSERT0, SCM_GASSERT1, SCM_GASSERT2, SCM_GASSERTn
356** SCM_WTA_DISPATCH_1_SUBR
357
358These macros were used in dispatching primitive generics. They can be
359replaced by using C functions (the same name but in lower case), if
360needed, but this is a hairy part of Guile that perhaps you shouldn't be
361using.
362
363* Changes to the distribution
364
365** New minor version
366
367The "effective version" of Guile is now 2.2, which allows parallel
368installation with other effective versions (for example, the older Guile
3692.0). See "Parallel Installations" in the manual for full details.
370Notably, the `pkg-config' file is now `guile-2.2'.
371
372** Bump required libgc version to 7.2, released March 2012.
373
374** The readline extension is now installed in the extensionsdir
375
376The shared library that implements Guile's readline extension is no
377longer installed to the libdir. This change should be transparent to
378users, but packagers may be interested.
379
380
381\f
d4d11cf3
LC
382Changes in 2.0.11 (since 2.0.10):
383
384This release fixes an embarrassing regression introduced in the C
385interface to SRFI-4 vectors. See
386<https://lists.gnu.org/archive/html/guile-devel/2014-03/msg00047.html>
387for details.
388
389\f
cdf1ae89
MW
390Changes in 2.0.10 (since 2.0.9):
391
cdf1ae89
MW
392* Notable changes
393
394** New GDB extension to support Guile
395
c68b9470
LC
396Guile now comes with an extension for GDB 7.8 or later (unreleased at
397the time of writing) that simplifies debugging of C code that uses
398Guile. See "GDB Support" in the manual.
cdf1ae89
MW
399
400** Improved integration between R6RS and native Guile exceptions
401
402R6RS exception handlers, established using 'with-exception-handler' or
403'guard', are now able to catch native Guile exceptions, which are
404automatically converted into appropriate R6RS condition objects.
405
406** Support for HTTP proxies
407
408Guile's built-in web client now honors the 'http_proxy' environment
409variable, as well as the new 'current-http-proxy' parameter. See
410"Web Client" in the manual for details.
411
412** Lexical syntax improvements
413
414*** Support |...| symbol notation.
415
416Guile's core reader and printer now support the R7RS |...| notation
417for writing symbols with arbitrary characters, as a more portable and
418attractive alternative to Guile's native #{...}# notation. To enable
419this notation by default, put one or both of the following in your
420~/.guile:
421
422 (read-enable 'r7rs-symbols)
423 (print-enable 'r7rs-symbols)
424
425*** Support '#true' and '#false' notation for booleans.
426
427The booleans '#t' and '#f' may now be written as '#true' and '#false'
428for improved readability, per R7RS.
429
430*** Recognize '#\escape' character name.
431
432The escape character '#\esc' may now be written as '#\escape', per R7RS.
433
434*** Accept "\|" in string literals.
435
436The pipe character may now be preceded by a backslash, per R7RS.
437
438** Custom binary input ports now support 'setvbuf'.
439
c68b9470
LC
440Until now, ports returned by 'make-custom-binary-input-port' were always
441full-buffered. Now, their buffering mode can be changed using 'setvbuf'.
cdf1ae89
MW
442
443** SRFI-4 predicates and length accessors no longer accept arrays.
444
445Given that the SRFI-4 accessors don't work for arrays, the fact that the
446predicates and length accessors returned true for arrays was a bug.
447
448** GUILE_PROGS now supports specifying a minimum required version.
449
450The 'GUILE_PROGS' autoconf macro in guile.m4 now allows an optional
451argument to specify a minimum required Guile version. By default, it
452requires Guile >= 2.0. A micro version can also be specified, e.g.:
453GUILE_PROGS([2.0.10])
454
455** Error reporting improvements
456
457*** Improved run-time error reporting in (ice-9 match).
458
459If no pattern matches in a 'match' form, the datum that failed to match
460is printed along with the location of the failed 'match' invocation.
461
462*** Print the faulty object upon invalid-keyword errors.
463*** Improved error reporting of procedures defined by define-inlinable.
464*** Improved error reporting for misplaced ellipses in macro definitions.
465*** Improved error checking in 'define-public' and 'module-add!'.
466*** Improved error when 'include' form with relative path is not in a file.
467
468** Speed improvements
469
470*** 'scm_c_read' on ISO-8859-1 (e.g. binary) unbuffered ports is faster.
471*** New inline asm for VM fixnum multiply, for faster overflow checking.
472*** New inline asm for VM fixnum operations on ARM and 32-bit x86.
473*** 'positive?' and 'negative?' are now compiled to VM primitives.
474*** Numerical comparisons with more than 2 arguments are compiled to VM code.
475*** Several R6RS bitwise operators have been optimized.
476
6a450390 477** Miscellaneous
cdf1ae89
MW
478
479*** Web: 'content-disposition' headers are now supported.
480*** Web: 'uri-encode' hexadecimal percent-encoding is now uppercase.
481*** Size argument to 'make-doubly-weak-hash-table' is now optional.
482*** Timeout for 'unlock-mutex' and SRFI-18 'mutex-unlock!' may now be #f.
483
484** Gnulib update
485
486Guile's copy of Gnulib was updated to v0.1-92-g546ff82. The following
487modules were imported from Gnulib: copysign, fsync, isfinite, link,
488lstat, mkdir, mkstemp, readlink, rename, rmdir, and unistd.
489
cdf1ae89
MW
490* New interfaces
491
cdf1ae89
MW
492** Cooperative REPL servers
493
494This new facility supports REPLs that run at specified times within an
495existing thread, for example in programs utilizing an event loop or in
496single-threaded programs. This allows for safe access and mutation of
497a program's data structures from the REPL without concern for thread
498synchronization. See "Cooperative REPL Servers" in the manual for
499details.
500
501** SRFI-43 (Vector Library)
502
503Guile now includes SRFI-43, a comprehensive library of vector operations
504analogous to the SRFI-1 list library. See "SRFI-43" in the manual for
505details.
506
507** SRFI-64 (A Scheme API for test suites)
508
509Guile now includes SRFI-64, a flexible framework for creating test
510suites. The reference implementation of SRFI-64 has also been updated
511to fully support earlier versions of Guile.
512
513** SRFI-111 (Boxes)
514
515See "SRFI-111" in the manual.
516
517** 'define-values'
518
519See "Binding multiple return values" in the manual.
520
521** Custom ellipsis identifiers using 'with-ellipsis' or SRFI-46.
522
523Guile now allows macro definitions to use identifiers other than '...'
524as the ellipsis. This is convenient when writing macros that generate
679ffce8 525macro definitions. The desired ellipsis identifier can be given as the
f755f14e 526first operand to 'syntax-rules', as specified in SRFI-46 and R7RS, or by
679ffce8
MW
527using the new 'with-ellipsis' special form in procedural macros. With
528this addition, Guile now fully supports SRFI-46.
cdf1ae89
MW
529
530See "Specifying a Custom Ellipsis Identifier" and "Custom Ellipsis
531Identifiers for syntax-case Macros" in the manual for details.
532
533** R7RS 'syntax-error'
534
535Guile now supports 'syntax-error', as specified by R7RS, allowing for
536improved compile-time error reporting from 'syntax-rules' macros. See
537"Reporting Syntax Errors in Macros" in the manual for details.
538
539** New procedures to convert association lists into hash tables
540
541Guile now includes the convenience procedures 'alist->hash-table',
542'alist->hashq-table', 'alist->hashv-table', and 'alist->hashx-table'.
543See "Hash Table Reference" in the manual.
544
545** New predicates: 'exact-integer?' and 'scm_is_exact_integer'
546
547See "Integers" in the manual.
548
549** 'weak-vector-length', 'weak-vector-ref', and 'weak-vector-set!'
550
551These should now be used to access weak vectors, instead of
552'vector-length', 'vector-ref', and 'vector-set!'.
553
c68b9470
LC
554* Manual updates
555
556** Improve docs for 'eval-when'.
557
558Each 'eval-when' condition is now explained in detail, including
559'expand' which was previously undocumented. (expand load eval) is now
560the recommended set of conditions, instead of (compile load eval).
561See "Eval When" in the manual, for details.
562
563** Update the section on SMOBs and memory management.
564
565See "Defining New Types (Smobs)" in the manual.
566
567** Fixes
568
569*** GOOPS: #:dsupers is the init keyword for the dsupers slot.
570*** 'unfold-right' takes a tail, not a tail generator.
571*** Clarify that 'append!' and 'reverse!' might not mutate.
572*** Fix doc that incorrectly claimed (integer? +inf.0) => #t.
573 (http://bugs.gnu.org/16356)
574*** Document that we support SRFI-62 (S-expression comments).
575*** Document that we support SRFI-87 (=> in case clauses).
576*** Document 'equal?' in the list of R6RS incompatibilities.
577*** Remove outdated documentation of LTDL_LIBRARY_PATH.
578*** Fix 'weak-vector?' doc: Weak hash tables are not weak vectors.
579*** Fix 'my-or' examples to use let-bound variable.
580 (http://bugs.gnu.org/14203)
581
582* New deprecations
583
584** General 'uniform-vector' interface
585
586This interface lacked both generality and specificity. The general
587replacements are 'array-length', 'array-ref', and friends on the scheme
588side, and the array handle interface on the C side. On the specific
589side of things, there are the specific bytevector, SRFI-4, and bitvector
590interfaces.
591
592** Use of the vector interface on arrays
593** 'vector-length', 'vector-ref', and 'vector-set!' on weak vectors
594** 'vector-length', 'vector-ref', and 'vector-set!' as primitive-generics
595
596Making the vector interface operate only on a single representation will
597allow future versions of Guile to compile loops involving vectors to
598more efficient native code.
599
600** 'htons', 'htonl', 'ntohs', 'ntohl'
601
602These procedures, like their C counterpart, were used to convert numbers
603to/from network byte order, typically in conjunction with the
604now-deprecated uniform vector API.
605
606This functionality is now covered by the bytevector and binary I/O APIs.
607See "Interpreting Bytevector Contents as Integers" in the manual.
608
609** 'gc-live-object-stats'
610
611It hasn't worked in the whole 2.0 series. There is no replacement,
612unfortunately.
613
614** 'scm_c_program_source'
615
77326d36
AW
616This internal VM function was not meant to be public. Use
617'scm_procedure_source' instead.
c68b9470 618
cdf1ae89
MW
619* Build fixes
620
c68b9470 621** Fix build with Clang 3.4.
cdf1ae89
MW
622
623** MinGW build fixes
624*** Do not add $(EXEEXT) to guild or guile-tools.
625*** tests: Use double quotes around shell arguments, for Windows.
626*** tests: Don't rely on $TMPDIR and /tmp on Windows.
627*** tests: Skip FFI tests that use `qsort' when it's not accessible.
628*** tests: Remove symlink only when it exists.
629*** tests: Don't rely on `scm_call_2' being visible.
630
631** Fix computation of LIBLOBJS so dependencies work properly.
632 (http://bugs.gnu.org/14193)
633
cdf1ae89
MW
634* Bug fixes
635
636** Web: Fix web client with methods other than GET.
637 (http://bugs.gnu.org/15908)
638** Web: Add Content-Length header for empty bodies.
639** Web: Accept "UTC" as the zone offset in date headers.
640 (http://bugs.gnu.org/14128)
641** Web: Don't throw if a response is longer than its Content-Length says.
642** Web: Write out HTTP Basic auth headers correctly.
643 (http://bugs.gnu.org/14370)
644** Web: Always print a path component in 'write-request-line'.
645** Fix 'define-public' from (ice-9 curried-definitions).
646** psyntax: toplevel variable definitions discard previous syntactic binding.
647 (http://bugs.gnu.org/11988)
648** Fix thread-unsafe lazy initializations.
649** Make (ice-9 popen) thread-safe.
650 (http://bugs.gnu.org/15683)
651** Make guardians thread-safe.
652** Make regexp_exec thread-safe.
653 (http://bugs.gnu.org/14404)
654** vm: Gracefully handle stack overflows.
655 (http://bugs.gnu.org/15065)
656** Fix 'rationalize'.
657 (http://bugs.gnu.org/14905)
658** Fix inline asm for VM fixnum operations on x32.
659** Fix 'SCM_SYSCALL' to really swallow EINTR.
660** Hide EINTR returns from 'accept'.
661** SRFI-19: Update the table of leap seconds.
662** Add missing files to the test-suite Makefile.
663** Make sure 'ftw' allows directory traversal when running as root.
664** Fix 'hash-for-each' for weak hash tables.
665** SRFI-18: Export 'current-thread'.
666 (http://bugs.gnu.org/16890)
667** Fix inlining of tail list to apply.
668 (http://bugs.gnu.org/15533)
669** Fix bug in remqueue in threads.c when removing last element.
670** Fix build when '>>' on negative integers is not arithmetic.
671** Fix 'bitwise-bit-count' for negative arguments.
672 (http://bugs.gnu.org/14864)
673** Fix VM 'ash' for right shifts by large amounts.
674 (http://bugs.gnu.org/14864)
675** Fix rounding in scm_i_divide2double for negative arguments.
676** Avoid lossy conversion from inum to double in numerical comparisons.
677** Fix numerical comparison of fractions to infinities.
678** Allow fl+ and fl* to accept zero arguments.
679 (http://bugs.gnu.org/14869)
680** flonum? returns false for complex number objects.
681 (http://bugs.gnu.org/14866)
682** flfinite? applied to a NaN returns false.
683 (http://bugs.gnu.org/14868)
684** Flonum operations always return flonums.
685 (http://bugs.gnu.org/14871)
686** min and max: NaNs beat infinities, per R6RS errata.
687 (http://bugs.gnu.org/14865)
688** Fix 'fxbit-count' for negative arguments.
689** 'gcd' and 'lcm' support inexact integer arguments.
690 (http://bugs.gnu.org/14870)
691** Fix R6RS 'fixnum-width'.
692 (http://bugs.gnu.org/14879)
693** tests: Use shell constructs that /bin/sh on Solaris 10 can understand.
694 (http://bugs.gnu.org/14042)
695** Fix display of symbols containing backslashes.
696 (http://bugs.gnu.org/15033)
697** Fix truncated-print for uniform vectors.
698** Define `AF_UNIX' only when Unix-domain sockets are supported.
699** Decompiler: fix handling of empty 'case-lambda' expressions.
700** Fix handling of signed zeroes and infinities in 'numerator' and 'denominator'.
701** dereference-pointer: check for null pointer.
702** Optimizer: Numerical comparisons are not negatable, for correct NaN handling.
703** Compiler: Evaluate '-' and '/' in left-to-right order.
704 (for more robust floating-point arithmetic)
705** snarf.h: Declare static const function name vars as SCM_UNUSED.
706** chars.c: Remove duplicate 'const' specifiers.
707** Modify SCM_UNPACK type check to avoid warnings in clang.
708** Arrange so that 'file-encoding' does not truncate the encoding name.
709 (http://bugs.gnu.org/16463)
710** Improve error checking in bytevector->uint-list and bytevector->sint-list.
711 (http://bugs.gnu.org/15100)
712** Fix (ash -1 SCM_I_FIXNUM_BIT-1) to return a fixnum instead of a bignum.
713** i18n: Fix null pointer dereference when locale info is missing.
714** Fix 'string-copy!' to work properly with overlapping src/dest.
715** Fix hashing of vectors to run in bounded time.
716** 'port-position' works on CBIPs that do not support 'set-port-position!'.
717** Custom binary input ports sanity-check the return value of 'read!'.
718** bdw-gc.h: Check SCM_USE_PTHREAD_THREADS using #if not #ifdef.
719** REPL Server: Don't establish a SIGINT handler.
720** REPL Server: Redirect warnings to client socket.
721** REPL Server: Improve robustness of 'stop-server-and-clients!'.
722** Add srfi-16, srfi-30, srfi-46, srfi-62, srfi-87 to %cond-expand-features.
723** Fix trap handlers to handle applicable structs.
724 (http://bugs.gnu.org/15691)
725** Fix optional end argument in `uniform-vector-read!'.
726 (http://bugs.gnu.org/15370)
727** Fix brainfuck->scheme compiler.
c68b9470 728** texinfo: Fix newline preservation in @example with lines beginning with @
cdf1ae89
MW
729
730** C standards conformance improvements
731
c68b9470
LC
732Improvements and bug fixes were made to the C part of Guile's run-time
733support (libguile).
cdf1ae89
MW
734
735*** Don't use the identifier 'noreturn'.
736 (http://bugs.gnu.org/15798)
737*** Rewrite SCM_I_INUM to avoid unspecified behavior when not using GNU C.
738*** Improve fallback implemention of SCM_SRS to avoid unspecified behavior.
739*** SRFI-60: Reimplement 'rotate-bit-field' on inums to be more portable.
740*** Improve compliance with C standards regarding signed integer shifts.
741*** Avoid signed overflow in random.c.
742*** VM: Avoid signed overflows in 'add1' and 'sub1'.
743*** VM: Avoid overflow in ASM_ADD when the result is most-positive-fixnum.
744*** read: Avoid signed integer overflow in 'read_decimal_integer'.
745
746
747\f
cfeb9130
LC
748Changes in 2.0.9 (since 2.0.7):
749
750Note: 2.0.8 was a brown paper bag release that was never announced, but
751some mirrors may have picked it up. Please do not use it.
de2811cc 752
f361bb93 753* Notable changes
de2811cc 754
eed0d26c
MW
755** New keyword arguments for procedures that open files
756
14f2e470
AW
757The following procedures that open files now support keyword arguments
758to request binary I/O or to specify the character encoding for text
7f74dcb4
LC
759files: `open-file', `open-input-file', `open-output-file',
760`call-with-input-file', `call-with-output-file', `with-input-from-file',
761`with-output-to-file', and `with-error-to-file'.
eed0d26c
MW
762
763It is also now possible to specify whether Guile should scan files for
764Emacs-style coding declarations. This scan was done by default in
765versions 2.0.0 through 2.0.7, but now must be explicitly requested.
766
767See "File Ports" in the manual for details.
768
14f2e470 769** Rewritten guile.m4
de2811cc 770
f361bb93
AW
771The `guile.m4' autoconf macros have been rewritten to use `guild' and
772`pkg-config' instead of the deprecated `guile-config' (which itself
773calls pkg-config).
de2811cc 774
f361bb93
AW
775There is also a new macro, `GUILE_PKG', which allows packages to select
776the version of Guile that they want to compile against. See "Autoconf
777Macros" in the manual, for more information.
de2811cc 778
eed0d26c 779** Better Windows support
de2811cc 780
f361bb93
AW
781Guile now correctly identifies absolute paths on Windows (MinGW), and
782creates files on that platform according to its path conventions. See
14f2e470 783"File System" in the manual, for all details.
de2811cc 784
f361bb93
AW
785In addition, the new Gnulib imports provide `select' and `poll' on
786Windows builds.
de2811cc 787
f361bb93
AW
788As an incompatible change, systems that are missing <sys/select.h> were
789previously provided a public `scm_std_select' C function that defined a
790version of `select', but unhappily it also provided its own incompatible
14f2e470 791definitions for FD_SET, FD_ZERO, and other system interfaces. Guile
f361bb93
AW
792should not be setting these macros in public API, so this interface was
793removed on those plaforms (basically only MinGW).
de2811cc 794
eed0d26c 795** Numerics improvements
de2811cc 796
eed0d26c
MW
797`number->string' now reliably outputs enough digits to produce the same
798number when read back in. Previously, it mishandled subnormal numbers
799(printing them as "#.#"), and failed to distinguish between some
800distinct inexact numbers, e.g. 1.0 and (+ 1.0 (expt 2.0 -52)). These
801problems had far-reaching implications, since the compiler uses
802`number->string' to serialize numeric constants into .go files.
803
804`sqrt' now produces exact rational results when possible, and handles
805very large or very small numbers more robustly.
de2811cc 806
22c76fd8
MW
807A number (ahem) of operations involving exact rationals have been
808optimized, most notably `integer-expt' and `expt'.
eed0d26c 809
22c76fd8 810`exact->inexact' now performs correct IEEE rounding.
eed0d26c
MW
811
812** New optimizations
de2811cc 813
f361bb93 814There were a number of improvements to the partial evaluator, allowing
01b83dbd 815complete reduction of forms such as:
de2811cc 816
f361bb93 817 ((let ((_ 10)) (lambda () _)))
de2811cc 818
f361bb93 819 ((lambda _ _))
de2811cc 820
c608e1aa 821 (apply (lambda _ _) 1 2 3 '(4))
de2811cc 822
f361bb93 823 (call-with-values (lambda () (values 1 2)) (lambda _ _))
de2811cc 824
eed0d26c
MW
825`string-join' now handles huge lists efficiently.
826
14f2e470 827`get-bytevector-some' now uses buffered input, which is much faster.
de2811cc 828
a24cda1d
LC
829Finally, `array-ref', `array-set!' on arrays of rank 1 or 2 is now
830faster, because it avoids building a rest list. Similarly, the
831one-argument case of `array-for-each' and `array-map!' has been
832optimized, and `array-copy!' and `array-fill!' are faster.
de2811cc 833
7ca88a40
MW
834** `peek-char' no longer consumes EOF
835
836As required by the R5RS, if `peek-char' returns EOF, then the next read
837will also return EOF. Previously `peek-char' would consume the EOF.
838This makes a difference for terminal devices where it is possible to
839read past an EOF.
840
eed0d26c
MW
841** Gnulib update
842
843Guile's copy of Gnulib was updated to v0.0-7865-ga828bb2. The following
844modules were imported from Gnulib: select, times, pipe-posix, fstat,
845getlogin, poll, and c-strcase.
846
847** `include' resolves relative file names relative to including file
de2811cc 848
f361bb93
AW
849Given a relative file name, `include' will look for it relative to the
850directory of the including file. This harmonizes the behavior of
851`include' with that of `load'.
de2811cc 852
eed0d26c 853** SLIB compatibility restored
de2811cc 854
f361bb93
AW
855Guile 2.0.8 is now compatible with SLIB. You will have to use a
856development version of SLIB, however, until a new version of SLIB is
857released.
de2811cc 858
eed0d26c 859** Better ,trace REPL command
f361bb93
AW
860
861Sometimes the ,trace output for nested function calls could overflow the
862terminal width, which wasn't useful. Now there is a limit to the amount
863of space the prefix will take. See the documentation for ",trace" for
864more information.
de2811cc 865
eed0d26c
MW
866** Better docstring syntax supported for `case-lambda'
867
868Docstrings can now be placed immediately after the `case-lambda' or
869`case-lambda*' keyword. See "Case-lambda" in the manual.
870
eed0d26c
MW
871** Improved handling of Unicode byte order marks
872
873See "BOM Handling" in the manual for details.
874
875** Update predefined character sets to Unicode 6.2
de2811cc 876
465ff502
LC
877** GMP 4.2 or later required
878
879Guile used to require GMP at least version 4.1 (released in May 2002),
880and now requires at least version 4.2 (released in March 2006).
881
de2811cc
AW
882* Manual updates
883
eed0d26c 884** Better SXML documentation
de2811cc 885
f361bb93
AW
886The documentation for SXML modules was much improved, though there is
887still far to go. See "SXML" in manual.
de2811cc 888
eed0d26c 889** Style updates
de2811cc 890
f361bb93
AW
891Use of "iff" was replaced with standard English. Keyword arguments are
892now documented consistently, along with their default values.
de2811cc 893
eed0d26c 894** An end to the generated-documentation experiment
de2811cc 895
f361bb93
AW
896When Guile 2.0 imported some modules from Guile-Lib, they came with a
897system that generated documentation from docstrings and module
898commentaries. This produced terrible documentation. We finally bit the
899bullet and incorporated these modules into the main text, and will be
900improving them manually over time, as is the case with SXML. Help is
901appreciated.
de2811cc 902
eed0d26c 903** New documentation
de2811cc 904
f361bb93
AW
905There is now documentation for `scm_array_type', and `scm_array_ref', as
906well as for the new `array-length' / 'scm_c_array_length' /
907`scm_array_length' functions. `array-in-bounds?' has better
908documentation as well. The `program-arguments-alist' and
eed0d26c
MW
909`program-lambda-list' functions are now documented, as well as `and=>',
910`exit', and `quit'. The (system repl server) module is now documented
911(see REPL Servers). Finally, the GOOPS class hierarchy diagram has been
912regenerated for the web and print output formats.
de2811cc 913
f361bb93 914* New deprecations
de2811cc 915
eed0d26c 916** Deprecate generalized vector interface
de2811cc 917
f361bb93
AW
918The generalized vector interface, introduced in 1.8.0, is simply a
919redundant, verbose interface to arrays of rank 1. `array-ref' and
920similar functions are entirely sufficient. Thus,
921`scm_generalized_vector_p', `scm_generalized_vector_length',
922`scm_generalized_vector_ref', `scm_generalized_vector_set_x', and
923`scm_generalized_vector_to_list' are now deprecated.
de2811cc 924
eed0d26c 925** Deprecate SCM_CHAR_CODE_LIMIT and char-code-limit
de2811cc 926
f361bb93
AW
927These constants were defined to 256, which is not the highest codepoint
928supported by Guile. Given that they were useless and incorrect, they
929have been deprecated.
de2811cc 930
eed0d26c 931** Deprecate `http-get*'
de2811cc 932
f361bb93 933The new `#:streaming?' argument to `http-get' subsumes the functionality
ed4aa264
LC
934of `http-get*' (introduced in 2.0.7). Also, the `#:extra-headers'
935argument is deprecated in favor of `#:headers'.
de2811cc 936
eed0d26c 937** Deprecate (ice-9 mapping)
de2811cc 938
f361bb93
AW
939This module, present in Guile since 1996 but never used or documented,
940has never worked in Guile 2.0. It has now been deprecated and will be
941removed in Guile 2.2.
de2811cc 942
eed0d26c 943** Deprecate undocumented array-related C functions
a24cda1d
LC
944
945These are `scm_array_fill_int', `scm_ra_eqp', `scm_ra_lessp',
946`scm_ra_leqp', `scm_ra_grp', `scm_ra_greqp', `scm_ra_sum',
947`scm_ra_product', `scm_ra_difference', `scm_ra_divide', and
948`scm_array_identity'.
949
de2811cc
AW
950* New interfaces
951
eed0d26c 952** SRFI-41 Streams
de2811cc 953
eed0d26c 954See "SRFI-41" in the manual.
de2811cc 955
14f2e470
AW
956** SRFI-45 exports `promise?'
957
958SRFI-45 now exports a `promise?' procedure that works with its promises.
959Also, its promises now print more nicely.
960
eed0d26c 961** New HTTP client procedures
de2811cc 962
eed0d26c
MW
963See "Web Client" for documentation on the new `http-head', `http-post',
964`http-put', `http-delete', `http-trace', and `http-options' procedures,
965and also for more options to `http-get'.
de2811cc 966
eed0d26c 967** Much more capable `xml->sxml'
ed4aa264 968
eed0d26c
MW
969See "Reading and Writing XML" for information on how the `xml->sxml'
970parser deals with namespaces, processed entities, doctypes, and literal
971strings. Incidentally, `current-ssax-error-port' is now a parameter
972object.
ed4aa264 973
eed0d26c 974** New procedures for converting strings to and from bytevectors
de2811cc 975
eed0d26c
MW
976See "Representing Strings as Bytes" for documention on the new `(ice-9
977iconv)' module and its `bytevector->string' and `string->bytevector'
978procedures.
de2811cc 979
a24cda1d
LC
980** Escape continuations with `call/ec' and `let/ec'
981
982See "Prompt Primitives".
983
eed0d26c
MW
984** New procedures to read all characters from a port
985
986See "Line/Delimited" in the manual for documentation on `read-string'
987 and `read-string!'.
988
989** New procedure `sendfile'
990
991See "File System".
992
993** New procedure `unget-bytevector'
994
995See "R6RS Binary Input".
996
997** New C helper: `scm_c_bind_keyword_arguments'
998
999See "Keyword Procedures".
1000
1001** New command-line arguments: `--language' and `-C'
1002
1003See "Command-line Options" in the manual.
1004
1005** New environment variables: `GUILE_STACK_SIZE', `GUILE_INSTALL_LOCALE'
1006
1007See "Environment Variables".
1008
1009** New procedures for dealing with file names
1010
1011See "File System" for documentation on `system-file-name-convention',
1012`file-name-separator?', `absolute-file-name?', and
1013`file-name-separator-string'.
1014
1015** `array-length', an array's first dimension
de2811cc 1016
01b83dbd 1017See "Array Procedures".
de2811cc 1018
eed0d26c 1019** `hash-count', for hash tables
de2811cc 1020
01b83dbd 1021See "Hash Tables".
de2811cc 1022
eed0d26c
MW
1023** `round-ash', a bit-shifting operator that rounds on right-shift
1024
1025See "Bitwise Operations".
1026
1027** New foreign types: `ssize_t', `ptrdiff_t'
de2811cc 1028
01b83dbd 1029See "Foreign Types".
de2811cc 1030
eed0d26c 1031** New C helpers: `scm_from_ptrdiff_t', `scm_to_ptrdiff_t'
de2811cc 1032
01b83dbd 1033See "Integers".
de2811cc 1034
eed0d26c 1035** Socket option `SO_REUSEPORT' now available from Scheme
de2811cc 1036
eed0d26c
MW
1037If supported on the platform, `SO_REUSEPORT' is now available from
1038Scheme as well. See "Network Sockets and Communication".
de2811cc 1039
eed0d26c 1040** `current-language' in default environment
de2811cc 1041
01b83dbd
AW
1042Previously defined only in `(system base language)', `current-language'
1043is now defined in the default environment, and is used to determine the
1044language for the REPL, and for `compile-and-load'.
de2811cc 1045
01b83dbd 1046** New procedure: `fluid->parameter'
de2811cc 1047
01b83dbd
AW
1048See "Parameters", for information on how to convert a fluid to a
1049parameter.
de2811cc 1050
eed0d26c 1051** New `print' REPL option
de2811cc 1052
01b83dbd
AW
1053See "REPL Commands" in the manual for information on the new
1054user-customizable REPL printer.
de2811cc 1055
eed0d26c 1056** New variable: %site-ccache-dir
de2811cc 1057
01b83dbd
AW
1058The "Installing Site Packages" and "Build Config" manual sections now
1059refer to this variable to describe where users should install their
1060`.go' files.
de2811cc
AW
1061
1062* Build fixes
1063
f361bb93 1064** Fix compilation against libgc 7.3.
de2811cc 1065** Fix cross-compilation of `c-tokenize.o'.
f361bb93
AW
1066** Fix warning when compiling against glibc 2.17.
1067** Fix documentation build against Texinfo 5.0.
01b83dbd
AW
1068** Fix building Guile from a directory with non-ASCII characters.
1069** Fix native MinGW build.
1070** Fix --disable-posix build.
1071** Fix MinGW builds with networking, POSIX, and thread support.
de2811cc
AW
1072
1073* Bug fixes
1074
eed0d26c
MW
1075** Fix inexact number printer.
1076 (http://bugs.gnu.org/13757)
1077** Fix infinite loop when parsing optional-argument short options (SRFI-37).
ed4aa264 1078 (http://bugs.gnu.org/13176)
eed0d26c 1079** web: Support non-GMT date headers in the HTTP client.
ed4aa264 1080 (http://bugs.gnu.org/13544)
eed0d26c
MW
1081** web: support IP-literal (IPv6 address) in Host header.
1082** Avoid stack overflows with `par-map' and nested futures in general.
ed4aa264 1083 (http://bugs.gnu.org/13188)
eed0d26c
MW
1084** Peek-char no longer consumes EOF.
1085 (http://bugs.gnu.org/12216)
1086** Avoid swallowing multiple EOFs in R6RS binary-input procedures.
01b83dbd
AW
1087** A fork when multiple threads are running will now print a warning.
1088** Allow for spurious wakeups from pthread_cond_wait.
de2811cc 1089 (http://bugs.gnu.org/10641)
01b83dbd 1090** Warn and ignore module autoload failures.
de2811cc 1091 (http://bugs.gnu.org/12202)
01b83dbd
AW
1092** Use chmod portably in (system base compile).
1093 (http://bugs.gnu.org/10474)
c608e1aa 1094** Fix response-body-port for HTTP responses without content-length.
01b83dbd
AW
1095 (http://bugs.gnu.org/13857)
1096** Allow case-lambda expressions with no clauses.
1097 (http://bugs.gnu.org/9776)
de2811cc
AW
1098** Improve standards conformance of string->number.
1099 (http://bugs.gnu.org/11887)
01b83dbd
AW
1100** Support calls and tail-calls with more than 255 formals.
1101** ,option evaluates its right-hand-side.
de2811cc 1102 (http://bugs.gnu.org/13076)
01b83dbd 1103** Structs with tail arrays are not simple.
de2811cc
AW
1104 (http://bugs.gnu.org/12808)
1105** Make `SCM_LONG_BIT' usable in preprocessor conditionals.
1106 (http://bugs.gnu.org/13848)
1107** Fix thread-unsafe lazy initializations.
01b83dbd 1108** Allow SMOB mark procedures to be called from parallel markers.
de2811cc
AW
1109 (http://bugs.gnu.org/13611)
1110** Fix later-bindings-win logic in with-fluids.
1111 (http://bugs.gnu.org/13843)
1112** Fix duplicate removal of with-fluids.
1113 (http://bugs.gnu.org/13838)
1114** Support calling foreign functions of 10 arguments or more.
01b83dbd
AW
1115 (http://bugs.gnu.org/13809)
1116** Let reverse! accept arbitrary types as second argument.
1117 (http://bugs.gnu.org/13835)
de2811cc
AW
1118** Recognize the `x86_64.*-gnux32' triplet.
1119** Check whether a triplet's OS part specifies an ABI.
1120** Recognize mips64* as having 32-bit pointers by default.
eed0d26c
MW
1121** Use portable sed constructs.
1122 (http://bugs.gnu.org/14042)
01b83dbd
AW
1123** Remove language/glil/decompile-assembly.scm.
1124 (http://bugs.gnu.org/10622)
1125** Use O_BINARY in `copy-file', `load-objcode', `mkstemp'.
eed0d26c
MW
1126** Use byte-oriented functions in `get-bytevector*'.
1127** Fix abort when iconv swallows BOM from UTF-16 or UTF-32 stream.
01b83dbd 1128** Fix compilation of functions with more than 255 local variables.
de2811cc 1129** Fix `getgroups' for when zero supplementary group IDs exist.
01b83dbd
AW
1130** Allow (define-macro name (lambda ...)).
1131** Various fixes to the (texinfo) modules.
de2811cc 1132** guild: Gracefully handle failures to install the locale.
01b83dbd
AW
1133** Fix format string warnings for ~!, ~|, ~/, ~q, ~Q, and ~^.
1134 (http://bugs.gnu.org/13485)
de2811cc 1135** Fix source annotation bug in psyntax 'expand-body'.
01b83dbd 1136** Ecmascript: Fix conversion to boolean for non-numbers.
eed0d26c
MW
1137** Use case-insensitive comparisons for encoding names.
1138** Add missing cond-expand feature identifiers.
01b83dbd
AW
1139** A failure to find a module's file does not prevent future loading.
1140** Many (oop goops save) fixes.
1141** `http-get': don't shutdown write end of socket.
1142 (http://bugs.gnu.org/13095)
1143** Avoid signed integer overflow in scm_product.
c608e1aa 1144** http: read-response-body always returns bytevector or #f, never EOF.
de2811cc 1145** web: Correctly detect "No route to host" conditions.
eed0d26c 1146** `system*': failure to execvp no longer leaks dangling processes.
de2811cc 1147 (http://bugs.gnu.org/13166)
eed0d26c 1148** More sensible case-lambda* dispatch.
01b83dbd 1149 (http://bugs.gnu.org/12929)
de2811cc
AW
1150** Do not defer expansion of internal define-syntax forms.
1151 (http://bugs.gnu.org/13509)
1152
1153
1154\f
13fac282
LC
1155Changes in 2.0.7 (since 2.0.6):
1156
1157* Notable changes
1158
1159** SRFI-105 curly infix expressions are supported
1160
1161Curly infix expressions as described at
1162http://srfi.schemers.org/srfi-105/srfi-105.html are now supported by
1163Guile's reader. This allows users to write things like {a * {b + c}}
1164instead of (* a (+ b c)). SRFI-105 support is enabled by using the
1165`#!curly-infix' directive in source code, or the `curly-infix' reader
1166option. See the manual for details.
1167
1168** Reader options may now be per-port
1169
1170Historically, `read-options' and related procedures would manipulate
1171global options, affecting the `read' procedure for all threads, and all
1172current uses of `read'.
1173
1174Guile can now associate `read' options with specific ports, allowing
1175different ports to use different options. For instance, the
1176`#!fold-case' and `#!no-fold-case' reader directives have been
1177implemented, and their effect is to modify the current read options of
1178the current port only; similarly for `#!curly-infix'. Thus, it is
1179possible, for instance, to have one port reading case-sensitive code,
1180while another port reads case-insensitive code.
1181
1182** Futures may now be nested
1183
1184Futures may now be nested: a future can itself spawn and then `touch'
1185other futures. In addition, any thread that touches a future that has
1186not completed now processes other futures while waiting for the touched
1187future to completed. This allows all threads to be kept busy, and was
1188made possible by the use of delimited continuations (see the manual for
1189details.)
1190
2813d725
MW
1191Consequently, `par-map' and `par-for-each' have been rewritten and can
1192now use all cores.
13fac282 1193
3919585f
MW
1194** `GUILE_LOAD_PATH' et al can now add directories to the end of the path
1195
1196`GUILE_LOAD_PATH' and `GUILE_LOAD_COMPILED_PATH' can now be used to add
1197directories to both ends of the load path. If the special path
1198component `...' (ellipsis) is present in these environment variables,
1199then the default path is put in place of the ellipsis, otherwise the
1200default path is placed at the end. See "Environment Variables" in the
1201manual for details.
1202
13fac282
LC
1203** `load-in-vicinity' search for `.go' files in `%load-compiled-path'
1204
1205Previously, `load-in-vicinity' would look for compiled files in the
1206auto-compilation cache, but not in `%load-compiled-path'. This is now
1207fixed. This affects `load', and the `-l' command-line flag. See
1208<http://bugs.gnu.org/12519> for details.
1209
1210** Extension search order fixed, and LD_LIBRARY_PATH preserved
1211
1212Up to 2.0.6, Guile would modify the `LD_LIBRARY_PATH' environment
1213variable (or whichever is relevant for the host OS) to insert its own
1214default extension directories in the search path (using GNU libltdl
1215facilities was not possible here.) This approach was problematic in two
1216ways.
1217
1218First, the `LD_LIBRARY_PATH' modification would be visible to
1219sub-processes, and would also affect future calls to `dlopen', which
1220could lead to subtle bugs in the application or sub-processes. Second,
a94e7d85
MW
1221when the installation prefix is /usr, the `LD_LIBRARY_PATH' modification
1222would typically end up inserting /usr/lib before /usr/local/lib in the
1223search path, which is often the opposite of system-wide settings such as
1224`ld.so.conf'.
13fac282
LC
1225
1226Both issues have now been fixed.
1227
1228** `make-vtable-vtable' is now deprecated
1229
1230Programs should instead use `make-vtable' and `<standard-vtable>'.
1231
1232** The `-Wduplicate-case-datum' and `-Wbad-case-datum' are enabled
1233
1234These recently introduced warnings have been documented and are now
1235enabled by default when auto-compiling.
1236
a94e7d85 1237** Optimize calls to `equal?' or `eqv?' with a constant argument
13fac282 1238
a94e7d85
MW
1239The compiler simplifies calls to `equal?' or `eqv?' with a constant
1240argument to use `eq?' instead, when applicable.
13fac282
LC
1241
1242* Manual updates
1243
1244** SRFI-9 records now documented under "Compound Data Types"
1245
1246The documentation of SRFI-9 record types has been moved in the "Compound
1247Data Types", next to Guile's other record APIs. A new section
1248introduces the various record APIs, and describes the trade-offs they
1249make. These changes were made in an attempt to better guide users
1250through the maze of records API, and to recommend SRFI-9 as the main
1251API.
1252
1253The documentation of Guile's raw `struct' API has also been improved.
1254
1255** (ice-9 and-let-star) and (ice-9 curried-definitions) now documented
1256
1257These modules were missing from the manual.
1258
1259* New interfaces
1260
1261** New "functional record setters" as a GNU extension of SRFI-9
1262
1263The (srfi srfi-9 gnu) module now provides three new macros to deal with
1264"updates" of immutable records: `define-immutable-record-type',
1265`set-field', and `set-fields'.
1266
1267The first one allows record type "functional setters" to be defined;
1268such setters keep the record unchanged, and instead return a new record
1269with only one different field. The remaining macros provide the same
1270functionality, and also optimize updates of multiple or nested fields.
1271See the manual for details.
1272
1273** web: New `http-get*', `response-body-port', and `text-content-type?'
1274 procedures
1275
1276These procedures return a port from which to read the response's body.
1277Unlike `http-get' and `read-response-body', they allow the body to be
1278processed incrementally instead of being stored entirely in memory.
1279
1280The `text-content-type?' predicate allows users to determine whether the
1281content type of a response is textual.
1282
1283See the manual for details.
1284
1285** `string-split' accepts character sets and predicates
1286
1287The `string-split' procedure can now be given a SRFI-14 character set or
1288a predicate, instead of just a character.
1289
3b539098 1290** R6RS SRFI support
13fac282 1291
3b539098
LC
1292Previously, in R6RS modules, Guile incorrectly ignored components of
1293SRFI module names after the SRFI number, making it impossible to specify
1294sub-libraries. This release corrects this, bringing us into accordance
1295with SRFI 97.
13fac282
LC
1296
1297** `define-public' is no a longer curried definition by default
1298
1299The (ice-9 curried-definitions) should be used for such uses. See the
1300manual for details.
1301
1302* Build fixes
1303
1304** Remove reference to `scm_init_popen' when `fork' is unavailable
1305
1306This fixes a MinGW build issue (http://bugs.gnu.org/12477).
1307
1308** Fix race between installing `guild' and the `guile-tools' symlink
1309
1310* Bug fixes
1311
1312** Procedures returned by `eval' now have docstrings
1313 (http://bugs.gnu.org/12173)
1314** web client: correctly handle uri-query, etc. in relative URI headers
1315 (http://bugs.gnu.org/12827)
1316** Fix docs for R6RS `hashtable-copy'
1317** R6RS `string-for-each' now accepts multiple string arguments
1318** Fix out-of-range error in the compiler's CSE pass
1319 (http://bugs.gnu.org/12883)
1320** Add missing R6RS `open-file-input/output-port' procedure
1321** Futures: Avoid creating the worker pool more than once
1322** Fix invalid assertion about mutex ownership in threads.c
1323 (http://bugs.gnu.org/12719)
1324** Have `SCM_NUM2FLOAT' and `SCM_NUM2DOUBLE' use `scm_to_double'
1325** The `scandir' procedure now uses `lstat' instead of `stat'
1326** Fix `generalized-vector->list' indexing bug with shared arrays
1327 (http://bugs.gnu.org/12465)
1328** web: Change `http-get' to try all the addresses for the given URI
1329** Implement `hash' for structs
1330 (http://lists.gnu.org/archive/html/guile-devel/2012-10/msg00031.html)
1331** `read' now adds source properties for data types beyond pairs
1332** Improve error reporting in `append!'
1333** In fold-matches, set regexp/notbol unless matching string start
1334** Don't stat(2) and access(2) the .go location before using it
1335** SRFI-19: use zero padding for hours in ISO 8601 format, not blanks
1336** web: Fix uri-encoding for strings with no unreserved chars, and octets 0-15
1337** More robust texinfo alias handling
1338** Optimize `format' and `simple-format'
1339 (http://bugs.gnu.org/12033)
1340** Angle of -0.0 is pi, not zero
1341
1342\f
d2e35793
AW
1343Changes in 2.0.6 (since 2.0.5):
1344
1345* Notable changes
1346
1347** New optimization pass: common subexpression elimination (CSE)
1348
1349Guile's optimizer will now run a CSE pass after partial evaluation.
1350This pass propagates static information about branches taken, bound
1351lexicals, and effects from an expression's dominators. It can replace
1352common subexpressions with their boolean values (potentially enabling
1353dead code elimination), equivalent bound lexicals, or it can elide them
1354entirely, depending on the context in which they are executed. This
1355pass is especially useful in removing duplicate type checks, such as
d7a33b64 1356those produced by SRFI-9 record accessors.
d2e35793
AW
1357
1358** Improvements to the partial evaluator
1359
1360Peval can now hoist tests that are common to both branches of a
1361conditional into the test. This can help with long chains of
1362conditionals, such as those generated by the `match' macro. Peval can
1363now do simple beta-reductions of procedures with rest arguments. It
1364also avoids residualizing degenerate lexical aliases, even when full
1365inlining is not possible. Finally, peval now uses the effects analysis
1366introduced for the CSE pass. More precise effects analysis allows peval
1367to move more code.
1368
1369** Run finalizers asynchronously in asyncs
1370
1371Finalizers are now run asynchronously, via an async. See Asyncs in the
1372manual. This allows Guile and user code to safely allocate memory while
1373holding a mutex.
1374
1375** Update SRFI-14 character sets to Unicode 6.1
1376
1377Note that this update causes the Latin-1 characters `§' and `¶' to be
1378reclassified as punctuation. They were previously considered to be part
1379of `char-set:symbol'.
1380
1381** Better source information for datums
1382
1383When the `positions' reader option is on, as it is by default, Guile's
1384reader will record source information for more kinds of datums.
1385
1386** Improved error and warning messages
1387
d7a33b64
LC
1388`syntax-violation' errors now prefer `subform' for source info, with
1389`form' as fallback. Syntactic errors in `cond' and `case' now produce
d2e35793
AW
1390better errors. `case' can now warn on duplicate datums, or datums that
1391cannot be usefully compared with `eqv?'. `-Warity-mismatch' now handles
1392applicable structs. `-Wformat' is more robust in the presence of
1393`gettext'. Finally, various exceptions thrown by the Web modules now
1394define appropriate exception printers.
1395
1396** A few important bug fixes in the HTTP modules.
1397
1398Guile's web server framework now checks if an application returns a body
d7a33b64 1399where it is not permitted, for example in response to a HEAD request,
d2e35793
AW
1400and warn or truncate the response as appropriate. Bad requests now
1401cause a 400 Bad Request response to be printed before closing the port.
1402Finally, some date-printing and URL-parsing bugs were fixed.
1403
1404** Pretty-print improvements
1405
1406When Guile needs to pretty-print Tree-IL, it will try to reconstruct
1407`cond', `or`, and other derived syntax forms from the primitive tree-IL
1408forms. It also uses the original names instead of the fresh unique
1409names, when it is unambiguous to do so. This can be seen in the output
1410of REPL commands like `,optimize'.
1411
1412Also, the `pretty-print' procedure has a new keyword argument,
1413`#:max-expr-width'.
1414
1415** Fix memory leak involving applicable SMOBs
1416
1417At some point in the 1.9.x series, Guile began leaking any applicable
1418SMOB that was actually applied. (There was a weak-key map from SMOB to
1419trampoline functions, where the value had a strong reference on the
1420key.) This has been fixed. There was much rejoicing!
1421
32299e49
AW
1422** Support for HTTP/1.1 chunked transfer coding
1423
1424See "Transfer Codings" in the manual, for more.
1425
d2e35793
AW
1426** Micro-optimizations
1427
1428A pile of micro-optimizations: the `string-trim' function when called
1429with `char-set:whitespace'; the `(web http)' parsers; SMOB application;
1430conversion of raw UTF-8 and UTF-32 data to and from SCM strings; vlists
1431and vhashes; `read' when processing string literals.
1432
1433** Incompatible change to `scandir'
1434
1435As was the original intention, `scandir' now runs the `select?'
1436procedure on all items, including subdirectories and the `.' and `..'
1437entries. It receives the basename of the file in question instead of
1438the full name. We apologize for this incompatible change to this
1439function introduced in the 2.0.4 release.
1440
1441* Manual updates
1442
1443The manual has been made much more consistent in its naming conventions
1444with regards to formal parameters of functions. Thanks to Bake Timmons.
1445
1446* New interfaces
1447
1448** New C function: `scm_to_pointer'
32299e49 1449** New C inline functions: `scm_new_smob', `scm_new_double_smob'
d2e35793
AW
1450** (ice-9 format): Add ~h specifier for localized number output.
1451** (web response): New procedure: `response-must-not-include-body?'
1452** New predicate: 'supports-source-properties?'
8898f43c 1453** New C helpers: `scm_c_values', `scm_c_nvalues'
d2e35793
AW
1454** Newly public inline C function: `scm_unget_byte'
1455** (language tree-il): New functions: `tree-il=?', `tree-il-hash'
1456** New fluid: `%default-port-conversion-strategy'
1457** New syntax: `=>' within `case'
32299e49
AW
1458** (web http): `make-chunked-input-port', `make-chunked-output-port'
1459** (web http): `declare-opaque-header!'
d2e35793
AW
1460
1461Search the manual for these identifiers, for more information.
1462
1463* New deprecations
1464
1465** `close-io-port' deprecated
1466
1467Use `close-port'.
1468
1469** `scm_sym2var' deprecated
1470
1471In most cases, replace with `scm_lookup' or `scm_module_variable'. Use
1472`scm_define' or `scm_module_ensure_local_variable' if the second
1473argument is nonzero. See "Accessing Modules from C" in the manual, for
1474full details.
1475
1476** Lookup closures deprecated
1477
1478These were never documented. See "Module System Reflection" in the
1479manual for replacements.
1480
1481* Build fixes
1482
1483** Fix compilation against uninstalled Guile on non-GNU platforms.
1484** Fix `SCM_I_ERROR' definition for MinGW without networking.
1485** Fix compilation with the Sun C compiler.
1486** Fix check for `clock_gettime' on OpenBSD and some other systems.
1487** Fix build with --enable-debug-malloc.
1488** Honor $(program_transform_name) for the `guile-tools' symlink.
1489** Fix cross-compilation of GOOPS-using code.
1490
1491* Bug fixes
1492
1493** Fix use of unitialized stat buffer in search-path of absolute paths.
1494** Avoid calling `freelocale' with a NULL argument.
1495** Work around erroneous tr_TR locale in Darwin 8 in tests.
1496** Fix `getaddrinfo' test for Darwin 8.
1497** Use Gnulib's `regex' module for better regex portability.
1498** `source-properties' and friends work on any object
1499** Rewrite open-process in C, for robustness related to threads and fork
1500** Fix <TAG>vector-length when applied to other uniform vector types
1501** Fix escape-only prompt optimization (was disabled previously)
1502** Fix a segfault when /dev/urandom is not accessible
1503** Fix flush on soft ports, so that it actually runs.
1504** Better compatibility of SRFI-9 records with core records
1505** Fix and clarify documentation of `sorted?'.
1506** Fix IEEE-754 endianness conversion in bytevectors.
1507** Correct thunk check in the `wind' instruction.
1508** Add @acronym support to texinfo modules
1509** Fix docbook->texi for <ulink> without URL
1510** Fix `setvbuf' to leave the line/column number unchanged.
1511** Add missing public declaration for `scm_take_from_input_buffers'.
1512** Fix relative file name canonicalization with empty %LOAD-PATH entries.
1513** Import newer (ice-9 match) from Chibi-Scheme.
1514** Fix unbound variables and unbound values in ECMAScript runtime.
1515** Make SRFI-6 string ports Unicode-capable.
1516
1517\f
f7cf5898
LC
1518Changes in 2.0.5 (since 2.0.4):
1519
1520This release fixes the binary interface information (SONAME) of
1521libguile, which was incorrect in 2.0.4. It does not contain other
1522changes.
1523
1524\f
f43622a2
AW
1525Changes in 2.0.4 (since 2.0.3):
1526
f41ef416 1527* Notable changes
f43622a2 1528
f41ef416 1529** Better debuggability for interpreted procedures.
f43622a2
AW
1530
1531Guile 2.0 came with a great debugging experience for compiled
1532procedures, but the story for interpreted procedures was terrible. Now,
486bd70d
AW
1533at least, interpreted procedures have names, and the `arity' procedure
1534property is always correct (or, as correct as it can be, in the presence
1535of `case-lambda').
f43622a2
AW
1536
1537** Support for cross-compilation.
1538
1539One can now use a native Guile to cross-compile `.go' files for a
1540different architecture. See the documentation for `--target' in the
486bd70d
AW
1541"Compilation" section of the manual, for information on how to use the
1542cross-compiler. See the "Cross building Guile" section of the README,
1543for more on how to cross-compile Guile itself.
f43622a2 1544
d4b5c773
AW
1545** The return of `local-eval'.
1546
1547Back by popular demand, `the-environment' and `local-eval' allow the
1548user to capture a lexical environment, and then evaluate arbitrary
1549expressions in that context. There is also a new `local-compile'
1550command. See "Local Evaluation" in the manual, for more. Special
1551thanks to Mark Weaver for an initial implementation of this feature.
1552
f43622a2
AW
1553** Fluids can now have default values.
1554
1555Fluids are used for dynamic and thread-local binding. They have always
1556inherited their values from the context or thread that created them.
1557However, there was a case in which a new thread would enter Guile, and
1558the default values of all the fluids would be `#f' for that thread.
1559
1560This has now been fixed so that `make-fluid' has an optional default
486bd70d 1561value for fluids in unrelated dynamic roots, which defaults to `#f'.
f43622a2
AW
1562
1563** Garbage collector tuning.
1564
1565The garbage collector has now been tuned to run more often under some
1566circumstances.
1567
1568*** Unmanaged allocation
1569
1570The new `scm_gc_register_allocation' function will notify the collector
1571of unmanaged allocation. This will cause the collector to run sooner.
1572Guile's `scm_malloc', `scm_calloc', and `scm_realloc' unmanaged
1573allocators eventually call this function. This leads to better
1574performance under steady-state unmanaged allocation.
1575
1576*** Transient allocation
1577
1578When the collector runs, it will try to record the total memory
1579footprint of a process, if the platform supports this information. If
1580the memory footprint is growing, the collector will run more frequently.
1581This reduces the increase of the resident size of a process in response
1582to a transient increase in allocation.
1583
1584*** Management of threads, bignums
1585
1586Creating a thread will allocate a fair amount of memory. Guile now does
1587some GC work (using `GC_collect_a_little') when allocating a thread.
1588This leads to a better memory footprint when creating many short-lived
1589threads.
1590
1591Similarly, bignums can occupy a lot of memory. Guile now offers hooks
1592to enable custom GMP allocators that end up calling
486bd70d 1593`scm_gc_register_allocation'. These allocators are enabled by default
f43622a2
AW
1594when running Guile from the command-line. To enable them in libraries,
1595set the `scm_install_gmp_memory_functions' variable to a nonzero value
1596before loading Guile.
1597
f43622a2
AW
1598** SRFI-39 parameters are available by default.
1599
f41ef416
AW
1600Guile now includes support for parameters, as defined by SRFI-39, in the
1601default environment. See "Parameters" in the manual, for more
1602information. `current-input-port', `current-output-port', and
1603`current-error-port' are now parameters.
f43622a2 1604
d4b5c773 1605** Add `current-warning-port'.
f43622a2 1606
f41ef416
AW
1607Guile now outputs warnings on a separate port, `current-warning-port',
1608initialized to the value that `current-error-port' has on startup.
f43622a2 1609
f41ef416 1610** Syntax parameters.
f43622a2 1611
f41ef416
AW
1612Following Racket's lead, Guile now supports syntax parameters. See
1613"Syntax parameters" in the manual, for more.
f43622a2 1614
f41ef416
AW
1615Also see Barzilay, Culpepper, and Flatt's 2011 SFP workshop paper,
1616"Keeping it Clean with syntax-parameterize".
f43622a2 1617
f41ef416 1618** Parse command-line arguments from the locale encoding.
f43622a2 1619
f41ef416
AW
1620Guile now attempts to parse command-line arguments using the user's
1621locale. However for backwards compatibility with other 2.0.x releases,
1622it does so without actually calling `setlocale'. Please report any bugs
1623in this facility to bug-guile@gnu.org.
f43622a2 1624
d4b5c773
AW
1625** One-armed conditionals: `when' and `unless'
1626
1627Guile finally has `when' and `unless' in the default environment. Use
1628them whenever you would use an `if' with only one branch. See
1629"Conditionals" in the manual, for more.
1630
1631** `current-filename', `add-to-load-path'
1632
1633There is a new form, `(current-filename)', which expands out to the
1634source file in which it occurs. Combined with the new
1635`add-to-load-path', this allows simple scripts to easily add nearby
1636directories to the load path. See "Load Paths" in the manual, for more.
1637
1638** `random-state-from-platform'
1639
1640This procedure initializes a random seed using good random sources
1641available on your platform, such as /dev/urandom. See "Random Number
1642Generation" in the manual, for more.
1643
7cb11224
LC
1644** Warn about unsupported `simple-format' options.
1645
1646The `-Wformat' compilation option now reports unsupported format options
1647passed to `simple-format'.
1648
241247e8
AW
1649** Manual updates
1650
1651Besides the sections already mentioned, the following manual sections
1652are new in this release: "Modules and the File System", "Module System
1653Reflection", "Syntax Transformer Helpers", and "Local Inclusion".
1654
f41ef416
AW
1655* New interfaces
1656
1657** (ice-9 session): `apropos-hook'
1658** New print option: `escape-newlines', defaults to #t.
1659** (ice-9 ftw): `file-system-fold', `file-system-tree', `scandir'
d4b5c773 1660** `scm_c_value_ref': access to multiple returned values from C
07c2ca0f 1661** scm_call (a varargs version), scm_call_7, scm_call_8, scm_call_9
d4b5c773
AW
1662** Some new syntax helpers in (system syntax)
1663
1664Search the manual for these identifiers and modules, for more.
1665
1666* Build fixes
1667
1668** FreeBSD build fixes.
1669** OpenBSD compilation fixes.
1670** Solaris 2.10 test suite fixes.
1671** IA64 compilation fix.
1672** MinGW build fixes.
1673** Work around instruction reordering on SPARC and HPPA in the VM.
1674** Gnulib updates: added `dirfd', `setenv' modules.
f43622a2 1675
f43622a2
AW
1676* Bug fixes
1677
d4b5c773
AW
1678** Add a deprecated alias for $expt.
1679** Add an exception printer for `getaddrinfo-error'.
1680** Add deprecated shim for `scm_display_error' with stack as first argument.
1681** Add warnings for unsupported `simple-format' options.
1682** Allow overlapping regions to be passed to `bytevector-copy!'.
d4b5c773
AW
1683** Better function prologue disassembly
1684** Compiler: fix miscompilation of (values foo ...) in some contexts.
1685** Compiler: fix serialization of #nil-terminated lists.
1686** Compiler: allow values bound in non-tail let expressions to be collected.
1687** Deprecate SCM_ASRTGO.
1688** Document invalidity of (begin) as expression; add back-compat shim.
1689** Don't leak file descriptors when mmaping objcode.
1690** Empty substrings no longer reference the original stringbuf.
1691** FFI: Fix `set-pointer-finalizer!' to leave the type cell unchanged.
f43622a2 1692** FFI: Hold a weak reference to the CIF made by `procedure->pointer'.
f41ef416
AW
1693** FFI: Hold a weak reference to the procedure passed to `procedure->pointer'.
1694** FFI: Properly unpack small integer return values in closure call.
d4b5c773 1695** Fix R6RS `fold-left' so the accumulator is the first argument.
d4b5c773
AW
1696** Fix bit-set*! bug from 2005.
1697** Fix bug in `make-repl' when `lang' is actually a <language>.
1698** Fix bugs related to mutation, the null string, and shared substrings.
1699** Fix <dynwind> serialization.
1700** Fix erroneous check in `set-procedure-properties!'.
1701** Fix generalized-vector-{ref,set!} for slices.
40e92f09 1702** Fix error messages involving definition forms.
adb8054c 1703** Fix primitive-eval to return #<unspecified> for definitions.
f41ef416 1704** HTTP: Extend handling of "Cache-Control" header.
f43622a2 1705** HTTP: Fix qstring writing of cache-extension values
d4b5c773 1706** HTTP: Fix validators for various list-style headers.
f41ef416 1707** HTTP: Permit non-date values for Expires header.
d4b5c773
AW
1708** HTTP: `write-request-line' writes absolute paths, not absolute URIs.
1709** Hack the port-column of current-output-port after printing a prompt.
d4b5c773
AW
1710** Make sure `regexp-quote' tests use Unicode-capable string ports.
1711** Peval: Fix bugs in the new optimizer.
d4b5c773
AW
1712** Statistically unique marks and labels, for robust hygiene across sessions.
1713** Web: Allow URIs with empty authorities, like "file:///etc/hosts".
1714** `,language' at REPL sets the current-language fluid.
1715** `primitive-load' returns the value(s) of the last expression.
f41ef416 1716** `scm_from_stringn' always returns unique strings.
f41ef416 1717** `scm_i_substring_copy' tries to narrow the substring.
d4b5c773 1718** i18n: Fix gc_malloc/free mismatch on non-GNU systems.
f43622a2 1719
7cb11224 1720\f
02f91898
AW
1721Changes in 2.0.3 (since 2.0.2):
1722
1723* Speed improvements
1724
1725** Guile has a new optimizer, `peval'.
1726
1727`Peval' is a partial evaluator that performs constant folding, dead code
1728elimination, copy propagation, and inlining. By default it runs on
1729every piece of code that Guile compiles, to fold computations that can
1730happen at compile-time, so they don't have to happen at runtime.
1731
1732If we did our job right, the only impact you would see would be your
1733programs getting faster. But if you notice slowdowns or bloated code,
1734please send a mail to bug-guile@gnu.org with details.
1735
1736Thanks to William R. Cook, Oscar Waddell, and Kent Dybvig for inspiring
1737peval and its implementation.
1738
1739You can see what peval does on a given piece of code by running the new
1740`,optimize' REPL meta-command, and comparing it to the output of
1741`,expand'. See "Compile Commands" in the manual, for more.
1742
1743** Fewer calls to `stat'.
1744
1745Guile now stats only the .go file and the .scm file when loading a fresh
1746compiled file.
1747
1748* Notable changes
1749
1750** New module: `(web client)', a simple synchronous web client.
1751
1752See "Web Client" in the manual, for more.
1753
1754** Users can now install compiled `.go' files.
1755
1756See "Installing Site Packages" in the manual.
1757
1758** Remove Front-Cover and Back-Cover text from the manual.
1759
1760The manual is still under the GNU Free Documentation License, but no
1761longer has any invariant sections.
1762
1763** More helpful `guild help'.
1764
1765`guild' is Guile's multi-tool, for use in shell scripting. Now it has a
1766nicer interface for querying the set of existing commands, and getting
1767help on those commands. Try it out and see!
1768
1769** New macro: `define-syntax-rule'
1770
1771`define-syntax-rule' is a shorthand to make a `syntax-rules' macro with
1772one clause. See "Syntax Rules" in the manual, for more.
1773
1774** The `,time' REPL meta-command now has more precision.
1775
1776The output of this command now has microsecond precision, instead of
177710-millisecond precision.
1778
1779** `(ice-9 match)' can now match records.
1780
1781See "Pattern Matching" in the manual, for more on matching records.
1782
1783** New module: `(language tree-il debug)'.
1784
1785This module provides a tree-il verifier. This is useful for people that
1786generate tree-il, usually as part of a language compiler.
1787
1788** New functions: `scm_is_exact', `scm_is_inexact'.
1789
1790These provide a nice C interface for Scheme's `exact?' and `inexact?',
1791respectively.
1792
1793* Bugs fixed
1794
1795See the git log (or the ChangeLog) for more details on these bugs.
1796
1797** Fix order of importing modules and resolving duplicates handlers.
1798** Fix a number of bugs involving extended (merged) generics.
1799** Fix invocation of merge-generics duplicate handler.
1800** Fix write beyond array end in arrays.c.
1801** Fix read beyond end of hashtable size array in hashtab.c.
1802** (web http): Locale-independent parsing and serialization of dates.
1803** Ensure presence of Host header in HTTP/1.1 requests.
1804** Fix take-right and drop-right for improper lists.
1805** Fix leak in get_current_locale().
1806** Fix recursive define-inlinable expansions.
1807** Check that srfi-1 procedure arguments are procedures.
1808** Fix r6rs `map' for multiple returns.
1809** Fix scm_tmpfile leak on POSIX platforms.
1810** Fix a couple of leaks (objcode->bytecode, make-boot-program).
1811** Fix guile-lib back-compatibility for module-stexi-documentation.
1812** Fix --listen option to allow other ports.
1813** Fix scm_to_latin1_stringn for substrings.
1814** Fix compilation of untyped arrays of rank not 1.
1815** Fix unparse-tree-il of <dynset>.
1816** Fix reading of #||||#.
2be3feb1
LC
1817** Fix segfault in GOOPS when class fields are redefined.
1818** Prefer poll(2) over select(2) to allow file descriptors above FD_SETSIZE.
02f91898
AW
1819
1820\f
e4a2807e
AW
1821Changes in 2.0.2 (since 2.0.1):
1822
1823* Notable changes
1824
2dd49486
AW
1825** `guile-tools' renamed to `guild'
1826
1827The new name is shorter. Its intended future use is for a CPAN-like
1828system for Guile wizards and journeyfolk to band together to share code;
1829hence the name. `guile-tools' is provided as a backward-compatible
1830symbolic link. See "Using Guile Tools" in the manual, for more.
1831
e4a2807e
AW
1832** New control operators: `shift' and `reset'
1833
1834See "Shift and Reset" in the manual, for more information.
1835
1836** `while' as an expression
1837
1838Previously the return value of `while' was unspecified. Now its
1839values are specified both in the case of normal termination, and via
1840termination by invoking `break', possibly with arguments. See "while
1841do" in the manual for more.
1842
1843** Disallow access to handles of weak hash tables
1844
1845`hash-get-handle' and `hash-create-handle!' are no longer permitted to
1846be called on weak hash tables, because the fields in a weak handle could
1847be nulled out by the garbage collector at any time, but yet they are
1848otherwise indistinguishable from pairs. Use `hash-ref' and `hash-set!'
1849instead.
1850
1851** More precision for `get-internal-run-time', `get-internal-real-time'
1852
1853On 64-bit systems which support POSIX clocks, Guile's internal timing
1854procedures offer nanosecond resolution instead of the 10-millisecond
1855resolution previously available. 32-bit systems now use 1-millisecond
1856timers.
1857
1858** Guile now measures time spent in GC
1859
1860`gc-stats' now returns a meaningful value for `gc-time-taken'.
1861
1862** Add `gcprof'
1863
1864The statprof profiler now exports a `gcprof' procedure, driven by the
1865`after-gc-hook', to see which parts of your program are causing GC. Let
1866us know if you find it useful.
1867
1868** `map', `for-each' and some others now implemented in Scheme
1869
1870We would not mention this in NEWS, as it is not a user-visible change,
1871if it were not for one thing: `map' and `for-each' are no longer
1872primitive generics. Instead they are normal bindings, which can be
1873wrapped by normal generics. This fixes some modularity issues between
1874core `map', SRFI-1 `map', and GOOPS.
1875
1876Also it's pretty cool that we can do this without a performance impact.
1877
1878** Add `scm_peek_byte_or_eof'.
1879
1880This helper is like `scm_peek_char_or_eof', but for bytes instead of
1881full characters.
1882
1883** Implement #:stop-at-first-non-option option for getopt-long
1884
1885See "getopt-long Reference" in the manual, for more information.
1886
1887** Improve R6RS conformance for conditions in the I/O libraries
1888
1889The `(rnrs io simple)' module now raises the correct R6RS conditions in
1890error cases. `(rnrs io ports)' is also more correct now, though it is
1891still a work in progress.
1892
1893** All deprecated routines emit warnings
1894
1895A few deprecated routines were lacking deprecation warnings. This has
1896been fixed now.
1897
1898* Speed improvements
1899
1900** Constants in compiled code now share state better
1901
1902Constants with shared state, like `("foo")' and `"foo"', now share state
1903as much as possible, in the entire compilation unit. This cuts compiled
1904`.go' file sizes in half, generally, and speeds startup.
1905
1906** VLists: optimize `vlist-fold-right', and add `vhash-fold-right'
1907
1908These procedures are now twice as fast as they were.
1909
1910** UTF-8 ports to bypass `iconv' entirely
1911
1912This reduces memory usage in a very common case.
1913
1914** Compiler speedups
1915
1916The compiler is now about 40% faster. (Note that this is only the case
1917once the compiler is itself compiled, so the build still takes as long
1918as it did before.)
1919
1920** VM speed tuning
1921
1922Some assertions that were mostly useful for sanity-checks on the
1923bytecode compiler are now off for both "regular" and "debug" engines.
1924This together with a fix to cache a TLS access and some other tweaks
1925improve the VM's performance by about 20%.
1926
1927** SRFI-1 list-set optimizations
1928
1929lset-adjoin and lset-union now have fast paths for eq? sets.
1930
1931** `memq', `memv' optimizations
1932
1933These procedures are now at least twice as fast than in 2.0.1.
1934
1935* Deprecations
1936
1937** Deprecate scm_whash API
1938
1939`scm_whash_get_handle', `SCM_WHASHFOUNDP', `SCM_WHASHREF',
1940`SCM_WHASHSET', `scm_whash_create_handle', `scm_whash_lookup', and
1941`scm_whash_insert' are now deprecated. Use the normal hash table API
1942instead.
1943
1944** Deprecate scm_struct_table
1945
1946`SCM_STRUCT_TABLE_NAME', `SCM_SET_STRUCT_TABLE_NAME',
1947`SCM_STRUCT_TABLE_CLASS', `SCM_SET_STRUCT_TABLE_CLASS',
1948`scm_struct_table', and `scm_struct_create_handle' are now deprecated.
1949These routines formed part of the internals of the map between structs
1950and classes.
1951
1952** Deprecate scm_internal_dynamic_wind
1953
1954The `scm_t_inner' type and `scm_internal_dynamic_wind' are deprecated,
1955as the `scm_dynwind' API is better, and this API encourages users to
1956stuff SCM values into pointers.
1957
1958** Deprecate scm_immutable_cell, scm_immutable_double_cell
1959
1960These routines are deprecated, as the GC_STUBBORN API doesn't do
1961anything any more.
1962
1963* Manual updates
1964
1965Andreas Rottman kindly transcribed the missing parts of the `(rnrs io
1966ports)' documentation from the R6RS documentation. Thanks Andreas!
1967
1968* Bugs fixed
1969
1970** Fix double-loading of script in -ds case
1971** -x error message fix
1972** iconveh-related cross-compilation fixes
1973** Fix small integer return value packing on big endian machines.
1974** Fix hash-set! in weak-value table from non-immediate to immediate
1975** Fix call-with-input-file & relatives for multiple values
1976** Fix `hash' for inf and nan
1977** Fix libguile internal type errors caught by typing-strictness==2
f39779b1
LC
1978** Fix compile error in MinGW fstat socket detection
1979** Fix generation of auto-compiled file names on MinGW
e4a2807e
AW
1980** Fix multithreaded access to internal hash tables
1981** Emit a 1-based line number in error messages
1982** Fix define-module ordering
7505c6e0 1983** Fix several POSIX functions to use the locale encoding
f39779b1
LC
1984** Add type and range checks to the complex generalized vector accessors
1985** Fix unaligned accesses for bytevectors of complex numbers
1986** Fix '(a #{.} b)
1987** Fix erroneous VM stack overflow for canceled threads
e4a2807e
AW
1988
1989\f
882c8963
MW
1990Changes in 2.0.1 (since 2.0.0):
1991
7c81eba2 1992* Notable changes
9d6a151f 1993
7c81eba2 1994** guile.m4 supports linking with rpath
9d6a151f 1995
7c81eba2
AW
1996The GUILE_FLAGS macro now sets GUILE_LIBS and GUILE_LTLIBS, which
1997include appropriate directives to the linker to include libguile-2.0.so
1998in the runtime library lookup path.
9d6a151f 1999
7c81eba2 2000** `begin' expands macros in its body before other expressions
9d6a151f 2001
7c81eba2 2002This enables support for programs like the following:
9d6a151f 2003
7c81eba2
AW
2004 (begin
2005 (define even?
2006 (lambda (x)
2007 (or (= x 0) (odd? (- x 1)))))
2008 (define-syntax odd?
2009 (syntax-rules ()
2010 ((odd? x) (not (even? x)))))
2011 (even? 10))
9d6a151f 2012
7c81eba2 2013** REPL reader usability enhancements
9d6a151f 2014
7c81eba2
AW
2015The REPL now flushes input after a read error, which should prevent one
2016error from causing other errors. The REPL also now interprets comments
2017as whitespace.
9d6a151f 2018
7c81eba2 2019** REPL output has configurable width
9d6a151f 2020
7c81eba2
AW
2021The REPL now defaults to output with the current terminal's width, in
2022columns. See "Debug Commands" in the manual for more information on
2023the ,width command.
9d6a151f 2024
7c81eba2 2025** Better C access to the module system
9d6a151f 2026
7c81eba2
AW
2027Guile now has convenient C accessors to look up variables or values in
2028modules and their public interfaces. See `scm_c_public_ref' and friends
2029in "Accessing Modules from C" in the manual.
9d6a151f 2030
7c81eba2 2031** Added `scm_call_5', `scm_call_6'
9d6a151f 2032
7c81eba2 2033See "Fly Evaluation" in the manual.
9d6a151f 2034
7c81eba2 2035** Added `scm_from_latin1_keyword', `scm_from_utf8_keyword'
9d6a151f 2036
7c81eba2
AW
2037See "Keyword Procedures" in the manual, for more. Note that
2038`scm_from_locale_keyword' should not be used when the name is a C string
2039constant.
9d6a151f 2040
7c81eba2 2041** R6RS unicode and string I/O work
9d6a151f 2042
7c81eba2
AW
2043Added efficient implementations of `get-string-n' and `get-string-n!'
2044for binary ports. Exported `current-input-port', `current-output-port'
2045and `current-error-port' from `(rnrs io ports)', and enhanced support
2046for transcoders.
9d6a151f 2047
7c81eba2 2048** Added `pointer->scm', `scm->pointer' to `(system foreign)'
9d6a151f 2049
7c81eba2
AW
2050These procedure are useful if one needs to pass and receive SCM values
2051to and from foreign functions. See "Foreign Variables" in the manual,
2052for more.
9d6a151f 2053
7c81eba2 2054** Added `heap-allocated-since-gc' to `(gc-stats)'
9d6a151f 2055
7c81eba2 2056Also fixed the long-standing bug in the REPL `,stat' command.
9d6a151f 2057
7c81eba2 2058** Add `on-error' REPL option
9d6a151f 2059
7c81eba2
AW
2060This option controls what happens when an error occurs at the REPL, and
2061defaults to `debug', indicating that Guile should enter the debugger.
2062Other values include `report', which will simply print a backtrace
2063without entering the debugger. See "System Commands" in the manual.
9d6a151f 2064
7c81eba2 2065** Enforce immutability of string literals
9d6a151f 2066
7c81eba2 2067Attempting to mutate a string literal now causes a runtime error.
9d6a151f 2068
7c81eba2 2069** Fix pthread redirection
9d6a151f 2070
7c81eba2
AW
2071Guile 2.0.0 shipped with headers that, if configured with pthread
2072support, would re-define `pthread_create', `pthread_join', and other API
2073to redirect to the BDW-GC wrappers, `GC_pthread_create', etc. This was
2074unintended, and not necessary: because threads must enter Guile with
2e6829d2 2075`scm_with_guile', Guile can handle thread registration itself, without
7c81eba2
AW
2076needing to make the GC aware of all threads. This oversight has been
2077fixed.
9d6a151f 2078
7c81eba2 2079** `with-continuation-barrier' now unwinds on `quit'
9d6a151f 2080
7c81eba2
AW
2081A throw to `quit' in a continuation barrier will cause Guile to exit.
2082Before, it would do so before unwinding to the barrier, which would
2083prevent cleanup handlers from running. This has been fixed so that it
2084exits only after unwinding.
9d6a151f 2085
7c81eba2 2086** `string->pointer' and `pointer->string' have optional encoding arg
9d6a151f 2087
7c81eba2
AW
2088This allows users of the FFI to more easily deal in strings with
2089particular (non-locale) encodings, like "utf-8". See "Void Pointers and
2090Byte Access" in the manual, for more.
9d6a151f 2091
7c81eba2 2092** R6RS fixnum arithmetic optimizations
9d6a151f 2093
7c81eba2
AW
2094R6RS fixnum operations are are still slower than generic arithmetic,
2095however.
9d6a151f 2096
7c81eba2 2097** New procedure: `define-inlinable'
9d6a151f 2098
7c81eba2 2099See "Inlinable Procedures" in the manual, for more.
9d6a151f 2100
7c81eba2 2101** New procedure: `exact-integer-sqrt'
9d6a151f 2102
7c81eba2 2103See "Integer Operations" in the manual, for more.
9d6a151f 2104
7c81eba2 2105** "Extended read syntax" for symbols parses better
9d6a151f 2106
7c81eba2
AW
2107In #{foo}# symbols, backslashes are now treated as escapes, as the
2108symbol-printing code intended. Additionally, "\x" within #{foo}# is now
2109interpreted as starting an R6RS hex escape. This is backward compatible
2110because the symbol printer would never produce a "\x" before. The
2111printer also works better too.
9d6a151f 2112
6b480ced 2113** Added `--fresh-auto-compile' option
1e56cff2
AW
2114
2115This allows a user to invalidate the auto-compilation cache. It's
2116usually not needed. See "Compilation" in the manual, for a discussion.
2117
7c81eba2 2118* Manual updates
9d6a151f 2119
7c81eba2 2120** GOOPS documentation updates
9d6a151f 2121
7c81eba2 2122** New man page
9d6a151f 2123
7c81eba2 2124Thanks to Mark Harig for improvements to guile.1.
9d6a151f 2125
7c81eba2 2126** SRFI-23 documented
9d6a151f 2127
7c81eba2 2128The humble `error' SRFI now has an entry in the manual.
9d6a151f 2129
7c81eba2 2130* New modules
9d6a151f 2131
de424d95 2132** `(ice-9 binary-ports)': "R6RS I/O Ports", in the manual
7c81eba2 2133** `(ice-9 eval-string)': "Fly Evaluation", in the manual
2e6829d2 2134** `(ice-9 command-line)', not documented yet
9d6a151f 2135
882c8963
MW
2136* Bugs fixed
2137
2e6829d2 2138** Fixed `iconv_t' memory leak on close-port
7c81eba2
AW
2139** Fixed some leaks with weak hash tables
2140** Export `vhash-delq' and `vhash-delv' from `(ice-9 vlist)'
2141** `after-gc-hook' works again
2142** `define-record-type' now allowed in nested contexts
2143** `exact-integer-sqrt' now handles large integers correctly
2144** Fixed C extension examples in manual
2145** `vhash-delete' honors HASH argument
2146** Make `locale-digit-grouping' more robust
2147** Default exception printer robustness fixes
2148** Fix presence of non-I CPPFLAGS in `guile-2.0.pc'
2149** `read' updates line/column numbers when reading SCSH block comments
2150** Fix imports of multiple custom interfaces of same module
2151** Fix encoding scanning for non-seekable ports
2152** Fix `setter' when called with a non-setter generic
2153** Fix f32 and f64 bytevectors to not accept rationals
2154** Fix description of the R6RS `finite?' in manual
2155** Quotient, remainder and modulo accept inexact integers again
2156** Fix `continue' within `while' to take zero arguments
2157** Fix alignment for structures in FFI
2158** Fix port-filename of stdin, stdout, stderr to match the docs
2159** Fix weak hash table-related bug in `define-wrapped-pointer-type'
2160** Fix partial continuation application with pending procedure calls
2161** scm_{to,from}_locale_string use current locale, not current ports
2162** Fix thread cleanup, by using a pthread_key destructor
2163** Fix `quit' at the REPL
2164** Fix a failure to sync regs in vm bytevector ops
2165** Fix (texinfo reflection) to handle nested structures like syntax patterns
2166** Fix stexi->html double translation
2167** Fix tree-il->scheme fix for <prompt>
2168** Fix compilation of <prompt> in <fix> in single-value context
2169** Fix race condition in ensure-writable-dir
2170** Fix error message on ,disassemble "non-procedure"
2171** Fix prompt and abort with the boot evaluator
2172** Fix `procedure->pointer' for functions returning `void'
2173** Fix error reporting in dynamic-pointer
2174** Fix problems detecting coding: in block comments
2175** Fix duplicate load-path and load-compiled-path in compilation environment
2176** Add fallback read(2) suppport for .go files if mmap(2) unavailable
2177** Fix c32vector-set!, c64vector-set!
2178** Fix mistakenly deprecated read syntax for uniform complex vectors
2179** Fix parsing of exact numbers with negative exponents
2180** Ignore SIGPIPE in (system repl server)
2181** Fix optional second arg to R6RS log function
2182** Fix R6RS `assert' to return true value.
2183** Fix fencepost error when seeking in bytevector input ports
2e6829d2
LC
2184** Gracefully handle `setlocale' errors when starting the REPL
2185** Improve support of the `--disable-posix' configure option
2186** Make sure R6RS binary ports pass `binary-port?' regardless of the locale
2187** Gracefully handle unterminated UTF-8 sequences instead of hitting an `assert'
882c8963 2188
882c8963
MW
2189
2190\f
d9f46472 2191Changes in 2.0.0 (changes since the 1.8.x series):
96b73e84
AW
2192
2193* New modules (see the manual for details)
2194
2195** `(srfi srfi-18)', more sophisticated multithreading support
ef6b0e8d 2196** `(srfi srfi-27)', sources of random bits
7cd99cba 2197** `(srfi srfi-38)', External Representation for Data With Shared Structure
ef6b0e8d
AW
2198** `(srfi srfi-42)', eager comprehensions
2199** `(srfi srfi-45)', primitives for expressing iterative lazy algorithms
2200** `(srfi srfi-67)', compare procedures
96b73e84 2201** `(ice-9 i18n)', internationalization support
7cd99cba 2202** `(ice-9 futures)', fine-grain parallelism
0f13fcde 2203** `(rnrs bytevectors)', the R6RS bytevector API
93617170 2204** `(rnrs io ports)', a subset of the R6RS I/O port API
96b73e84 2205** `(system xref)', a cross-referencing facility (FIXME undocumented)
dbd9532e 2206** `(ice-9 vlist)', lists with constant-time random access; hash lists
fb53c347 2207** `(system foreign)', foreign function interface
18e90860
AW
2208** `(sxml match)', a pattern matcher for SXML
2209** `(srfi srfi-9 gnu)', extensions to the SRFI-9 record library
2210** `(system vm coverage)', a line-by-line code coverage library
7cd99cba
AW
2211** `(web uri)', URI data type, parser, and unparser
2212** `(web http)', HTTP header parsers and unparsers
2213** `(web request)', HTTP request data type, reader, and writer
2214** `(web response)', HTTP response data type, reader, and writer
2215** `(web server)', Generic HTTP server
2216** `(ice-9 poll)', a poll wrapper
2217** `(web server http)', HTTP-over-TCP web server implementation
66ad445d 2218
51cb0cca
AW
2219** Replaced `(ice-9 match)' with Alex Shinn's compatible, hygienic matcher.
2220
2221Guile's copy of Andrew K. Wright's `match' library has been replaced by
2222a compatible hygienic implementation by Alex Shinn. It is now
2223documented, see "Pattern Matching" in the manual.
2224
2225Compared to Andrew K. Wright's `match', the new `match' lacks
2226`match-define', `match:error-control', `match:set-error-control',
2227`match:error', `match:set-error', and all structure-related procedures.
2228
cf8ec359
AW
2229** Imported statprof, SSAX, and texinfo modules from Guile-Lib
2230
2231The statprof statistical profiler, the SSAX XML toolkit, and the texinfo
2232toolkit from Guile-Lib have been imported into Guile proper. See
2233"Standard Library" in the manual for more details.
2234
139fa149
AW
2235** Integration of lalr-scm, a parser generator
2236
2237Guile has included Dominique Boucher's fine `lalr-scm' parser generator
2238as `(system base lalr)'. See "LALR(1) Parsing" in the manual, for more
2239information.
2240
96b73e84
AW
2241* Changes to the stand-alone interpreter
2242
2243** Guile now can compile Scheme to bytecode for a custom virtual machine.
2244
2245Compiled code loads much faster than Scheme source code, and runs around
22463 or 4 times as fast, generating much less garbage in the process.
fa1804e9 2247
29b98fb2 2248** Evaluating Scheme code does not use the C stack.
fa1804e9 2249
29b98fb2
AW
2250Besides when compiling Guile itself, Guile no longer uses a recursive C
2251function as an evaluator. This obviates the need to check the C stack
2252pointer for overflow. Continuations still capture the C stack, however.
fa1804e9 2253
96b73e84
AW
2254** New environment variables: GUILE_LOAD_COMPILED_PATH,
2255 GUILE_SYSTEM_LOAD_COMPILED_PATH
fa1804e9 2256
96b73e84
AW
2257GUILE_LOAD_COMPILED_PATH is for compiled files what GUILE_LOAD_PATH is
2258for source files. It is a different path, however, because compiled
2259files are architecture-specific. GUILE_SYSTEM_LOAD_COMPILED_PATH is like
2260GUILE_SYSTEM_PATH.
2261
2262** New read-eval-print loop (REPL) implementation
2263
51cb0cca
AW
2264Running Guile with no arguments drops the user into the new REPL. See
2265"Using Guile Interactively" in the manual, for more information.
96b73e84 2266
51cb0cca
AW
2267** Remove old Emacs interface
2268
2269Guile had an unused `--emacs' command line argument that was supposed to
2270help when running Guile inside Emacs. This option has been removed, and
2271the helper functions `named-module-use!' and `load-emacs-interface' have
2272been deprecated.
2273
ef6b0e8d
AW
2274** Add `(system repl server)' module and `--listen' command-line argument
2275
2276The `(system repl server)' module exposes procedures to listen on
2277sockets for connections, and serve REPLs to those clients. The --listen
2278command-line argument allows any Guile program to thus be remotely
2279debuggable.
2280
2281See "Invoking Guile" for more information on `--listen'.
2282
7cd99cba
AW
2283** Command line additions
2284
2285The guile binary now supports a new switch "-x", which can be used to
2286extend the list of filename extensions tried when loading files
2287(%load-extensions).
2288
487bacf4
AW
2289** New reader options: `square-brackets', `r6rs-hex-escapes',
2290 `hungry-eol-escapes'
6bf927ab
LC
2291
2292The reader supports a new option (changeable via `read-options'),
2293`square-brackets', which instructs it to interpret square brackets as
29b98fb2 2294parentheses. This option is on by default.
6bf927ab
LC
2295
2296When the new `r6rs-hex-escapes' reader option is enabled, the reader
51cb0cca
AW
2297will recognize string escape sequences as defined in R6RS. R6RS string
2298escape sequences are incompatible with Guile's existing escapes, though,
2299so this option is off by default.
6bf927ab 2300
487bacf4
AW
2301Additionally, Guile follows the R6RS newline escaping rules when the
2302`hungry-eol-escapes' option is enabled.
2303
2304See "String Syntax" in the manual, for more information.
2305
cf8ec359
AW
2306** Function profiling and tracing at the REPL
2307
2308The `,profile FORM' REPL meta-command can now be used to statistically
2309profile execution of a form, to see which functions are taking the most
2310time. See `,help profile' for more information.
2311
2312Similarly, `,trace FORM' traces all function applications that occur
2313during the execution of `FORM'. See `,help trace' for more information.
2314
51cb0cca
AW
2315** Recursive debugging REPL on error
2316
2317When Guile sees an error at the REPL, instead of saving the stack, Guile
2318will directly enter a recursive REPL in the dynamic context of the
2319error. See "Error Handling" in the manual, for more information.
2320
2321A recursive REPL is the same as any other REPL, except that it
2322has been augmented with debugging information, so that one can inspect
2323the context of the error. The debugger has been integrated with the REPL
2324via a set of debugging meta-commands.
cf8ec359 2325
51cb0cca
AW
2326For example, one may access a backtrace with `,backtrace' (or
2327`,bt'). See "Interactive Debugging" in the manual, for more
2328information.
cf8ec359 2329
96b73e84
AW
2330** New `guile-tools' commands: `compile', `disassemble'
2331
93617170 2332Pass the `--help' command-line option to these commands for more
96b73e84
AW
2333information.
2334
b0217d17
AW
2335** Guile now adds its install prefix to the LTDL_LIBRARY_PATH
2336
2337Users may now install Guile to nonstandard prefixes and just run
2338`/path/to/bin/guile', instead of also having to set LTDL_LIBRARY_PATH to
2339include `/path/to/lib'.
2340
2341** Guile's Emacs integration is now more keyboard-friendly
2342
2343Backtraces may now be disclosed with the keyboard in addition to the
2344mouse.
2345
cf8ec359
AW
2346** Load path change: search in version-specific paths before site paths
2347
2348When looking for a module, Guile now searches first in Guile's
2349version-specific path (the library path), *then* in the site dir. This
2350allows Guile's copy of SSAX to override any Guile-Lib copy the user has
2351installed. Also it should cut the number of `stat' system calls by half,
2352in the common case.
2353
51cb0cca
AW
2354** Value history in the REPL on by default
2355
2356By default, the REPL will save computed values in variables like `$1',
2357`$2', and the like. There are programmatic and interactive interfaces to
2358control this. See "Value History" in the manual, for more information.
2359
2360** Readline tab completion for arguments
2361
2362When readline is enabled, tab completion works for arguments too, not
2363just for the operator position.
2364
7cd99cba
AW
2365** Expression-oriented readline history
2366
2367Guile's readline history now tries to operate on expressions instead of
2368input lines. Let us know what you think!
2369
139fa149
AW
2370** Interactive Guile follows GNU conventions
2371
2372As recommended by the GPL, Guile now shows a brief copyright and
2373warranty disclaimer on startup, along with pointers to more information.
cf8ec359 2374
96b73e84
AW
2375* Changes to Scheme functions and syntax
2376
18e90860
AW
2377** Support for R6RS libraries
2378
2379The `library' and `import' forms from the latest Scheme report have been
2380added to Guile, in such a way that R6RS libraries share a namespace with
2381Guile modules. R6RS modules may import Guile modules, and are available
2382for Guile modules to import via use-modules and all the rest. See "R6RS
2383Libraries" in the manual for more information.
2384
2385** Implementations of R6RS libraries
2386
2387Guile now has implementations for all of the libraries defined in the
2388R6RS. Thanks to Julian Graham for this excellent hack. See "R6RS
2389Standard Libraries" in the manual for a full list of libraries.
2390
2391** Partial R6RS compatibility
2392
2393Guile now has enough support for R6RS to run a reasonably large subset
2394of R6RS programs.
2395
2396Guile is not fully R6RS compatible. Many incompatibilities are simply
2397bugs, though some parts of Guile will remain R6RS-incompatible for the
2398foreseeable future. See "R6RS Incompatibilities" in the manual, for more
2399information.
2400
2401Please contact bug-guile@gnu.org if you have found an issue not
2402mentioned in that compatibility list.
2403
4a457691
AW
2404** New implementation of `primitive-eval'
2405
2406Guile's `primitive-eval' is now implemented in Scheme. Actually there is
2407still a C evaluator, used when building a fresh Guile to interpret the
2408compiler, so we can compile eval.scm. Thereafter all calls to
2409primitive-eval are implemented by VM-compiled code.
2410
2411This allows all of Guile's procedures, be they interpreted or compiled,
2412to execute on the same stack, unifying multiple-value return semantics,
2413providing for proper tail recursion between interpreted and compiled
2414code, and simplifying debugging.
2415
2416As part of this change, the evaluator no longer mutates the internal
2417representation of the code being evaluated in a thread-unsafe manner.
2418
2419There are two negative aspects of this change, however. First, Guile
2420takes a lot longer to compile now. Also, there is less debugging
2421information available for debugging interpreted code. We hope to improve
2422both of these situations.
2423
2424There are many changes to the internal C evalator interface, but all
2425public interfaces should be the same. See the ChangeLog for details. If
2426we have inadvertantly changed an interface that you were using, please
2427contact bug-guile@gnu.org.
2428
96b73e84
AW
2429** Procedure removed: `the-environment'
2430
2431This procedure was part of the interpreter's execution model, and does
2432not apply to the compiler.
fa1804e9 2433
4a457691
AW
2434** No more `local-eval'
2435
2436`local-eval' used to exist so that one could evaluate code in the
2437lexical context of a function. Since there is no way to get the lexical
2438environment any more, as that concept has no meaning for the compiler,
2439and a different meaning for the interpreter, we have removed the
2440function.
2441
2442If you think you need `local-eval', you should probably implement your
2443own metacircular evaluator. It will probably be as fast as Guile's
2444anyway.
2445
139fa149 2446** Scheme source files will now be compiled automatically.
fa1804e9
AW
2447
2448If a compiled .go file corresponding to a .scm file is not found or is
2449not fresh, the .scm file will be compiled on the fly, and the resulting
2450.go file stored away. An advisory note will be printed on the console.
2451
51cb0cca
AW
2452Note that this mechanism depends on the timestamp of the .go file being
2453newer than that of the .scm file; if the .scm or .go files are moved
2454after installation, care should be taken to preserve their original
fa1804e9
AW
2455timestamps.
2456
6f06e8d3 2457Auto-compiled files will be stored in the $XDG_CACHE_HOME/guile/ccache
19fef497
AW
2458directory, where $XDG_CACHE_HOME defaults to ~/.cache. This directory
2459will be created if needed.
fa1804e9 2460
6f06e8d3
AW
2461To inhibit automatic compilation, set the GUILE_AUTO_COMPILE environment
2462variable to 0, or pass --no-auto-compile on the Guile command line.
fa1804e9 2463
96b73e84 2464** New POSIX procedures: `getrlimit' and `setrlimit'
fa1804e9 2465
96b73e84
AW
2466Note however that the interface of these functions is likely to change
2467in the next prerelease.
fa1804e9 2468
4a457691
AW
2469** New POSIX procedure: `getsid'
2470
2471Scheme binding for the `getsid' C library call.
2472
dbd9532e
LC
2473** New POSIX procedure: `getaddrinfo'
2474
2475Scheme binding for the `getaddrinfo' C library function.
2476
7cd99cba
AW
2477** Multicast socket options
2478
2479Support was added for the IP_MULTICAST_TTL and IP_MULTICAST_IF socket
2480options. See "Network Sockets and Communication" in the manual, for
2481more information.
2482
487bacf4
AW
2483** `recv!', `recvfrom!', `send', `sendto' now deal in bytevectors
2484
2485These socket procedures now take bytevectors as arguments, instead of
2486strings. There is some deprecated string support, however.
2487
7cd99cba
AW
2488** New GNU procedures: `setaffinity' and `getaffinity'.
2489
2490See "Processes" in the manual, for more information.
2491
2492** New procedures: `compose', `negate', and `const'
2493
2494See "Higher-Order Functions" in the manual, for more information.
2495
96b73e84 2496** New procedure in `(oops goops)': `method-formals'
fa1804e9 2497
96b73e84
AW
2498** New procedures in (ice-9 session): `add-value-help-handler!',
2499 `remove-value-help-handler!', `add-name-help-handler!'
29b98fb2 2500 `remove-name-help-handler!', `procedure-arguments'
fa1804e9 2501
96b73e84
AW
2502The value and name help handlers provide some minimal extensibility to
2503the help interface. Guile-lib's `(texinfo reflection)' uses them, for
2504example, to make stexinfo help documentation available. See those
2505procedures' docstrings for more information.
2506
2507`procedure-arguments' describes the arguments that a procedure can take,
2508combining arity and formals. For example:
2509
2510 (procedure-arguments resolve-interface)
2511 => ((required . (name)) (rest . args))
fa1804e9 2512
96b73e84
AW
2513Additionally, `module-commentary' is now publically exported from
2514`(ice-9 session).
2515
cf8ec359 2516** Removed: `procedure->memoizing-macro', `procedure->syntax'
96b73e84 2517
cf8ec359
AW
2518These procedures created primitive fexprs for the old evaluator, and are
2519no longer supported. If you feel that you need these functions, you
2520probably need to write your own metacircular evaluator (which will
2521probably be as fast as Guile's, anyway).
96b73e84
AW
2522
2523** New language: ECMAScript
2524
2525Guile now ships with one other high-level language supported,
2526ECMAScript. The goal is to support all of version 3.1 of the standard,
2527but not all of the libraries are there yet. This support is not yet
2528documented; ask on the mailing list if you are interested.
2529
19fef497
AW
2530** New language: Brainfuck
2531
2532Brainfuck is a toy language that closely models Turing machines. Guile's
2533brainfuck compiler is meant to be an example of implementing other
2534languages. See the manual for details, or
2535http://en.wikipedia.org/wiki/Brainfuck for more information about the
2536Brainfuck language itself.
2537
4a457691
AW
2538** New language: Elisp
2539
2540Guile now has an experimental Emacs Lisp compiler and runtime. You can
2541now switch to Elisp at the repl: `,language elisp'. All kudos to Daniel
7cd99cba 2542Kraft and Brian Templeton, and all bugs to bug-guile@gnu.org.
4a457691 2543
139fa149
AW
2544** Better documentation infrastructure for macros
2545
2546It is now possible to introspect on the type of a macro, e.g.
2547syntax-rules, identifier-syntax, etc, and extract information about that
2548macro, such as the syntax-rules patterns or the defmacro arguments.
2549`(texinfo reflection)' takes advantage of this to give better macro
2550documentation.
2551
139fa149
AW
2552** Support for arbitrary procedure metadata
2553
2554Building on its support for docstrings, Guile now supports multiple
2555docstrings, adding them to the tail of a compiled procedure's
2556properties. For example:
2557
2558 (define (foo)
2559 "one"
2560 "two"
2561 3)
29b98fb2 2562 (procedure-properties foo)
139fa149
AW
2563 => ((name . foo) (documentation . "one") (documentation . "two"))
2564
2565Also, vectors of pairs are now treated as additional metadata entries:
2566
2567 (define (bar)
2568 #((quz . #f) (docstring . "xyzzy"))
2569 3)
29b98fb2 2570 (procedure-properties bar)
139fa149
AW
2571 => ((name . bar) (quz . #f) (docstring . "xyzzy"))
2572
2573This allows arbitrary literals to be embedded as metadata in a compiled
2574procedure.
2575
96b73e84
AW
2576** The psyntax expander now knows how to interpret the @ and @@ special
2577 forms.
2578
2579** The psyntax expander is now hygienic with respect to modules.
2580
2581Free variables in a macro are scoped in the module that the macro was
2582defined in, not in the module the macro is used in. For example, code
2583like this works now:
2584
2585 (define-module (foo) #:export (bar))
2586 (define (helper x) ...)
2587 (define-syntax bar
2588 (syntax-rules () ((_ x) (helper x))))
2589
2590 (define-module (baz) #:use-module (foo))
2591 (bar qux)
2592
2593It used to be you had to export `helper' from `(foo)' as well.
2594Thankfully, this has been fixed.
2595
51cb0cca 2596** Support for version information in Guile's `module' form
cf8ec359 2597
51cb0cca
AW
2598Guile modules now have a `#:version' field. See "R6RS Version
2599References", "General Information about Modules", "Using Guile Modules",
2600and "Creating Guile Modules" in the manual for more information.
96b73e84 2601
cf8ec359
AW
2602** Support for renaming bindings on module export
2603
2604Wherever Guile accepts a symbol as an argument to specify a binding to
2605export, it now also accepts a pair of symbols, indicating that a binding
2606should be renamed on export. See "Creating Guile Modules" in the manual
2607for more information.
96b73e84 2608
18e90860
AW
2609** New procedure: `module-export-all!'
2610
2611This procedure exports all current and future bindings from a module.
2612Use as `(module-export-all! (current-module))'.
2613
7cd99cba
AW
2614** New procedure `reload-module', and `,reload' REPL command
2615
2616See "Module System Reflection" and "Module Commands" in the manual, for
2617more information.
2618
96b73e84
AW
2619** `eval-case' has been deprecated, and replaced by `eval-when'.
2620
29b98fb2
AW
2621The semantics of `eval-when' are easier to understand. See "Eval When"
2622in the manual, for more information.
96b73e84
AW
2623
2624** Guile is now more strict about prohibiting definitions in expression
2625 contexts.
2626
2627Although previous versions of Guile accepted it, the following
2628expression is not valid, in R5RS or R6RS:
2629
2630 (if test (define foo 'bar) (define foo 'baz))
2631
2632In this specific case, it would be better to do:
2633
2634 (define foo (if test 'bar 'baz))
2635
79b3863d
AW
2636It is possible to circumvent this restriction with e.g.
2637`(module-define! (current-module) 'foo 'baz)'. Contact the list if you
2638have any questions.
96b73e84 2639
51cb0cca
AW
2640** Support for `letrec*'
2641
2642Guile now supports `letrec*', a recursive lexical binding operator in
2643which the identifiers are bound in order. See "Local Bindings" in the
2644manual, for more details.
2645
2646** Internal definitions now expand to `letrec*'
2647
2648Following the R6RS, internal definitions now expand to letrec* instead
2649of letrec. The following program is invalid for R5RS, but valid for
2650R6RS:
2651
2652 (define (foo)
2653 (define bar 10)
2654 (define baz (+ bar 20))
2655 baz)
2656
2657 ;; R5RS and Guile <= 1.8:
2658 (foo) => Unbound variable: bar
2659 ;; R6RS and Guile >= 2.0:
2660 (foo) => 30
2661
2662This change should not affect correct R5RS programs, or programs written
2663in earlier Guile dialects.
2664
18e90860
AW
2665** Macro expansion produces structures instead of s-expressions
2666
2667In the olden days, macroexpanding an s-expression would yield another
2668s-expression. Though the lexical variables were renamed, expansions of
2669core forms like `if' and `begin' were still non-hygienic, as they relied
2670on the toplevel definitions of `if' et al being the conventional ones.
2671
2672The solution is to expand to structures instead of s-expressions. There
2673is an `if' structure, a `begin' structure, a `toplevel-ref' structure,
2674etc. The expander already did this for compilation, producing Tree-IL
2675directly; it has been changed now to do so when expanding for the
2676evaluator as well.
2677
96b73e84
AW
2678** Defmacros must now produce valid Scheme expressions.
2679
2680It used to be that defmacros could unquote in Scheme values, as a way of
2681supporting partial evaluation, and avoiding some hygiene issues. For
2682example:
2683
2684 (define (helper x) ...)
2685 (define-macro (foo bar)
2686 `(,helper ,bar))
2687
2688Assuming this macro is in the `(baz)' module, the direct translation of
2689this code would be:
2690
2691 (define (helper x) ...)
2692 (define-macro (foo bar)
2693 `((@@ (baz) helper) ,bar))
2694
2695Of course, one could just use a hygienic macro instead:
2696
2697 (define-syntax foo
2698 (syntax-rules ()
2699 ((_ bar) (helper bar))))
2700
2701** Guile's psyntax now supports docstrings and internal definitions.
2702
2703The following Scheme is not strictly legal:
2704
2705 (define (foo)
2706 "bar"
2707 (define (baz) ...)
2708 (baz))
2709
2710However its intent is fairly clear. Guile interprets "bar" to be the
2711docstring of `foo', and the definition of `baz' is still in definition
2712context.
2713
51cb0cca
AW
2714** Support for settable identifier syntax
2715
2716Following the R6RS, "variable transformers" are settable
2717identifier-syntax. See "Identifier macros" in the manual, for more
2718information.
2719
2720** syntax-case treats `_' as a placeholder
2721
2722Following R6RS, a `_' in a syntax-rules or syntax-case pattern matches
2723anything, and binds no pattern variables. Unlike the R6RS, Guile also
2724permits `_' to be in the literals list for a pattern.
2725
96b73e84
AW
2726** Macros need to be defined before their first use.
2727
2728It used to be that with lazy memoization, this might work:
2729
2730 (define (foo x)
2731 (ref x))
2732 (define-macro (ref x) x)
2733 (foo 1) => 1
2734
2735But now, the body of `foo' is interpreted to mean a call to the toplevel
2736`ref' function, instead of a macro expansion. The solution is to define
2737macros before code that uses them.
2738
2739** Functions needed by macros at expand-time need to be present at
2740 expand-time.
2741
2742For example, this code will work at the REPL:
2743
2744 (define (double-helper x) (* x x))
2745 (define-macro (double-literal x) (double-helper x))
2746 (double-literal 2) => 4
2747
2748But it will not work when a file is compiled, because the definition of
2749`double-helper' is not present at expand-time. The solution is to wrap
2750the definition of `double-helper' in `eval-when':
2751
2752 (eval-when (load compile eval)
2753 (define (double-helper x) (* x x)))
2754 (define-macro (double-literal x) (double-helper x))
2755 (double-literal 2) => 4
2756
29b98fb2 2757See the documentation for eval-when for more information.
96b73e84 2758
29b98fb2 2759** `macroexpand' produces structures, not S-expressions.
96b73e84 2760
29b98fb2
AW
2761Given the need to maintain referential transparency, both lexically and
2762modular, the result of expanding Scheme expressions is no longer itself
2763an s-expression. If you want a human-readable approximation of the
2764result of `macroexpand', call `tree-il->scheme' from `(language
2765tree-il)'.
96b73e84 2766
29b98fb2 2767** Removed function: `macroexpand-1'
96b73e84 2768
29b98fb2
AW
2769It is unclear how to implement `macroexpand-1' with syntax-case, though
2770PLT Scheme does prove that it is possible.
fa1804e9
AW
2771
2772** New reader macros: #' #` #, #,@
2773
2774These macros translate, respectively, to `syntax', `quasisyntax',
2775`unsyntax', and `unsyntax-splicing'. See the R6RS for more information.
2776These reader macros may be overridden by `read-hash-extend'.
2777
2778** Incompatible change to #'
2779
2780Guile did have a #' hash-extension, by default, which just returned the
2781subsequent datum: #'foo => foo. In the unlikely event that anyone
2782actually used this, this behavior may be reinstated via the
2783`read-hash-extend' mechanism.
2784
b47fea09
AW
2785** `unquote' and `unquote-splicing' accept multiple expressions
2786
2787As per the R6RS, these syntax operators can now accept any number of
2788expressions to unquote.
2789
fa1804e9
AW
2790** Scheme expresssions may be commented out with #;
2791
93617170
LC
2792#; comments out an entire expression. See SRFI-62 or the R6RS for more
2793information.
fa1804e9 2794
b0abbaa7
AW
2795** Prompts: Delimited, composable continuations
2796
2797Guile now has prompts as part of its primitive language. See "Prompts"
2798in the manual, for more information.
2799
2800Expressions entered in at the REPL, or from the command line, are
2801surrounded by a prompt with the default prompt tag.
2802
93617170 2803** `make-stack' with a tail-called procedural narrowing argument no longer
fa1804e9
AW
2804 works (with compiled procedures)
2805
2806It used to be the case that a captured stack could be narrowed to select
2807calls only up to or from a certain procedure, even if that procedure
2808already tail-called another procedure. This was because the debug
2809information from the original procedure was kept on the stack.
2810
2811Now with the new compiler, the stack only contains active frames from
2812the current continuation. A narrow to a procedure that is not in the
2813stack will result in an empty stack. To fix this, narrow to a procedure
2814that is active in the current continuation, or narrow to a specific
2815number of stack frames.
2816
29b98fb2 2817** Backtraces through compiled procedures only show procedures that are
fa1804e9
AW
2818 active in the current continuation
2819
2820Similarly to the previous issue, backtraces in compiled code may be
2821different from backtraces in interpreted code. There are no semantic
2822differences, however. Please mail bug-guile@gnu.org if you see any
2823deficiencies with Guile's backtraces.
2824
b47fea09
AW
2825** `positions' reader option enabled by default
2826
2827This change allows primitive-load without --auto-compile to also
2828propagate source information through the expander, for better errors and
2829to let macros know their source locations. The compiler was already
2830turning it on anyway.
2831
51cb0cca
AW
2832** New macro: `current-source-location'
2833
2834The macro returns the current source location (to be documented).
2835
fa1804e9
AW
2836** syntax-rules and syntax-case macros now propagate source information
2837 through to the expanded code
2838
2839This should result in better backtraces.
2840
2841** The currying behavior of `define' has been removed.
2842
2843Before, `(define ((f a) b) (* a b))' would translate to
2844
2845 (define f (lambda (a) (lambda (b) (* a b))))
2846
93617170 2847Now a syntax error is signaled, as this syntax is not supported by
29b98fb2
AW
2848default. Use the `(ice-9 curried-definitions)' module to get back the
2849old behavior.
fa1804e9 2850
4a457691
AW
2851** New procedure, `define!'
2852
2853`define!' is a procedure that takes two arguments, a symbol and a value,
2854and binds the value to the symbol in the current module. It's useful to
2855programmatically make definitions in the current module, and is slightly
2856less verbose than `module-define!'.
2857
fa1804e9
AW
2858** All modules have names now
2859
2860Before, you could have anonymous modules: modules without names. Now,
2861because of hygiene and macros, all modules have names. If a module was
2862created without a name, the first time `module-name' is called on it, a
2863fresh name will be lazily generated for it.
2864
18e90860
AW
2865** The module namespace is now separate from the value namespace
2866
2867It was a little-known implementation detail of Guile's module system
2868that it was built on a single hierarchical namespace of values -- that
2869if there was a module named `(foo bar)', then in the module named
2870`(foo)' there was a binding from `bar' to the `(foo bar)' module.
2871
2872This was a neat trick, but presented a number of problems. One problem
2873was that the bindings in a module were not apparent from the module
2874itself; perhaps the `(foo)' module had a private binding for `bar', and
2875then an external contributor defined `(foo bar)'. In the end there can
2876be only one binding, so one of the two will see the wrong thing, and
2877produce an obtuse error of unclear provenance.
2878
2879Also, the public interface of a module was also bound in the value
2880namespace, as `%module-public-interface'. This was a hack from the early
2881days of Guile's modules.
2882
2883Both of these warts have been fixed by the addition of fields in the
2884`module' data type. Access to modules and their interfaces from the
2885value namespace has been deprecated, and all accessors use the new
2886record accessors appropriately.
2887
2888When Guile is built with support for deprecated code, as is the default,
2889the value namespace is still searched for modules and public interfaces,
2890and a deprecation warning is raised as appropriate.
2891
2892Finally, to support lazy loading of modules as one used to be able to do
2893with module binder procedures, Guile now has submodule binders, called
2894if a given submodule is not found. See boot-9.scm for more information.
2895
2896** New procedures: module-ref-submodule, module-define-submodule,
2897 nested-ref-module, nested-define-module!, local-ref-module,
2898 local-define-module
2899
2900These new accessors are like their bare variants, but operate on
2901namespaces instead of values.
2902
2903** The (app modules) module tree is officially deprecated
2904
2905It used to be that one could access a module named `(foo bar)' via
2906`(nested-ref the-root-module '(app modules foo bar))'. The `(app
2907modules)' bit was a never-used and never-documented abstraction, and has
2908been deprecated. See the following mail for a full discussion:
2909
2910 http://lists.gnu.org/archive/html/guile-devel/2010-04/msg00168.html
2911
2912The `%app' binding is also deprecated.
2913
51cb0cca
AW
2914** `module-filename' field and accessor
2915
2916Modules now record the file in which they are defined. This field may be
2917accessed with the new `module-filename' procedure.
2918
2919** Modules load within a known environment
2920
2921It takes a few procedure calls to define a module, and those procedure
2922calls need to be in scope. Now we ensure that the current module when
2923loading a module is one that has the needed bindings, instead of relying
2924on chance.
2925
b47fea09
AW
2926** `load' is a macro (!) that resolves paths relative to source file dir
2927
2928The familiar Schem `load' procedure is now a macro that captures the
2929name of the source file being expanded, and dispatches to the new
2930`load-in-vicinity'. Referencing `load' by bare name returns a closure
2931that embeds the current source file name.
2932
2933This fix allows `load' of relative paths to be resolved with respect to
2934the location of the file that calls `load'.
2935
fa1804e9
AW
2936** Many syntax errors have different texts now
2937
2938Syntax errors still throw to the `syntax-error' key, but the arguments
2939are often different now. Perhaps in the future, Guile will switch to
93617170 2940using standard SRFI-35 conditions.
fa1804e9
AW
2941
2942** Returning multiple values to compiled code will silently truncate the
2943 values to the expected number
2944
2945For example, the interpreter would raise an error evaluating the form,
2946`(+ (values 1 2) (values 3 4))', because it would see the operands as
2947being two compound "values" objects, to which `+' does not apply.
2948
2949The compiler, on the other hand, receives multiple values on the stack,
2950not as a compound object. Given that it must check the number of values
2951anyway, if too many values are provided for a continuation, it chooses
2952to truncate those values, effectively evaluating `(+ 1 3)' instead.
2953
2954The idea is that the semantics that the compiler implements is more
2955intuitive, and the use of the interpreter will fade out with time.
2956This behavior is allowed both by the R5RS and the R6RS.
2957
2958** Multiple values in compiled code are not represented by compound
2959 objects
2960
2961This change may manifest itself in the following situation:
2962
2963 (let ((val (foo))) (do-something) val)
2964
2965In the interpreter, if `foo' returns multiple values, multiple values
2966are produced from the `let' expression. In the compiler, those values
2967are truncated to the first value, and that first value is returned. In
2968the compiler, if `foo' returns no values, an error will be raised, while
2969the interpreter would proceed.
2970
2971Both of these behaviors are allowed by R5RS and R6RS. The compiler's
2972behavior is more correct, however. If you wish to preserve a potentially
2973multiply-valued return, you will need to set up a multiple-value
2974continuation, using `call-with-values'.
2975
2976** Defmacros are now implemented in terms of syntax-case.
2977
2978The practical ramification of this is that the `defmacro?' predicate has
2979been removed, along with `defmacro-transformer', `macro-table',
2980`xformer-table', `assert-defmacro?!', `set-defmacro-transformer!' and
2981`defmacro:transformer'. This is because defmacros are simply macros. If
2982any of these procedures provided useful facilities to you, we encourage
2983you to contact the Guile developers.
2984
139fa149
AW
2985** Hygienic macros documented as the primary syntactic extension mechanism.
2986
2987The macro documentation was finally fleshed out with some documentation
29b98fb2
AW
2988on `syntax-rules' and `syntax-case' macros, and other parts of the macro
2989expansion process. See "Macros" in the manual, for details.
139fa149 2990
fa1804e9
AW
2991** psyntax is now the default expander
2992
2993Scheme code is now expanded by default by the psyntax hygienic macro
2994expander. Expansion is performed completely before compilation or
2995interpretation.
2996
2997Notably, syntax errors will be signalled before interpretation begins.
2998In the past, many syntax errors were only detected at runtime if the
2999code in question was memoized.
3000
3001As part of its expansion, psyntax renames all lexically-bound
3002identifiers. Original identifier names are preserved and given to the
3003compiler, but the interpreter will see the renamed variables, e.g.,
3004`x432' instead of `x'.
3005
3006Note that the psyntax that Guile uses is a fork, as Guile already had
3007modules before incompatible modules were added to psyntax -- about 10
3008years ago! Thus there are surely a number of bugs that have been fixed
3009in psyntax since then. If you find one, please notify bug-guile@gnu.org.
3010
3011** syntax-rules and syntax-case are available by default.
3012
3013There is no longer any need to import the `(ice-9 syncase)' module
3014(which is now deprecated). The expander may be invoked directly via
29b98fb2 3015`macroexpand', though it is normally searched for via the current module
fa1804e9
AW
3016transformer.
3017
3018Also, the helper routines for syntax-case are available in the default
3019environment as well: `syntax->datum', `datum->syntax',
3020`bound-identifier=?', `free-identifier=?', `generate-temporaries',
3021`identifier?', and `syntax-violation'. See the R6RS for documentation.
3022
4a457691
AW
3023** Tail patterns in syntax-case
3024
3025Guile has pulled in some more recent changes from the psyntax portable
3026syntax expander, to implement support for "tail patterns". Such patterns
3027are supported by syntax-rules and syntax-case. This allows a syntax-case
3028match clause to have ellipses, then a pattern at the end. For example:
3029
3030 (define-syntax case
3031 (syntax-rules (else)
3032 ((_ val match-clause ... (else e e* ...))
3033 [...])))
3034
3035Note how there is MATCH-CLAUSE, which is ellipsized, then there is a
3036tail pattern for the else clause. Thanks to Andreas Rottmann for the
3037patch, and Kent Dybvig for the code.
3038
fa1804e9
AW
3039** Lexical bindings introduced by hygienic macros may not be referenced
3040 by nonhygienic macros.
3041
3042If a lexical binding is introduced by a hygienic macro, it may not be
3043referenced by a nonhygienic macro. For example, this works:
3044
3045 (let ()
3046 (define-macro (bind-x val body)
3047 `(let ((x ,val)) ,body))
3048 (define-macro (ref x)
3049 x)
3050 (bind-x 10 (ref x)))
3051
3052But this does not:
3053
3054 (let ()
3055 (define-syntax bind-x
3056 (syntax-rules ()
3057 ((_ val body) (let ((x val)) body))))
3058 (define-macro (ref x)
3059 x)
3060 (bind-x 10 (ref x)))
3061
3062It is not normal to run into this situation with existing code. However,
51cb0cca 3063if you have defmacros that expand to hygienic macros, it is possible to
66ad445d
AW
3064run into situations like this. For example, if you have a defmacro that
3065generates a `while' expression, the `break' bound by the `while' may not
3066be visible within other parts of your defmacro. The solution is to port
3067from defmacros to syntax-rules or syntax-case.
fa1804e9
AW
3068
3069** Macros may no longer be referenced as first-class values.
3070
3071In the past, you could evaluate e.g. `if', and get its macro value. Now,
3072expanding this form raises a syntax error.
3073
3074Macros still /exist/ as first-class values, but they must be
3075/referenced/ via the module system, e.g. `(module-ref (current-module)
3076'if)'.
3077
29b98fb2
AW
3078** Macros may now have docstrings.
3079
3080`object-documentation' from `(ice-9 documentation)' may be used to
3081retrieve the docstring, once you have a macro value -- but see the above
3082note about first-class macros. Docstrings are associated with the syntax
3083transformer procedures.
fa1804e9 3084
e614d375
AW
3085** `case-lambda' is now available in the default environment.
3086
3087The binding in the default environment is equivalent to the one from the
3088`(srfi srfi-16)' module. Use the srfi-16 module explicitly if you wish
3089to maintain compatibility with Guile 1.8 and earlier.
3090
29b98fb2 3091** Procedures may now have more than one arity.
5bb408cc
AW
3092
3093This can be the case, for example, in case-lambda procedures. The
3094arities of compiled procedures may be accessed via procedures from the
3095`(system vm program)' module; see "Compiled Procedures", "Optional
3096Arguments", and "Case-lambda" in the manual.
3097
18e90860
AW
3098** Deprecate arity access via (procedure-properties proc 'arity)
3099
3100Instead of accessing a procedure's arity as a property, use the new
3101`procedure-minimum-arity' function, which gives the most permissive
b3da54d1 3102arity that the function has, in the same format as the old arity
18e90860
AW
3103accessor.
3104
e614d375
AW
3105** `lambda*' and `define*' are now available in the default environment
3106
3107As with `case-lambda', `(ice-9 optargs)' continues to be supported, for
3108compatibility purposes. No semantic change has been made (we hope).
3109Optional and keyword arguments now dispatch via special VM operations,
3110without the need to cons rest arguments, making them very fast.
3111
487bacf4
AW
3112** New syntax: define-once
3113
3114`define-once' is like Lisp's `defvar': it creates a toplevel binding,
3115but only if one does not exist already.
3116
cf8ec359
AW
3117** New function, `truncated-print', with `format' support
3118
3119`(ice-9 pretty-print)' now exports `truncated-print', a printer that
3120will ensure that the output stays within a certain width, truncating the
3121output in what is hopefully an intelligent manner. See the manual for
3122more details.
3123
3124There is a new `format' specifier, `~@y', for doing a truncated
3125print (as opposed to `~y', which does a pretty-print). See the `format'
3126documentation for more details.
3127
7cd99cba
AW
3128** Better pretty-printing
3129
3130Indentation recognizes more special forms, like `syntax-case', and read
3131macros like `quote' are printed better.
3132
51cb0cca
AW
3133** Passing a number as the destination of `format' is deprecated
3134
3135The `format' procedure in `(ice-9 format)' now emits a deprecation
3136warning if a number is passed as its first argument.
3137
487bacf4
AW
3138Also, it used to be that you could omit passing a port to `format', in
3139some cases. This still works, but has been formally deprecated.
3140
cf8ec359
AW
3141** SRFI-4 vectors reimplemented in terms of R6RS bytevectors
3142
3143Guile now implements SRFI-4 vectors using bytevectors. Often when you
3144have a numeric vector, you end up wanting to write its bytes somewhere,
3145or have access to the underlying bytes, or read in bytes from somewhere
3146else. Bytevectors are very good at this sort of thing. But the SRFI-4
3147APIs are nicer to use when doing number-crunching, because they are
3148addressed by element and not by byte.
3149
3150So as a compromise, Guile allows all bytevector functions to operate on
3151numeric vectors. They address the underlying bytes in the native
3152endianness, as one would expect.
3153
3154Following the same reasoning, that it's just bytes underneath, Guile
3155also allows uniform vectors of a given type to be accessed as if they
3156were of any type. One can fill a u32vector, and access its elements with
3157u8vector-ref. One can use f64vector-ref on bytevectors. It's all the
3158same to Guile.
3159
3160In this way, uniform numeric vectors may be written to and read from
3161input/output ports using the procedures that operate on bytevectors.
3162
3163Calls to SRFI-4 accessors (ref and set functions) from Scheme are now
3164inlined to the VM instructions for bytevector access.
3165
3166See "SRFI-4" in the manual, for more information.
3167
3168** Nonstandard SRFI-4 procedures now available from `(srfi srfi-4 gnu)'
3169
3170Guile's `(srfi srfi-4)' now only exports those srfi-4 procedures that
3171are part of the standard. Complex uniform vectors and the
3172`any->FOOvector' family are now available only from `(srfi srfi-4 gnu)'.
3173
3174Guile's default environment imports `(srfi srfi-4)', and probably should
3175import `(srfi srfi-4 gnu)' as well.
3176
3177See "SRFI-4 Extensions" in the manual, for more information.
3178
e614d375
AW
3179** New syntax: include-from-path.
3180
3181`include-from-path' is like `include', except it looks for its file in
3182the load path. It can be used to compile other files into a file.
3183
3184** New syntax: quasisyntax.
3185
3186`quasisyntax' is to `syntax' as `quasiquote' is to `quote'. See the R6RS
3187documentation for more information. Thanks to Andre van Tonder for the
3188implementation.
3189
51cb0cca
AW
3190** `*unspecified*' is identifier syntax
3191
3192`*unspecified*' is no longer a variable, so it is optimized properly by
3193the compiler, and is not `set!'-able.
3194
487bacf4
AW
3195** Changes and bugfixes in numerics code
3196
3197*** Added six new sets of fast quotient and remainder operators
3198
3199Added six new sets of fast quotient and remainder operator pairs with
3200different semantics than the R5RS operators. They support not only
3201integers, but all reals, including exact rationals and inexact
3202floating point numbers.
3203
3204These procedures accept two real numbers N and D, where the divisor D
3205must be non-zero. Each set of operators computes an integer quotient
3206Q and a real remainder R such that N = Q*D + R and |R| < |D|. They
3207differ only in how N/D is rounded to produce Q.
3208
3209`euclidean-quotient' returns the integer Q and `euclidean-remainder'
3210returns the real R such that N = Q*D + R and 0 <= R < |D|. `euclidean/'
3211returns both Q and R, and is more efficient than computing each
3212separately. Note that when D > 0, `euclidean-quotient' returns
3213floor(N/D), and when D < 0 it returns ceiling(N/D).
3214
3215`centered-quotient', `centered-remainder', and `centered/' are similar
3216except that the range of remainders is -abs(D/2) <= R < abs(D/2), and
3217`centered-quotient' rounds N/D to the nearest integer. Note that these
3218operators are equivalent to the R6RS integer division operators `div',
3219`mod', `div-and-mod', `div0', `mod0', and `div0-and-mod0'.
3220
3221`floor-quotient' and `floor-remainder' compute Q and R, respectively,
3222where Q has been rounded toward negative infinity. `floor/' returns
3223both Q and R, and is more efficient than computing each separately.
3224Note that when applied to integers, `floor-remainder' is equivalent to
3225the R5RS integer-only `modulo' operator. `ceiling-quotient',
3226`ceiling-remainder', and `ceiling/' are similar except that Q is
3227rounded toward positive infinity.
3228
3229For `truncate-quotient', `truncate-remainder', and `truncate/', Q is
3230rounded toward zero. Note that when applied to integers,
3231`truncate-quotient' and `truncate-remainder' are equivalent to the
3232R5RS integer-only operators `quotient' and `remainder'.
3233
3234For `round-quotient', `round-remainder', and `round/', Q is rounded to
3235the nearest integer, with ties going to the nearest even integer.
3236
3237*** Complex number changes
3238
3239Guile is now able to represent non-real complex numbers whose
3240imaginary part is an _inexact_ zero (0.0 or -0.0), per R6RS.
3241Previously, such numbers were immediately changed into inexact reals.
3242
3243(real? 0.0+0.0i) now returns #f, per R6RS, although (zero? 0.0+0.0i)
3244still returns #t, per R6RS. (= 0 0.0+0.0i) and (= 0.0 0.0+0.0i) are
3245#t, but the same comparisons using `eqv?' or `equal?' are #f.
3246
3247Like other non-real numbers, these complex numbers with inexact zero
3248imaginary part will raise exceptions is passed to procedures requiring
3249reals, such as `<', `>', `<=', `>=', `min', `max', `positive?',
3250`negative?', `inf?', `nan?', `finite?', etc.
3251
3252**** `make-rectangular' changes
3253
3254scm_make_rectangular `make-rectangular' now returns a real number only
3255if the imaginary part is an _exact_ 0. Previously, it would return a
3256real number if the imaginary part was an inexact zero.
3257
3258scm_c_make_rectangular now always returns a non-real complex number,
3259even if the imaginary part is zero. Previously, it would return a
3260real number if the imaginary part was zero.
3261
3262**** `make-polar' changes
3263
3264scm_make_polar `make-polar' now returns a real number only if the
3265angle or magnitude is an _exact_ 0. If the magnitude is an exact 0,
3266it now returns an exact 0. Previously, it would return a real
3267number if the imaginary part was an inexact zero.
3268
3269scm_c_make_polar now always returns a non-real complex number, even if
3270the imaginary part is 0.0. Previously, it would return a real number
3271if the imaginary part was 0.0.
3272
3273**** `imag-part' changes
3274
3275scm_imag_part `imag-part' now returns an exact 0 if applied to an
3276inexact real number. Previously it returned an inexact zero in this
3277case.
3278
3279*** `eqv?' and `equal?' now compare numbers equivalently
3280
3281scm_equal_p `equal?' now behaves equivalently to scm_eqv_p `eqv?' for
3282numeric values, per R5RS. Previously, equal? worked differently,
3283e.g. `(equal? 0.0 -0.0)' returned #t but `(eqv? 0.0 -0.0)' returned #f,
3284and `(equal? +nan.0 +nan.0)' returned #f but `(eqv? +nan.0 +nan.0)'
3285returned #t.
3286
3287*** `(equal? +nan.0 +nan.0)' now returns #t
3288
3289Previously, `(equal? +nan.0 +nan.0)' returned #f, although
3290`(let ((x +nan.0)) (equal? x x))' and `(eqv? +nan.0 +nan.0)'
3291both returned #t. R5RS requires that `equal?' behave like
3292`eqv?' when comparing numbers.
3293
3294*** Change in handling products `*' involving exact 0
3295
3296scm_product `*' now handles exact 0 differently. A product containing
3297an exact 0 now returns an exact 0 if and only if the other arguments
3298are all exact. An inexact zero is returned if and only if the other
3299arguments are all finite but not all exact. If an infinite or NaN
3300value is present, a NaN value is returned. Previously, any product
3301containing an exact 0 yielded an exact 0, regardless of the other
3302arguments.
3303
3304*** `expt' and `integer-expt' changes when the base is 0
3305
3306While `(expt 0 0)' is still 1, and `(expt 0 N)' for N > 0 is still
3307zero, `(expt 0 N)' for N < 0 is now a NaN value, and likewise for
3308integer-expt. This is more correct, and conforming to R6RS, but seems
3309to be incompatible with R5RS, which would return 0 for all non-zero
3310values of N.
3311
3312*** `expt' and `integer-expt' are more generic, less strict
3313
3314When raising to an exact non-negative integer exponent, `expt' and
3315`integer-expt' are now able to exponentiate any object that can be
3316multiplied using `*'. They can also raise an object to an exact
3317negative integer power if its reciprocal can be taken using `/'.
3318In order to allow this, the type of the first argument is no longer
3319checked when raising to an exact integer power. If the exponent is 0
3320or 1, the first parameter is not manipulated at all, and need not
3321even support multiplication.
3322
3323*** Infinities are no longer integers, nor rationals
3324
3325scm_integer_p `integer?' and scm_rational_p `rational?' now return #f
3326for infinities, per R6RS. Previously they returned #t for real
3327infinities. The real infinities and NaNs are still considered real by
3328scm_real `real?' however, per R6RS.
3329
3330*** NaNs are no longer rationals
3331
3332scm_rational_p `rational?' now returns #f for NaN values, per R6RS.
3333Previously it returned #t for real NaN values. They are still
3334considered real by scm_real `real?' however, per R6RS.
3335
3336*** `inf?' and `nan?' now throw exceptions for non-reals
3337
3338The domain of `inf?' and `nan?' is the real numbers. Guile now signals
3339an error when a non-real number or non-number is passed to these
3340procedures. (Note that NaNs _are_ considered numbers by scheme, despite
3341their name).
3342
3343*** `rationalize' bugfixes and changes
3344
3345Fixed bugs in scm_rationalize `rationalize'. Previously, it returned
3346exact integers unmodified, although that was incorrect if the epsilon
3347was at least 1 or inexact, e.g. (rationalize 4 1) should return 3 per
3348R5RS and R6RS, but previously it returned 4. It also now handles
3349cases involving infinities and NaNs properly, per R6RS.
3350
3351*** Trigonometric functions now return exact numbers in some cases
3352
3353scm_sin `sin', scm_cos `cos', scm_tan `tan', scm_asin `asin', scm_acos
3354`acos', scm_atan `atan', scm_sinh `sinh', scm_cosh `cosh', scm_tanh
3355`tanh', scm_sys_asinh `asinh', scm_sys_acosh `acosh', and
3356scm_sys_atanh `atanh' now return exact results in some cases.
3357
3358*** New procedure: `finite?'
3359
3360Add scm_finite_p `finite?' from R6RS to guile core, which returns #t
3361if and only if its argument is neither infinite nor a NaN. Note that
3362this is not the same as (not (inf? x)) or (not (infinite? x)), since
3363NaNs are neither finite nor infinite.
3364
3365*** Improved exactness handling for complex number parsing
3366
3367When parsing non-real complex numbers, exactness specifiers are now
3368applied to each component, as is done in PLT Scheme. For complex
3369numbers written in rectangular form, exactness specifiers are applied
3370to the real and imaginary parts before calling scm_make_rectangular.
3371For complex numbers written in polar form, exactness specifiers are
3372applied to the magnitude and angle before calling scm_make_polar.
3373
3374Previously, exactness specifiers were applied to the number as a whole
3375_after_ calling scm_make_rectangular or scm_make_polar.
3376
3377For example, (string->number "#i5.0+0i") now does the equivalent of:
3378
3379 (make-rectangular (exact->inexact 5.0) (exact->inexact 0))
3380
3381which yields 5.0+0.0i. Previously it did the equivalent of:
3382
3383 (exact->inexact (make-rectangular 5.0 0))
3384
3385which yielded 5.0.
3386
108e18b1
AW
3387** Unicode characters
3388
3389Unicode characters may be entered in octal format via e.g. `#\454', or
3390created via (integer->char 300). A hex external representation will
3391probably be introduced at some point.
3392
3393** Unicode strings
3394
3395Internally, strings are now represented either in the `latin-1'
3396encoding, one byte per character, or in UTF-32, with four bytes per
3397character. Strings manage their own allocation, switching if needed.
3398
99e31c32
AW
3399Extended characters may be written in a literal string using the
3400hexadecimal escapes `\xXX', `\uXXXX', or `\UXXXXXX', for 8-bit, 16-bit,
3401or 24-bit codepoints, respectively, or entered directly in the native
3402encoding of the port on which the string is read.
3403
56664c08
AW
3404** Unicode symbols
3405
3406One may now use U+03BB (GREEK SMALL LETTER LAMBDA) as an identifier.
3407
99e31c32
AW
3408** Support for non-ASCII source code files
3409
3410The default reader now handles source code files for some of the
3411non-ASCII character encodings, such as UTF-8. A non-ASCII source file
3412should have an encoding declaration near the top of the file. Also,
3413there is a new function, `file-encoding', that scans a port for a coding
3414declaration. See the section of the manual entitled, "Character Encoding
3415of Source Files".
3416
3417The pre-1.9.3 reader handled 8-bit clean but otherwise unspecified source
51cb0cca
AW
3418code. This use is now discouraged. Binary input and output is
3419currently supported by opening ports in the ISO-8859-1 locale.
99e31c32 3420
487bacf4
AW
3421** Source files default to UTF-8.
3422
3423If source files do not specify their encoding via a `coding:' block,
3424the default encoding is UTF-8, instead of being taken from the current
3425locale.
3426
3427** Interactive Guile installs the current locale.
3428
3429Instead of leaving the user in the "C" locale, running the Guile REPL
3430installs the current locale. [FIXME xref?]
3431
99e31c32
AW
3432** Support for locale transcoding when reading from and writing to ports
3433
3434Ports now have an associated character encoding, and port read and write
3435operations do conversion to and from locales automatically. Ports also
3436have an associated strategy for how to deal with locale conversion
3437failures.
3438
3439See the documentation in the manual for the four new support functions,
3440`set-port-encoding!', `port-encoding', `set-port-conversion-strategy!',
3441and `port-conversion-strategy'.
3442
3443** String and SRFI-13 functions can operate on Unicode strings
3444
3445** Unicode support for SRFI-14 character sets
3446
3447The default character sets are no longer locale dependent and contain
3448characters from the whole Unicode range. There is a new predefined
3449character set, `char-set:designated', which contains all assigned
3450Unicode characters. There is a new debugging function, `%char-set-dump'.
3451
3452** Character functions operate on Unicode characters
3453
3454`char-upcase' and `char-downcase' use default Unicode casing rules.
3455Character comparisons such as `char<?' and `char-ci<?' now sort based on
3456Unicode code points.
108e18b1
AW
3457
3458** Global variables `scm_charnames' and `scm_charnums' are removed
3459
3460These variables contained the names of control characters and were
3461used when writing characters. While these were global, they were
3462never intended to be public API. They have been replaced with private
3463functions.
3464
3465** EBCDIC support is removed
3466
3467There was an EBCDIC compile flag that altered some of the character
3468processing. It appeared that full EBCDIC support was never completed
3469and was unmaintained.
3470
6bf927ab 3471** Compile-time warnings
b0217d17
AW
3472
3473Guile can warn about potentially unbound free variables. Pass the
3474-Wunbound-variable on the `guile-tools compile' command line, or add
3475`#:warnings '(unbound-variable)' to your `compile' or `compile-file'
51cb0cca
AW
3476invocation. Warnings are also enabled by default for expressions entered
3477at the REPL.
b0217d17 3478
6cf43047
AW
3479Guile can also warn when you pass the wrong number of arguments to a
3480procedure, with -Warity-mismatch, or `arity-mismatch' in the
3481`#:warnings' as above.
3482
6bf927ab 3483Other warnings include `-Wunused-variable' and `-Wunused-toplevel', to
ef6b0e8d
AW
3484warn about unused local or global (top-level) variables, and `-Wformat',
3485to check for various errors related to the `format' procedure.
6bf927ab 3486
93617170
LC
3487** A new `memoize-symbol' evaluator trap has been added.
3488
3489This trap can be used for efficiently implementing a Scheme code
3490coverage.
fa1804e9 3491
96b73e84 3492** Duplicate bindings among used modules are resolved lazily.
93617170 3493
96b73e84 3494This slightly improves program startup times.
fa1804e9 3495
96b73e84 3496** New thread cancellation and thread cleanup API
93617170 3497
96b73e84 3498See `cancel-thread', `set-thread-cleanup!', and `thread-cleanup'.
fa1804e9 3499
51cb0cca
AW
3500** New threads are in `(guile-user)' by default, not `(guile)'
3501
3502It used to be that a new thread entering Guile would do so in the
3503`(guile)' module, unless this was the first time Guile was initialized,
3504in which case it was `(guile-user)'. This has been fixed to have all
3505new threads unknown to Guile default to `(guile-user)'.
3506
b47fea09
AW
3507** New helpers: `print-exception', `set-exception-printer!'
3508
3509These functions implement an extensible exception printer. Guile
3510registers printers for all of the exceptions it throws. Users may add
3511their own printers. There is also `scm_print_exception', for use by C
3512programs. Pleasantly, this allows SRFI-35 and R6RS exceptions to be
3513printed appropriately.
3514
4a457691
AW
3515** GOOPS dispatch in scheme
3516
3517As an implementation detail, GOOPS dispatch is no longer implemented by
3518special evaluator bytecodes, but rather directly via a Scheme function
3519associated with an applicable struct. There is some VM support for the
3520underlying primitives, like `class-of'.
3521
3522This change will in the future allow users to customize generic function
3523dispatch without incurring a performance penalty, and allow us to
3524implement method combinations.
3525
4a457691
AW
3526** Applicable struct support
3527
3528One may now make structs from Scheme that may be applied as procedures.
3529To do so, make a struct whose vtable is `<applicable-struct-vtable>'.
3530That struct will be the vtable of your applicable structs; instances of
3531that new struct are assumed to have the procedure in their first slot.
3532`<applicable-struct-vtable>' is like Common Lisp's
3533`funcallable-standard-class'. Likewise there is
3534`<applicable-struct-with-setter-vtable>', which looks for the setter in
3535the second slot. This needs to be better documented.
3536
29b98fb2
AW
3537** GOOPS cleanups.
3538
3539GOOPS had a number of concepts that were relevant to the days of Tcl,
3540but not any more: operators and entities, mainly. These objects were
3541never documented, and it is unlikely that they were ever used. Operators
3542were a kind of generic specific to the Tcl support. Entities were
3543replaced by applicable structs, mentioned above.
3544
4a457691
AW
3545** New struct slot allocation: "hidden"
3546
3547A hidden slot is readable and writable, but will not be initialized by a
3548call to make-struct. For example in your layout you would say "ph"
3549instead of "pw". Hidden slots are useful for adding new slots to a
3550vtable without breaking existing invocations to make-struct.
3551
3552** eqv? not a generic
3553
3554One used to be able to extend `eqv?' as a primitive-generic, but no
3555more. Because `eqv?' is in the expansion of `case' (via `memv'), which
3556should be able to compile to static dispatch tables, it doesn't make
3557sense to allow extensions that would subvert this optimization.
3558
e614d375
AW
3559** `inet-ntop' and `inet-pton' are always available.
3560
3561Guile now use a portable implementation of `inet_pton'/`inet_ntop', so
3562there is no more need to use `inet-aton'/`inet-ntoa'. The latter
3563functions are deprecated.
3564
b47fea09
AW
3565** `getopt-long' parsing errors throw to `quit', not `misc-error'
3566
3567This change should inhibit backtraces on argument parsing errors.
3568`getopt-long' has been modified to print out the error that it throws
3569itself.
3570
51cb0cca
AW
3571** New primitive: `tmpfile'.
3572
3573See "File System" in the manual.
3574
3575** Random generator state may be serialized to a datum
3576
3577`random-state->datum' will serialize a random state to a datum, which
3578may be written out, read back in later, and revivified using
3579`datum->random-state'. See "Random" in the manual, for more details.
3580
3581** Fix random number generator on 64-bit platforms
3582
3583There was a nasty bug on 64-bit platforms in which asking for a random
3584integer with a range between 2**32 and 2**64 caused a segfault. After
3585many embarrassing iterations, this was fixed.
3586
5bb408cc
AW
3587** Fast bit operations.
3588
3589The bit-twiddling operations `ash', `logand', `logior', and `logxor' now
3590have dedicated bytecodes. Guile is not just for symbolic computation,
3591it's for number crunching too.
3592
4a457691
AW
3593** Faster SRFI-9 record access
3594
3595SRFI-9 records are now implemented directly on top of Guile's structs,
3596and their accessors are defined in such a way that normal call-sites
3597inline to special VM opcodes, while still allowing for the general case
3598(e.g. passing a record accessor to `apply').
3599
e614d375
AW
3600** R6RS block comment support
3601
3602Guile now supports R6RS nested block comments. The start of a comment is
3603marked with `#|', and the end with `|#'.
3604
3605** `guile-2' cond-expand feature
3606
3607To test if your code is running under Guile 2.0 (or its alpha releases),
3608test for the `guile-2' cond-expand feature. Like this:
3609
3610 (cond-expand (guile-2 (eval-when (compile)
3611 ;; This must be evaluated at compile time.
3612 (fluid-set! current-reader my-reader)))
3613 (guile
3614 ;; Earlier versions of Guile do not have a
3615 ;; separate compilation phase.
3616 (fluid-set! current-reader my-reader)))
3617
96b73e84 3618** New global variables: %load-compiled-path, %load-compiled-extensions
fa1804e9 3619
96b73e84 3620These are analogous to %load-path and %load-extensions.
fa1804e9 3621
18e90860
AW
3622** New fluid: `%file-port-name-canonicalization'
3623
3624This fluid parameterizes the file names that are associated with file
3625ports. If %file-port-name-canonicalization is 'absolute, then file names
3626are canonicalized to be absolute paths. If it is 'relative, then the
3627name is canonicalized, but any prefix corresponding to a member of
3628`%load-path' is stripped off. Otherwise the names are passed through
3629unchanged.
3630
3631In addition, the `compile-file' and `compile-and-load' procedures bind
3632%file-port-name-canonicalization to their `#:canonicalization' keyword
3633argument, which defaults to 'relative. In this way, one might compile
3634"../module/ice-9/boot-9.scm", but the path that gets residualized into
3635the .go is "ice-9/boot-9.scm".
3636
96b73e84 3637** New procedure, `make-promise'
fa1804e9 3638
96b73e84 3639`(make-promise (lambda () foo))' is equivalent to `(delay foo)'.
fa1804e9 3640
108e18b1
AW
3641** `defined?' may accept a module as its second argument
3642
3643Previously it only accepted internal structures from the evaluator.
3644
96b73e84 3645** New entry into %guile-build-info: `ccachedir'
fa1804e9 3646
96b73e84 3647** Fix bug in `module-bound?'.
fa1804e9 3648
96b73e84
AW
3649`module-bound?' was returning true if a module did have a local
3650variable, but one that was unbound, but another imported module bound
3651the variable. This was an error, and was fixed.
fa1804e9 3652
96b73e84 3653** `(ice-9 syncase)' has been deprecated.
fa1804e9 3654
96b73e84
AW
3655As syntax-case is available by default, importing `(ice-9 syncase)' has
3656no effect, and will trigger a deprecation warning.
fa1804e9 3657
b0217d17
AW
3658** New readline history functions
3659
3660The (ice-9 readline) module now provides add-history, read-history,
3661write-history and clear-history, which wrap the corresponding GNU
3662History library functions.
3663
86d88a22
AW
3664** Removed deprecated uniform array procedures:
3665 dimensions->uniform-array, list->uniform-array, array-prototype
3666
3667Instead, use make-typed-array, list->typed-array, or array-type,
3668respectively.
3669
51cb0cca
AW
3670** Deprecate the old `scm-style-repl'
3671
3672The following bindings from boot-9 are now found in `(ice-9
3673scm-style-repl)': `scm-style-repl', `error-catching-loop',
3674`error-catching-repl', `bad-throw', `scm-repl-silent'
3675`assert-repl-silence', `repl-print-unspecified',
3676`assert-repl-print-unspecified', `scm-repl-verbose',
3677`assert-repl-verbosity', `scm-repl-prompt', `set-repl-prompt!', `repl',
3678`default-pre-unwind-handler', `handle-system-error',
3679
3680The following bindings have been deprecated, with no replacement:
3681`pre-unwind-handler-dispatch'.
3682
3683The following bindings have been totally removed:
3684`before-signal-stack'.
3685
3686Deprecated forwarding shims have been installed so that users that
3687expect these bindings in the main namespace will still work, but receive
3688a deprecation warning.
3689
3690** `set-batch-mode?!' replaced by `ensure-batch-mode!'
3691
3692"Batch mode" is a flag used to tell a program that it is not running
3693interactively. One usually turns it on after a fork. It may not be
3694turned off. `ensure-batch-mode!' deprecates the old `set-batch-mode?!',
3695because it is a better interface, as it can only turn on batch mode, not
3696turn it off.
3697
3698** Deprecate `save-stack', `the-last-stack'
3699
3700It used to be that the way to debug programs in Guile was to capture the
3701stack at the time of error, drop back to the REPL, then debug that
3702stack. But this approach didn't compose, was tricky to get right in the
3703presence of threads, and was not very powerful.
3704
3705So `save-stack', `stack-saved?', and `the-last-stack' have been moved to
3706`(ice-9 save-stack)', with deprecated bindings left in the root module.
3707
3708** `top-repl' has its own module
3709
3710The `top-repl' binding, called with Guile is run interactively, is now
3711is its own module, `(ice-9 top-repl)'. A deprecated forwarding shim was
3712left in the default environment.
3713
3714** `display-error' takes a frame
3715
3716The `display-error' / `scm_display_error' helper now takes a frame as an
3717argument instead of a stack. Stacks are still supported in deprecated
3718builds. Additionally, `display-error' will again source location
3719information for the error.
3720
3721** No more `(ice-9 debug)'
3722
3723This module had some debugging helpers that are no longer applicable to
3724the current debugging model. Importing this module will produce a
3725deprecation warning. Users should contact bug-guile for support.
3726
ef6b0e8d
AW
3727** Remove obsolete debug-options
3728
3729Removed `breakpoints', `trace', `procnames', `indent', `frames',
3730`maxdepth', and `debug' debug-options.
3731
3732** `backtrace' debug option on by default
3733
3734Given that Guile 2.0 can always give you a backtrace, backtraces are now
3735on by default.
3736
3737** `turn-on-debugging' deprecated
3738
3739** Remove obsolete print-options
3740
3741The `source' and `closure-hook' print options are obsolete, and have
3742been removed.
3743
3744** Remove obsolete read-options
3745
3746The "elisp-strings" and "elisp-vectors" read options were unused and
3747obsolete, so they have been removed.
3748
3749** Remove eval-options and trap-options
3750
3751Eval-options and trap-options are obsolete with the new VM and
3752evaluator.
3753
3754** Remove (ice-9 debugger) and (ice-9 debugging)
3755
3756See "Traps" and "Interactive Debugging" in the manual, for information
3757on their replacements.
3758
3759** Remove the GDS Emacs integration
3760
3761See "Using Guile in Emacs" in the manual, for info on how we think you
3762should use Guile with Emacs.
3763
b0abbaa7
AW
3764** Deprecated: `lazy-catch'
3765
3766`lazy-catch' was a form that captured the stack at the point of a
3767`throw', but the dynamic state at the point of the `catch'. It was a bit
3768crazy. Please change to use `catch', possibly with a throw-handler, or
3769`with-throw-handler'.
3770
487bacf4
AW
3771** Deprecated: primitive properties
3772
3773The `primitive-make-property', `primitive-property-set!',
3774`primitive-property-ref', and `primitive-property-del!' procedures were
3775crufty and only used to implement object properties, which has a new,
3776threadsafe implementation. Use object properties or weak hash tables
3777instead.
3778
18e90860
AW
3779** Deprecated `@bind' syntax
3780
3781`@bind' was part of an older implementation of the Emacs Lisp language,
3782and is no longer used.
3783
51cb0cca
AW
3784** Miscellaneous other deprecations
3785
7cd99cba
AW
3786`cuserid' has been deprecated, as it only returns 8 bytes of a user's
3787login. Use `(passwd:name (getpwuid (geteuid)))' instead.
3788
487bacf4
AW
3789Additionally, the procedures `apply-to-args', `has-suffix?', `scheme-file-suffix'
3790`get-option', `for-next-option', `display-usage-report',
3791`transform-usage-lambda', `collect', and `set-batch-mode?!' have all
3792been deprecated.
3793
7cd99cba
AW
3794** Add support for unbound fluids
3795
3796See `make-unbound-fluid', `fluid-unset!', and `fluid-bound?' in the
3797manual.
3798
3799** Add `variable-unset!'
3800
3801See "Variables" in the manual, for more details.
51cb0cca 3802
87e00370
LC
3803** Last but not least, the `λ' macro can be used in lieu of `lambda'
3804
96b73e84 3805* Changes to the C interface
fa1804e9 3806
7b96f3dd
LC
3807** Guile now uses libgc, the Boehm-Demers-Weiser garbage collector
3808
3809The semantics of `scm_gc_malloc ()' have been changed, in a
3810backward-compatible way. A new allocation routine,
3811`scm_gc_malloc_pointerless ()', was added.
3812
3813Libgc is a conservative GC, which we hope will make interaction with C
3814code easier and less error-prone.
3815
487bacf4
AW
3816** New procedures: `scm_to_stringn', `scm_from_stringn'
3817** New procedures: scm_{to,from}_{utf8,latin1}_symbol{n,}
3818** New procedures: scm_{to,from}_{utf8,utf32,latin1}_string{n,}
3819
3820These new procedures convert to and from string representations in
3821particular encodings.
ef6b0e8d 3822
487bacf4
AW
3823Users should continue to use locale encoding for user input, user
3824output, or interacting with the C library.
ef6b0e8d 3825
487bacf4 3826Use the Latin-1 functions for ASCII, and for literals in source code.
ef6b0e8d 3827
487bacf4
AW
3828Use UTF-8 functions for interaction with modern libraries which deal in
3829UTF-8, and UTF-32 for interaction with utf32-using libraries.
3830
3831Otherwise, use scm_to_stringn or scm_from_stringn with a specific
3832encoding.
ef6b0e8d 3833
4a457691
AW
3834** New type definitions for `scm_t_intptr' and friends.
3835
3836`SCM_T_UINTPTR_MAX', `SCM_T_INTPTR_MIN', `SCM_T_INTPTR_MAX',
3837`SIZEOF_SCM_T_BITS', `scm_t_intptr' and `scm_t_uintptr' are now
3838available to C. Have fun!
3839
96b73e84 3840** The GH interface (deprecated in version 1.6, 2001) was removed.
fa1804e9 3841
96b73e84 3842** Internal `scm_i_' functions now have "hidden" linkage with GCC/ELF
fa1804e9 3843
96b73e84
AW
3844This makes these internal functions technically not callable from
3845application code.
fa1804e9 3846
96b73e84
AW
3847** Functions for handling `scm_option' now no longer require an argument
3848indicating length of the `scm_t_option' array.
fa1804e9 3849
4a457691
AW
3850** Procedures-with-setters are now implemented using applicable structs
3851
3852From a user's perspective this doesn't mean very much. But if, for some
3853odd reason, you used the SCM_PROCEDURE_WITH_SETTER_P, SCM_PROCEDURE, or
3854SCM_SETTER macros, know that they're deprecated now. Also, scm_tc7_pws
3855is gone.
3856
3857** Remove old evaluator closures
3858
3859There used to be ranges of typecodes allocated to interpreted data
3860structures, but that it no longer the case, given that interpreted
3861procedure are now just regular VM closures. As a result, there is a
3862newly free tc3, and a number of removed macros. See the ChangeLog for
3863details.
3864
cf8ec359 3865** Primitive procedures are now VM trampoline procedures
4a457691
AW
3866
3867It used to be that there were something like 12 different typecodes
3868allocated to primitive procedures, each with its own calling convention.
3869Now there is only one, the gsubr. This may affect user code if you were
3870defining a procedure using scm_c_make_subr rather scm_c_make_gsubr. The
3871solution is to switch to use scm_c_make_gsubr. This solution works well
b3da54d1 3872both with the old 1.8 and with the current 1.9 branch.
4a457691 3873
cf8ec359
AW
3874Guile's old evaluator used to have special cases for applying "gsubrs",
3875primitive procedures with specified numbers of required, optional, and
3876rest arguments. Now, however, Guile represents gsubrs as normal VM
3877procedures, with appropriate bytecode to parse out the correct number of
3878arguments, including optional and rest arguments, and then with a
3879special bytecode to apply the gsubr.
3880
3881This allows primitive procedures to appear on the VM stack, allowing
3882them to be accurately counted in profiles. Also they now have more
3883debugging information attached to them -- their number of arguments, for
3884example. In addition, the VM can completely inline the application
3885mechanics, allowing for faster primitive calls.
3886
3887However there are some changes on the C level. There is no more
3888`scm_tc7_gsubr' or `scm_tcs_subrs' typecode for primitive procedures, as
3889they are just VM procedures. Likewise the macros `SCM_GSUBR_TYPE',
3890`SCM_GSUBR_MAKTYPE', `SCM_GSUBR_REQ', `SCM_GSUBR_OPT', and
3891`SCM_GSUBR_REST' are gone, as are `SCM_SUBR_META_INFO', `SCM_SUBR_PROPS'
3892`SCM_SET_SUBR_GENERIC_LOC', and `SCM_SUBR_ARITY_TO_TYPE'.
3893
3894Perhaps more significantly, `scm_c_make_subr',
3895`scm_c_make_subr_with_generic', `scm_c_define_subr', and
3896`scm_c_define_subr_with_generic'. They all operated on subr typecodes,
3897and there are no more subr typecodes. Use the scm_c_make_gsubr family
3898instead.
3899
3900Normal users of gsubrs should not be affected, though, as the
3901scm_c_make_gsubr family still is the correct way to create primitive
3902procedures.
3903
3904** Remove deprecated array C interfaces
3905
3906Removed the deprecated array functions `scm_i_arrayp',
3907`scm_i_array_ndim', `scm_i_array_mem', `scm_i_array_v',
3908`scm_i_array_base', `scm_i_array_dims', and the deprecated macros
3909`SCM_ARRAYP', `SCM_ARRAY_NDIM', `SCM_ARRAY_CONTP', `SCM_ARRAY_MEM',
3910`SCM_ARRAY_V', `SCM_ARRAY_BASE', and `SCM_ARRAY_DIMS'.
3911
3912** Remove unused snarf macros
3913
3914`SCM_DEFINE1', `SCM_PRIMITIVE_GENERIC_1', `SCM_PROC1, and `SCM_GPROC1'
3915are no more. Use SCM_DEFINE or SCM_PRIMITIVE_GENERIC instead.
3916
cf8ec359
AW
3917** New functions: `scm_call_n', `scm_c_run_hookn'
3918
3919`scm_call_n' applies to apply a function to an array of arguments.
3920`scm_c_run_hookn' runs a hook with an array of arguments.
3921
4a457691
AW
3922** Some SMOB types changed to have static typecodes
3923
3924Fluids, dynamic states, and hash tables used to be SMOB objects, but now
3925they have statically allocated tc7 typecodes.
3926
3927** Preparations for changing SMOB representation
3928
3929If things go right, we'll be changing the SMOB representation soon. To
3930that end, we did a lot of cleanups to calls to e.g. SCM_CELL_WORD_2(x) when
3931the code meant SCM_SMOB_DATA_2(x); user code will need similar changes
3932in the future. Code accessing SMOBs using SCM_CELL macros was never
3933correct, but until now things still worked. Users should be aware of
3934such changes.
fa1804e9 3935
cf8ec359
AW
3936** Changed invocation mechanics of applicable SMOBs
3937
3938Guile's old evaluator used to have special cases for applying SMOB
3939objects. Now, with the VM, when Guile sees a SMOB, it looks up a VM
3940trampoline procedure for it, and use the normal mechanics to apply the
3941trampoline. This simplifies procedure application in the normal,
3942non-SMOB case.
3943
3944The upshot is that the mechanics used to apply a SMOB are different from
39451.8. Descriptors no longer have `apply_0', `apply_1', `apply_2', and
3946`apply_3' functions, and the macros SCM_SMOB_APPLY_0 and friends are now
3947deprecated. Just use the scm_call_0 family of procedures.
3948
ef6b0e8d
AW
3949** Removed support shlibs for SRFIs 1, 4, 13, 14, and 60
3950
3951Though these SRFI support libraries did expose API, they encoded a
3952strange version string into their library names. That version was never
3953programmatically exported, so there was no way people could use the
3954libs.
3955
3956This was a fortunate oversight, as it allows us to remove the need for
3957extra, needless shared libraries --- the C support code for SRFIs 4, 13,
3958and 14 was already in core --- and allow us to incrementally return the
3959SRFI implementation to Scheme.
3960
96b73e84 3961** New C function: scm_module_public_interface
a4f1c77d 3962
96b73e84 3963This procedure corresponds to Scheme's `module-public-interface'.
24d6fae8 3964
4a457691
AW
3965** Undeprecate `scm_the_root_module ()'
3966
3967It's useful to be able to get the root module from C without doing a
3968full module lookup.
3969
e614d375
AW
3970** Inline vector allocation
3971
3972Instead of having vectors point out into the heap for their data, their
3973data is now allocated inline to the vector object itself. The same is
3974true for bytevectors, by default, though there is an indirection
3975available which should allow for making a bytevector from an existing
3976memory region.
3977
4a457691
AW
3978** New struct constructors that don't involve making lists
3979
3980`scm_c_make_struct' and `scm_c_make_structv' are new varargs and array
3981constructors, respectively, for structs. You might find them useful.
3982
3983** Stack refactor
3984
3985In Guile 1.8, there were debugging frames on the C stack. Now there is
3986no more need to explicitly mark the stack in this way, because Guile has
3987a VM stack that it knows how to walk, which simplifies the C API
3988considerably. See the ChangeLog for details; the relevant interface is
3989in libguile/stacks.h. The Scheme API has not been changed significantly.
3990
e614d375
AW
3991** Removal of Guile's primitive object system.
3992
3993There were a number of pieces in `objects.[ch]' that tried to be a
3994minimal object system, but were never documented, and were quickly
3995obseleted by GOOPS' merge into Guile proper. So `scm_make_class_object',
3996`scm_make_subclass_object', `scm_metaclass_standard', and like symbols
3997from objects.h are no more. In the very unlikely case in which these
3998were useful to you, we urge you to contact guile-devel.
3999
4000** No future.
4001
4002Actually the future is still in the state that it was, is, and ever
4003shall be, Amen, except that `futures.c' and `futures.h' are no longer a
4004part of it. These files were experimental, never compiled, and would be
4005better implemented in Scheme anyway. In the future, that is.
4006
4a457691
AW
4007** Deprecate trampolines
4008
4009There used to be C functions `scm_trampoline_0', `scm_trampoline_1', and
4010so on. The point was to do some precomputation on the type of the
4011procedure, then return a specialized "call" procedure. However this
4012optimization wasn't actually an optimization, so it is now deprecated.
4013Just use `scm_call_0', etc instead.
4014
18e90860
AW
4015** Deprecated `scm_badargsp'
4016
4017This function is unused in Guile, but was part of its API.
4018
5bb408cc
AW
4019** Better support for Lisp `nil'.
4020
4021The bit representation of `nil' has been tweaked so that it is now very
4022efficient to check e.g. if a value is equal to Scheme's end-of-list or
4023Lisp's nil. Additionally there are a heap of new, specific predicates
b390b008 4024like scm_is_null_or_nil.
5bb408cc 4025
139fa149
AW
4026** Better integration of Lisp `nil'.
4027
4028`scm_is_boolean', `scm_is_false', and `scm_is_null' all return true now
4029for Lisp's `nil'. This shouldn't affect any Scheme code at this point,
4030but when we start to integrate more with Emacs, it is possible that we
4031break code that assumes that, for example, `(not x)' implies that `x' is
4032`eq?' to `#f'. This is not a common assumption. Refactoring affected
4033code to rely on properties instead of identities will improve code
4034correctness. See "Nil" in the manual, for more details.
4035
e614d375
AW
4036** Support for static allocation of strings, symbols, and subrs.
4037
4038Calls to snarfing CPP macros like SCM_DEFINE macro will now allocate
4039much of their associated data as static variables, reducing Guile's
4040memory footprint.
4041
93617170
LC
4042** `scm_stat' has an additional argument, `exception_on_error'
4043** `scm_primitive_load_path' has an additional argument `exception_on_not_found'
24d6fae8 4044
f1ce9199
LC
4045** `scm_set_port_seek' and `scm_set_port_truncate' use the `scm_t_off' type
4046
4047Previously they would use the `off_t' type, which is fragile since its
4048definition depends on the application's value for `_FILE_OFFSET_BITS'.
4049
ba4c43dc
LC
4050** The `long_long' C type, deprecated in 1.8, has been removed
4051
86d88a22
AW
4052** Removed deprecated uniform array procedures: scm_make_uve,
4053 scm_array_prototype, scm_list_to_uniform_array,
4054 scm_dimensions_to_uniform_array, scm_make_ra, scm_shap2ra, scm_cvref,
4055 scm_ra_set_contp, scm_aind, scm_raprin1
4056
4057These functions have been deprecated since early 2005.
4058
a4f1c77d 4059* Changes to the distribution
6caac03c 4060
53befeb7
NJ
4061** Guile's license is now LGPLv3+
4062
4063In other words the GNU Lesser General Public License, version 3 or
4064later (at the discretion of each person that chooses to redistribute
4065part of Guile).
4066
51cb0cca
AW
4067** AM_SILENT_RULES
4068
4069Guile's build is visually quieter, due to the use of Automake 1.11's
4070AM_SILENT_RULES. Build as `make V=1' to see all of the output.
4071
56664c08
AW
4072** GOOPS documentation folded into Guile reference manual
4073
4074GOOPS, Guile's object system, used to be documented in separate manuals.
4075This content is now included in Guile's manual directly.
4076
96b73e84 4077** `guile-config' will be deprecated in favor of `pkg-config'
8a9faebc 4078
96b73e84 4079`guile-config' has been rewritten to get its information from
93617170 4080`pkg-config', so this should be a transparent change. Note however that
96b73e84
AW
4081guile.m4 has yet to be modified to call pkg-config instead of
4082guile-config.
2e77f720 4083
54dd0ca5
LC
4084** Guile now provides `guile-2.0.pc' instead of `guile-1.8.pc'
4085
4086Programs that use `pkg-config' to find Guile or one of its Autoconf
4087macros should now require `guile-2.0' instead of `guile-1.8'.
4088
96b73e84 4089** New installation directory: $(pkglibdir)/1.9/ccache
62560650 4090
96b73e84
AW
4091If $(libdir) is /usr/lib, for example, Guile will install its .go files
4092to /usr/lib/guile/1.9/ccache. These files are architecture-specific.
89bc270d 4093
b0abbaa7
AW
4094** Parallel installability fixes
4095
4096Guile now installs its header files to a effective-version-specific
4097directory, and includes the effective version (e.g. 2.0) in the library
4098name (e.g. libguile-2.0.so).
4099
4100This change should be transparent to users, who should detect Guile via
4101the guile.m4 macro, or the guile-2.0.pc pkg-config file. It will allow
4102parallel installs for multiple versions of Guile development
4103environments.
4104
b0217d17
AW
4105** Dynamically loadable extensions may be placed in a Guile-specific path
4106
4107Before, Guile only searched the system library paths for extensions
4108(e.g. /usr/lib), which meant that the names of Guile extensions had to
4109be globally unique. Installing them to a Guile-specific extensions
66ad445d 4110directory is cleaner. Use `pkg-config --variable=extensiondir
b0217d17
AW
4111guile-2.0' to get the location of the extensions directory.
4112
51cb0cca
AW
4113** User Scheme code may be placed in a version-specific path
4114
4115Before, there was only one way to install user Scheme code to a
4116version-specific Guile directory: install to Guile's own path,
4117e.g. /usr/share/guile/2.0. The site directory,
4118e.g. /usr/share/guile/site, was unversioned. This has been changed to
4119add a version-specific site directory, e.g. /usr/share/guile/site/2.0,
4120searched before the global site directory.
4121
7b96f3dd
LC
4122** New dependency: libgc
4123
4124See http://www.hpl.hp.com/personal/Hans_Boehm/gc/, for more information.
4125
4126** New dependency: GNU libunistring
32e29e24 4127
108e18b1 4128See http://www.gnu.org/software/libunistring/, for more information. Our
7b96f3dd 4129Unicode support uses routines from libunistring.
32e29e24 4130
dbd9532e
LC
4131** New dependency: libffi
4132
4133See http://sourceware.org/libffi/, for more information.
4134
a4f1c77d 4135
dc686d7b 4136\f
9957b1c7
LC
4137Changes in 1.8.8 (since 1.8.7)
4138
4139* Bugs fixed
4140
4141** Fix possible buffer overruns when parsing numbers
c15d8e6a 4142** Avoid clash with system setjmp/longjmp on IA64
1ff4da65 4143** Fix `wrong type arg' exceptions with IPv6 addresses
9957b1c7
LC
4144
4145\f
dc686d7b
NJ
4146Changes in 1.8.7 (since 1.8.6)
4147
922d417b
JG
4148* New modules (see the manual for details)
4149
4150** `(srfi srfi-98)', an interface to access environment variables
4151
dc686d7b
NJ
4152* Bugs fixed
4153
f5851b89 4154** Fix compilation with `--disable-deprecated'
dc686d7b 4155** Fix %fast-slot-ref/set!, to avoid possible segmentation fault
cbee5075 4156** Fix MinGW build problem caused by HAVE_STRUCT_TIMESPEC confusion
ab878b0f 4157** Fix build problem when scm_t_timespec is different from struct timespec
95a040cd 4158** Fix build when compiled with -Wundef -Werror
1bcf7993 4159** More build fixes for `alphaev56-dec-osf5.1b' (Tru64)
5374ec9c 4160** Build fixes for `powerpc-ibm-aix5.3.0.0' (AIX 5.3)
5c006c3f
LC
4161** With GCC, always compile with `-mieee' on `alpha*' and `sh*'
4162** Better diagnose broken `(strftime "%z" ...)' in `time.test' (bug #24130)
fc76c08d 4163** Fix parsing of SRFI-88/postfix keywords longer than 128 characters
40f89215 4164** Fix reading of complex numbers where both parts are inexact decimals
d41668fa 4165
ad5f5ada
NJ
4166** Allow @ macro to work with (ice-9 syncase)
4167
4168Previously, use of the @ macro in a module whose code is being
4169transformed by (ice-9 syncase) would cause an "Invalid syntax" error.
4170Now it works as you would expect (giving the value of the specified
4171module binding).
4172
05588a1a
LC
4173** Have `scm_take_locale_symbol ()' return an interned symbol (bug #25865)
4174
d41668fa 4175\f
8c40b75d
LC
4176Changes in 1.8.6 (since 1.8.5)
4177
071bb6a8
LC
4178* New features (see the manual for details)
4179
4180** New convenience function `scm_c_symbol_length ()'
4181
091baf9e
NJ
4182** Single stepping through code from Emacs
4183
4184When you use GDS to evaluate Scheme code from Emacs, you can now use
4185`C-u' to indicate that you want to single step through that code. See
4186`Evaluating Scheme Code' in the manual for more details.
4187
9e4db0ef
LC
4188** New "guile(1)" man page!
4189
242ebeaf
LC
4190* Changes to the distribution
4191
4192** Automake's `AM_MAINTAINER_MODE' is no longer used
4193
4194Thus, the `--enable-maintainer-mode' configure option is no longer
4195available: Guile is now always configured in "maintainer mode".
4196
e0063477
LC
4197** `ChangeLog' files are no longer updated
4198
4199Instead, changes are detailed in the version control system's logs. See
4200the top-level `ChangeLog' files for details.
4201
4202
8c40b75d
LC
4203* Bugs fixed
4204
fd2b17b9 4205** `symbol->string' now returns a read-only string, as per R5RS
c6333102 4206** Fix incorrect handling of the FLAGS argument of `fold-matches'
589d9eb8 4207** `guile-config link' now prints `-L$libdir' before `-lguile'
4a1db3a9 4208** Fix memory corruption involving GOOPS' `class-redefinition'
191e7165 4209** Fix possible deadlock in `mutex-lock'
95c6523b 4210** Fix build issue on Tru64 and ia64-hp-hpux11.23 (`SCM_UNPACK' macro)
4696a666 4211** Fix build issue on mips, mipsel, powerpc and ia64 (stack direction)
450be18d 4212** Fix build issue on hppa2.0w-hp-hpux11.11 (`dirent64' and `readdir64_r')
88cefbc7 4213** Fix build issue on i386-unknown-freebsd7.0 ("break strict-aliasing rules")
76dae881 4214** Fix misleading output from `(help rationalize)'
5ea8e76e 4215** Fix build failure on Debian hppa architecture (bad stack growth detection)
1dd79792 4216** Fix `gcd' when called with a single, negative argument.
d8b6e191 4217** Fix `Stack overflow' errors seen when building on some platforms
ccf1ca4a
LC
4218** Fix bug when `scm_with_guile ()' was called several times from the
4219 same thread
76350432
LC
4220** The handler of SRFI-34 `with-exception-handler' is now invoked in the
4221 dynamic environment of the call to `raise'
cb823e63 4222** Fix potential deadlock in `make-struct'
691343ea 4223** Fix compilation problem with libltdl from Libtool 2.2.x
3ae3166b 4224** Fix sloppy bound checking in `string-{ref,set!}' with the empty string
6eadcdab 4225
8c40b75d 4226\f
5305df84
LC
4227Changes in 1.8.5 (since 1.8.4)
4228
4b824aae
LC
4229* Infrastructure changes
4230
4231** Guile repository switched from CVS to Git
4232
4233The new repository can be accessed using
4234"git-clone git://git.sv.gnu.org/guile.git", or can be browsed on-line at
4235http://git.sv.gnu.org/gitweb/?p=guile.git . See `README' for details.
4236
92826dd0
LC
4237** Add support for `pkg-config'
4238
4239See "Autoconf Support" in the manual for details.
4240
189681f5
LC
4241* New modules (see the manual for details)
4242
4243** `(srfi srfi-88)'
4244
ef4cbc08
LC
4245* New features (see the manual for details)
4246
4247** New `postfix' read option, for SRFI-88 keyword syntax
f5c2af4b 4248** Some I/O primitives have been inlined, which improves I/O performance
b20ef3a6 4249** New object-based traps infrastructure
ef4cbc08 4250
b20ef3a6
NJ
4251This is a GOOPS-based infrastructure that builds on Guile's low-level
4252evaluator trap calls and facilitates the development of debugging
4253features like single-stepping, breakpoints, tracing and profiling.
4254See the `Traps' node of the manual for details.
4255
4256** New support for working on Guile code from within Emacs
4257
4258Guile now incorporates the `GDS' library (previously distributed
4259separately) for working on Guile code from within Emacs. See the
4260`Using Guile In Emacs' node of the manual for details.
4261
5305df84
LC
4262* Bugs fixed
4263
e27d2495
LC
4264** `scm_add_slot ()' no longer segfaults (fixes bug #22369)
4265** Fixed `(ice-9 match)' for patterns like `((_ ...) ...)'
4266
4267Previously, expressions like `(match '((foo) (bar)) (((_ ...) ...) #t))'
4268would trigger an unbound variable error for `match:andmap'.
4269
62c5382b
LC
4270** `(oop goops describe)' now properly provides the `describe' feature
4271** Fixed `args-fold' from `(srfi srfi-37)'
4272
4273Previously, parsing short option names of argument-less options would
4274lead to a stack overflow.
4275
816e3edf 4276** `(srfi srfi-35)' is now visible through `cond-expand'
61b6542a 4277** Fixed type-checking for the second argument of `eval'
0fb11ae4 4278** Fixed type-checking for SRFI-1 `partition'
f1c212b1
LC
4279** Fixed `struct-ref' and `struct-set!' on "light structs"
4280** Honor struct field access rights in GOOPS
be10cba8 4281** Changed the storage strategy of source properties, which fixes a deadlock
979eade6 4282** Allow compilation of Guile-using programs in C99 mode with GCC 4.3 and later
bfb64eb4 4283** Fixed build issue for GNU/Linux on IA64
fa80e280 4284** Fixed build issues on NetBSD 1.6
a2c25234 4285** Fixed build issue on Solaris 2.10 x86_64
3f520967 4286** Fixed build issue with DEC/Compaq/HP's compiler
c2ad98ad
LC
4287** Fixed `scm_from_complex_double' build issue on FreeBSD
4288** Fixed `alloca' build issue on FreeBSD 6
a7286720 4289** Removed use of non-portable makefile constructs
535b3592 4290** Fixed shadowing of libc's <random.h> on Tru64, which broke compilation
eedcb08a 4291** Make sure all tests honor `$TMPDIR'
5305df84
LC
4292
4293\f
d41668fa
LC
4294Changes in 1.8.4 (since 1.8.3)
4295
4296* Bugs fixed
4297
4298** CR (ASCII 0x0d) is (again) recognized as a token delimiter by the reader
6e14de7d
NJ
4299** Fixed a segmentation fault which occurred when displaying the
4300backtrace of a stack with a promise object (made by `delay') in it.
7d1fc872 4301** Make `accept' leave guile mode while blocking
693758d5 4302** `scm_c_read ()' and `scm_c_write ()' now type-check their port argument
378cc645 4303** Fixed a build problem on AIX (use of func_data identifier)
15bd90ea
NJ
4304** Fixed a segmentation fault which occurred when hashx-ref or hashx-set! was
4305called with an associator proc that returns neither a pair nor #f.
3ac8359a 4306** Secondary threads now always return a valid module for (current-module).
d05bcb2e
NJ
4307** Avoid MacOS build problems caused by incorrect combination of "64"
4308system and library calls.
9a6fac59 4309** `guile-snarf' now honors `$TMPDIR'
25a640ca 4310** `guile-config compile' now reports CPPFLAGS used at compile-time
7f74cf9a 4311** Fixed build with Sun Studio (Solaris 9)
4a19ed04
NJ
4312** Fixed wrong-type-arg errors when creating zero length SRFI-4
4313uniform vectors on AIX.
86a597f8 4314** Fixed a deadlock that occurs upon GC with multiple threads.
4b26c03e 4315** Fixed compile problem with GCC on Solaris and AIX (use of _Complex_I)
d4a00708 4316** Fixed autotool-derived build problems on AIX 6.1.
9a6fac59 4317** Fixed NetBSD/alpha support
b226295a 4318** Fixed MacOS build problem caused by use of rl_get_keymap(_name)
7d1fc872
LC
4319
4320* New modules (see the manual for details)
4321
4322** `(srfi srfi-69)'
d41668fa 4323
b226295a
NJ
4324* Documentation fixes and improvements
4325
4326** Removed premature breakpoint documentation
4327
4328The features described are not available in the series of 1.8.x
4329releases, so the documentation was misleading and has been removed.
4330
4331** More about Guile's default *random-state* variable
4332
4333** GOOPS: more about how to use `next-method'
4334
d3cf93bc
NJ
4335* Changes to the distribution
4336
4337** Corrected a few files that referred incorrectly to the old GPL + special exception licence
4338
4339In fact Guile since 1.8.0 has been licensed with the GNU Lesser
4340General Public License, and the few incorrect files have now been
4341fixed to agree with the rest of the Guile distribution.
4342
5e42b8e7
NJ
4343** Removed unnecessary extra copies of COPYING*
4344
4345The distribution now contains a single COPYING.LESSER at its top level.
4346
a4f1c77d 4347\f
d4c38221
LC
4348Changes in 1.8.3 (since 1.8.2)
4349
4350* New modules (see the manual for details)
4351
f50ca8da 4352** `(srfi srfi-35)'
d4c38221
LC
4353** `(srfi srfi-37)'
4354
e08f3f7a
LC
4355* Bugs fixed
4356
dc061a74 4357** The `(ice-9 slib)' module now works as expected
e08f3f7a 4358** Expressions like "(set! 'x #t)" no longer yield a crash
d7c0c26d 4359** Warnings about duplicate bindings now go to stderr
1ac5fb45 4360** A memory leak in `make-socket-address' was fixed
f43f3620 4361** Alignment issues (e.g., on SPARC) in network routines were fixed
29776e85 4362** A threading issue that showed up at least on NetBSD was fixed
66302618 4363** Build problems on Solaris and IRIX fixed
e08f3f7a 4364
1fdd8ffa
LC
4365* Implementation improvements
4366
7ff6c169 4367** The reader is now faster, which reduces startup time
1fdd8ffa
LC
4368** Procedures returned by `record-accessor' and `record-modifier' are faster
4369
d4c38221 4370\f
45c0ff10
KR
4371Changes in 1.8.2 (since 1.8.1):
4372
4373* New procedures (see the manual for details)
4374
4375** set-program-arguments
b3aa4626 4376** make-vtable
45c0ff10 4377
9320e933
LC
4378* Incompatible changes
4379
4380** The body of a top-level `define' no longer sees the binding being created
4381
4382In a top-level `define', the binding being created is no longer visible
4383from the `define' body. This breaks code like
4384"(define foo (begin (set! foo 1) (+ foo 1)))", where `foo' is now
4385unbound in the body. However, such code was not R5RS-compliant anyway,
4386per Section 5.2.1.
4387
45c0ff10
KR
4388* Bugs fixed
4389
4390** Fractions were not `equal?' if stored in unreduced form.
4391(A subtle problem, since printing a value reduced it, making it work.)
4392** srfi-60 `copy-bit' failed on 64-bit systems
4393** "guile --use-srfi" option at the REPL can replace core functions
4394(Programs run with that option were ok, but in the interactive REPL
4395the core bindings got priority, preventing SRFI replacements or
4396extensions.)
4397** `regexp-exec' doesn't abort() on #\nul in the input or bad flags arg
df449722 4398** `kill' on mingw throws an error for a PID other than oneself
45c0ff10
KR
4399** Procedure names are attached to procedure-with-setters
4400** Array read syntax works with negative lower bound
4401** `array-in-bounds?' fix if an array has different lower bounds on each index
4402** `*' returns exact 0 for "(* inexact 0)"
4403This follows what it always did for "(* 0 inexact)".
c122500a 4404** SRFI-19: Value returned by `(current-time time-process)' was incorrect
0867f7ba 4405** SRFI-19: `date->julian-day' did not account for timezone offset
a1ef7406 4406** `ttyname' no longer crashes when passed a non-tty argument
27782696 4407** `inet-ntop' no longer crashes on SPARC when passed an `AF_INET' address
0867f7ba 4408** Small memory leaks have been fixed in `make-fluid' and `add-history'
b1f57ea4 4409** GOOPS: Fixed a bug in `method-more-specific?'
45c0ff10 4410** Build problems on Solaris fixed
df449722
LC
4411** Build problems on HP-UX IA64 fixed
4412** Build problems on MinGW fixed
45c0ff10
KR
4413
4414\f
a4f1c77d
KR
4415Changes in 1.8.1 (since 1.8.0):
4416
8ab3d8a0 4417* LFS functions are now used to access 64-bit files on 32-bit systems.
a4f1c77d 4418
8ab3d8a0 4419* New procedures (see the manual for details)
4f416616 4420
8ab3d8a0
KR
4421** primitive-_exit - [Scheme] the-root-module
4422** scm_primitive__exit - [C]
4423** make-completion-function - [Scheme] (ice-9 readline)
4424** scm_c_locale_stringn_to_number - [C]
4425** scm_srfi1_append_reverse [C]
4426** scm_srfi1_append_reverse_x [C]
4427** scm_log - [C]
4428** scm_log10 - [C]
4429** scm_exp - [C]
4430** scm_sqrt - [C]
4431
4432* Bugs fixed
4433
4434** Build problems have been fixed on MacOS, SunOS, and QNX.
af4f8612 4435
b3aa4626
KR
4436** `strftime' fix sign of %z timezone offset.
4437
534cd148 4438** A one-dimensional array can now be 'equal?' to a vector.
8ab3d8a0 4439
ad97642e 4440** Structures, records, and SRFI-9 records can now be compared with `equal?'.
af4f8612 4441
8ab3d8a0
KR
4442** SRFI-14 standard char sets are recomputed upon a successful `setlocale'.
4443
4444** `record-accessor' and `record-modifier' now have strict type checks.
4445
4446Record accessor and modifier procedures now throw an error if the
4447record type of the record they're given is not the type expected.
4448(Previously accessors returned #f and modifiers silently did nothing).
4449
4450** It is now OK to use both autoload and use-modules on a given module.
4451
4452** `apply' checks the number of arguments more carefully on "0 or 1" funcs.
4453
4454Previously there was no checking on primatives like make-vector that
4455accept "one or two" arguments. Now there is.
4456
4457** The srfi-1 assoc function now calls its equality predicate properly.
4458
4459Previously srfi-1 assoc would call the equality predicate with the key
4460last. According to the SRFI, the key should be first.
4461
4462** A bug in n-par-for-each and n-for-each-par-map has been fixed.
4463
4464** The array-set! procedure no longer segfaults when given a bit vector.
4465
4466** Bugs in make-shared-array have been fixed.
4467
4468** string<? and friends now follow char<? etc order on 8-bit chars.
4469
4470** The format procedure now handles inf and nan values for ~f correctly.
4471
4472** exact->inexact should no longer overflow when given certain large fractions.
4473
4474** srfi-9 accessor and modifier procedures now have strict record type checks.
a4f1c77d 4475
8ab3d8a0 4476This matches the srfi-9 specification.
a4f1c77d 4477
8ab3d8a0 4478** (ice-9 ftw) procedures won't ignore different files with same inode number.
a4f1c77d 4479
8ab3d8a0
KR
4480Previously the (ice-9 ftw) procedures would ignore any file that had
4481the same inode number as a file they had already seen, even if that
4482file was on a different device.
4f416616
KR
4483
4484\f
8ab3d8a0 4485Changes in 1.8.0 (changes since the 1.6.x series):
ee0c7345 4486
4e250ded
MV
4487* Changes to the distribution
4488
eff2965e
MV
4489** Guile is now licensed with the GNU Lesser General Public License.
4490
77e51fd6
MV
4491** The manual is now licensed with the GNU Free Documentation License.
4492
e2d0a649
RB
4493** Guile now requires GNU MP (http://swox.com/gmp).
4494
4495Guile now uses the GNU MP library for arbitrary precision arithmetic.
e2d0a649 4496
5ebbe4ef
RB
4497** Guile now has separate private and public configuration headers.
4498
b0d10ba6
MV
4499That is, things like HAVE_STRING_H no longer leak from Guile's
4500headers.
5ebbe4ef
RB
4501
4502** Guile now provides and uses an "effective" version number.
b2cbe8d8
RB
4503
4504Guile now provides scm_effective_version and effective-version
4505functions which return the "effective" version number. This is just
4506the normal full version string without the final micro-version number,
a4f1c77d 4507so the current effective-version is "1.8". The effective version
b2cbe8d8
RB
4508should remain unchanged during a stable series, and should be used for
4509items like the versioned share directory name
a4f1c77d 4510i.e. /usr/share/guile/1.8.
b2cbe8d8
RB
4511
4512Providing an unchanging version number during a stable release for
4513things like the versioned share directory can be particularly
4514important for Guile "add-on" packages, since it provides a directory
4515that they can install to that won't be changed out from under them
4516with each micro release during a stable series.
4517
8d54e73a 4518** Thread implementation has changed.
f0b4d944
MV
4519
4520When you configure "--with-threads=null", you will get the usual
4521threading API (call-with-new-thread, make-mutex, etc), but you can't
429d88d4
MV
4522actually create new threads. Also, "--with-threads=no" is now
4523equivalent to "--with-threads=null". This means that the thread API
4524is always present, although you might not be able to create new
4525threads.
f0b4d944 4526
8d54e73a
MV
4527When you configure "--with-threads=pthreads" or "--with-threads=yes",
4528you will get threads that are implemented with the portable POSIX
4529threads. These threads can run concurrently (unlike the previous
4530"coop" thread implementation), but need to cooperate for things like
a558cc63 4531the GC.
f0b4d944 4532
8d54e73a
MV
4533The default is "pthreads", unless your platform doesn't have pthreads,
4534in which case "null" threads are used.
2902a459 4535
a6d75e53
MV
4536See the manual for details, nodes "Initialization", "Multi-Threading",
4537"Blocking", and others.
a558cc63 4538
f74bdbd3
MV
4539** There is the new notion of 'discouraged' features.
4540
4541This is a milder form of deprecation.
4542
4543Things that are discouraged should not be used in new code, but it is
4544OK to leave them in old code for now. When a discouraged feature is
4545used, no warning message is printed like there is for 'deprecated'
4546features. Also, things that are merely discouraged are nevertheless
4547implemented efficiently, while deprecated features can be very slow.
4548
4549You can omit discouraged features from libguile by configuring it with
4550the '--disable-discouraged' option.
4551
4552** Deprecation warnings can be controlled at run-time.
4553
4554(debug-enable 'warn-deprecated) switches them on and (debug-disable
4555'warn-deprecated) switches them off.
4556
0f24e75b 4557** Support for SRFI 61, extended cond syntax for multiple values has
a81d0de1
MV
4558 been added.
4559
4560This SRFI is always available.
4561
f7fb2f39 4562** Support for require-extension, SRFI-55, has been added.
9a5fc8c2 4563
f7fb2f39
RB
4564The SRFI-55 special form `require-extension' has been added. It is
4565available at startup, and provides a portable way to load Scheme
4566extensions. SRFI-55 only requires support for one type of extension,
4567"srfi"; so a set of SRFIs may be loaded via (require-extension (srfi 1
456813 14)).
4569
4570** New module (srfi srfi-26) provides support for `cut' and `cute'.
4571
4572The (srfi srfi-26) module is an implementation of SRFI-26 which
4573provides the `cut' and `cute' syntax. These may be used to specialize
4574parameters without currying.
9a5fc8c2 4575
f5d54eb7
RB
4576** New module (srfi srfi-31)
4577
4578This is an implementation of SRFI-31 which provides a special form
4579`rec' for recursive evaluation.
4580
7b1574ed
MV
4581** The modules (srfi srfi-13), (srfi srfi-14) and (srfi srfi-4) have
4582 been merged with the core, making their functionality always
4583 available.
c5080b51 4584
ce7c0293
MV
4585The modules are still available, tho, and you could use them together
4586with a renaming import, for example.
c5080b51 4587
6191ccec 4588** Guile no longer includes its own version of libltdl.
4e250ded 4589
6191ccec 4590The official version is good enough now.
4e250ded 4591
ae7ded56
MV
4592** The --enable-htmldoc option has been removed from 'configure'.
4593
4594Support for translating the documentation into HTML is now always
4595provided. Use 'make html'.
4596
0f24e75b
MV
4597** New module (ice-9 serialize):
4598
4599(serialize FORM1 ...) and (parallelize FORM1 ...) are useful when you
4600don't trust the thread safety of most of your program, but where you
4601have some section(s) of code which you consider can run in parallel to
4602other sections. See ice-9/serialize.scm for more information.
4603
c34e5780
MV
4604** The configure option '--disable-arrays' has been removed.
4605
4606Support for arrays and uniform numeric arrays is now always included
4607in Guile.
4608
328dc9a3 4609* Changes to the stand-alone interpreter
f12ef3fd 4610
3ece39d6
MV
4611** New command line option `-L'.
4612
4613This option adds a directory to the front of the load path.
4614
f12ef3fd
MV
4615** New command line option `--no-debug'.
4616
4617Specifying `--no-debug' on the command line will keep the debugging
4618evaluator turned off, even for interactive sessions.
4619
4620** User-init file ~/.guile is now loaded with the debugging evaluator.
4621
4622Previously, the normal evaluator would have been used. Using the
4623debugging evaluator gives better error messages.
4624
aff7e166
MV
4625** The '-e' option now 'read's its argument.
4626
4627This is to allow the new '(@ MODULE-NAME VARIABLE-NAME)' construct to
4628be used with '-e'. For example, you can now write a script like
4629
4630 #! /bin/sh
4631 exec guile -e '(@ (demo) main)' -s "$0" "$@"
4632 !#
4633
4634 (define-module (demo)
4635 :export (main))
4636
4637 (define (main args)
4638 (format #t "Demo: ~a~%" args))
4639
4640
f12ef3fd
MV
4641* Changes to Scheme functions and syntax
4642
930888e8
MV
4643** Guardians have changed back to their original semantics
4644
4645Guardians now behave like described in the paper by Dybvig et al. In
4646particular, they no longer make guarantees about the order in which
4647they return objects, and they can no longer be greedy.
4648
4649They no longer drop cyclic data structures.
4650
4651The C function scm_make_guardian has been changed incompatibly and no
4652longer takes the 'greedy_p' argument.
4653
87bdbdbc
MV
4654** New function hashx-remove!
4655
4656This function completes the set of 'hashx' functions.
4657
a558cc63
MV
4658** The concept of dynamic roots has been factored into continuation
4659 barriers and dynamic states.
4660
4661Each thread has a current dynamic state that carries the values of the
4662fluids. You can create and copy dynamic states and use them as the
4663second argument for 'eval'. See "Fluids and Dynamic States" in the
4664manual.
4665
4666To restrict the influence that captured continuations can have on the
4667control flow, you can errect continuation barriers. See "Continuation
4668Barriers" in the manual.
4669
4670The function call-with-dynamic-root now essentially temporarily
4671installs a new dynamic state and errects a continuation barrier.
4672
a2b6a0e7
MV
4673** The default load path no longer includes "." at the end.
4674
4675Automatically loading modules from the current directory should not
4676happen by default. If you want to allow it in a more controlled
4677manner, set the environment variable GUILE_LOAD_PATH or the Scheme
4678variable %load-path.
4679
7b1574ed
MV
4680** The uniform vector and array support has been overhauled.
4681
4682It now complies with SRFI-4 and the weird prototype based uniform
4683array creation has been deprecated. See the manual for more details.
4684
d233b123
MV
4685Some non-compatible changes have been made:
4686 - characters can no longer be stored into byte arrays.
0f24e75b
MV
4687 - strings and bit vectors are no longer considered to be uniform numeric
4688 vectors.
3167d5e4
MV
4689 - array-rank throws an error for non-arrays instead of returning zero.
4690 - array-ref does no longer accept non-arrays when no indices are given.
d233b123
MV
4691
4692There is the new notion of 'generalized vectors' and corresponding
4693procedures like 'generalized-vector-ref'. Generalized vectors include
c34e5780 4694strings, bitvectors, ordinary vectors, and uniform numeric vectors.
d233b123 4695
a558cc63
MV
4696Arrays use generalized vectors as their storage, so that you still
4697have arrays of characters, bits, etc. However, uniform-array-read!
4698and uniform-array-write can no longer read/write strings and
4699bitvectors.
bb9f50ae 4700
ce7c0293
MV
4701** There is now support for copy-on-write substrings, mutation-sharing
4702 substrings and read-only strings.
3ff9283d 4703
ce7c0293
MV
4704Three new procedures are related to this: substring/shared,
4705substring/copy, and substring/read-only. See the manual for more
4706information.
4707
6a1d27ea
MV
4708** Backtraces will now highlight the value that caused the error.
4709
4710By default, these values are enclosed in "{...}", such as in this
4711example:
4712
4713 guile> (car 'a)
4714
4715 Backtrace:
4716 In current input:
4717 1: 0* [car {a}]
4718
4719 <unnamed port>:1:1: In procedure car in expression (car (quote a)):
4720 <unnamed port>:1:1: Wrong type (expecting pair): a
4721 ABORT: (wrong-type-arg)
4722
4723The prefix and suffix used for highlighting can be set via the two new
4724printer options 'highlight-prefix' and 'highlight-suffix'. For
4725example, putting this into ~/.guile will output the bad value in bold
4726on an ANSI terminal:
4727
4728 (print-set! highlight-prefix "\x1b[1m")
4729 (print-set! highlight-suffix "\x1b[22m")
4730
4731
8dbafacd
MV
4732** 'gettext' support for internationalization has been added.
4733
4734See the manual for details.
4735
aff7e166
MV
4736** New syntax '@' and '@@':
4737
4738You can now directly refer to variables exported from a module by
4739writing
4740
4741 (@ MODULE-NAME VARIABLE-NAME)
4742
4743For example (@ (ice-9 pretty-print) pretty-print) will directly access
4744the pretty-print variable exported from the (ice-9 pretty-print)
4745module. You don't need to 'use' that module first. You can also use
b0d10ba6 4746'@' as a target of 'set!', as in (set! (@ mod var) val).
aff7e166
MV
4747
4748The related syntax (@@ MODULE-NAME VARIABLE-NAME) works just like '@',
4749but it can also access variables that have not been exported. It is
4750intended only for kluges and temporary fixes and for debugging, not
4751for ordinary code.
4752
aef0bdb4
MV
4753** Keyword syntax has been made more disciplined.
4754
4755Previously, the name of a keyword was read as a 'token' but printed as
4756a symbol. Now, it is read as a general Scheme datum which must be a
4757symbol.
4758
4759Previously:
4760
4761 guile> #:12
4762 #:#{12}#
4763 guile> #:#{12}#
4764 #:#{\#{12}\#}#
4765 guile> #:(a b c)
4766 #:#{}#
4767 ERROR: In expression (a b c):
4768 Unbound variable: a
4769 guile> #: foo
4770 #:#{}#
4771 ERROR: Unbound variable: foo
4772
4773Now:
4774
4775 guile> #:12
4776 ERROR: Wrong type (expecting symbol): 12
4777 guile> #:#{12}#
4778 #:#{12}#
4779 guile> #:(a b c)
4780 ERROR: Wrong type (expecting symbol): (a b c)
4781 guile> #: foo
4782 #:foo
4783
227eafdb
MV
4784** The printing of symbols that might look like keywords can be
4785 controlled.
4786
4787The new printer option 'quote-keywordish-symbols' controls how symbols
4788are printed that have a colon as their first or last character. The
4789default now is to only quote a symbol with #{...}# when the read
4790option 'keywords' is not '#f'. Thus:
4791
4792 guile> (define foo (string->symbol ":foo"))
4793 guile> (read-set! keywords #f)
4794 guile> foo
4795 :foo
4796 guile> (read-set! keywords 'prefix)
4797 guile> foo
4798 #{:foo}#
4799 guile> (print-set! quote-keywordish-symbols #f)
4800 guile> foo
4801 :foo
4802
1363e3e7
KR
4803** 'while' now provides 'break' and 'continue'
4804
4805break and continue were previously bound in a while loop, but not
4806documented, and continue didn't quite work properly. The undocumented
4807parameter to break which gave a return value for the while has been
4808dropped.
4809
570b5b14
MV
4810** 'call-with-current-continuation' is now also available under the name
4811 'call/cc'.
4812
b0d10ba6 4813** The module system now checks for duplicate bindings.
7b07e5ef 4814
fe6ee052
MD
4815The module system now can check for name conflicts among imported
4816bindings.
f595ccfe 4817
b0d10ba6 4818The behavior can be controlled by specifying one or more 'duplicates'
fe6ee052
MD
4819handlers. For example, to make Guile return an error for every name
4820collision, write:
7b07e5ef
MD
4821
4822(define-module (foo)
4823 :use-module (bar)
4824 :use-module (baz)
fe6ee052 4825 :duplicates check)
f595ccfe 4826
fe6ee052
MD
4827The new default behavior of the module system when a name collision
4828has been detected is to
4829
4830 1. Give priority to bindings marked as a replacement.
6496a663 4831 2. Issue a warning (different warning if overriding core binding).
fe6ee052
MD
4832 3. Give priority to the last encountered binding (this corresponds to
4833 the old behavior).
4834
4835If you want the old behavior back without replacements or warnings you
4836can add the line:
f595ccfe 4837
70a9dc9c 4838 (default-duplicate-binding-handler 'last)
7b07e5ef 4839
fe6ee052 4840to your .guile init file.
7b07e5ef 4841
f595ccfe
MD
4842** New define-module option: :replace
4843
4844:replace works as :export, but, in addition, marks the binding as a
4845replacement.
4846
4847A typical example is `format' in (ice-9 format) which is a replacement
4848for the core binding `format'.
7b07e5ef 4849
70da0033
MD
4850** Adding prefixes to imported bindings in the module system
4851
4852There is now a new :use-module option :prefix. It can be used to add
4853a prefix to all imported bindings.
4854
4855 (define-module (foo)
4856 :use-module ((bar) :prefix bar:))
4857
4858will import all bindings exported from bar, but rename them by adding
4859the prefix `bar:'.
4860
b0d10ba6
MV
4861** Conflicting generic functions can be automatically merged.
4862
4863When two imported bindings conflict and they are both generic
4864functions, the two functions can now be merged automatically. This is
4865activated with the 'duplicates' handler 'merge-generics'.
4866
b2cbe8d8
RB
4867** New function: effective-version
4868
4869Returns the "effective" version number. This is just the normal full
4870version string without the final micro-version number. See "Changes
4871to the distribution" above.
4872
382053e9 4873** New threading functions: parallel, letpar, par-map, and friends
dbe30084 4874
382053e9
KR
4875These are convenient ways to run calculations in parallel in new
4876threads. See "Parallel forms" in the manual for details.
359aab24 4877
e2d820a1
MV
4878** New function 'try-mutex'.
4879
4880This function will attempt to lock a mutex but will return immediately
0f24e75b 4881instead of blocking and indicate failure.
e2d820a1
MV
4882
4883** Waiting on a condition variable can have a timeout.
4884
0f24e75b 4885The function 'wait-condition-variable' now takes a third, optional
e2d820a1
MV
4886argument that specifies the point in time where the waiting should be
4887aborted.
4888
4889** New function 'broadcast-condition-variable'.
4890
5e405a60
MV
4891** New functions 'all-threads' and 'current-thread'.
4892
4893** Signals and system asyncs work better with threads.
4894
4895The function 'sigaction' now takes a fourth, optional, argument that
4896specifies the thread that the handler should run in. When the
4897argument is omitted, the handler will run in the thread that called
4898'sigaction'.
4899
4900Likewise, 'system-async-mark' takes a second, optional, argument that
4901specifies the thread that the async should run in. When it is
4902omitted, the async will run in the thread that called
4903'system-async-mark'.
4904
4905C code can use the new functions scm_sigaction_for_thread and
4906scm_system_async_mark_for_thread to pass the new thread argument.
4907
a558cc63
MV
4908When a thread blocks on a mutex, a condition variable or is waiting
4909for IO to be possible, it will still execute system asyncs. This can
4910be used to interrupt such a thread by making it execute a 'throw', for
4911example.
4912
5e405a60
MV
4913** The function 'system-async' is deprecated.
4914
4915You can now pass any zero-argument procedure to 'system-async-mark'.
4916The function 'system-async' will just return its argument unchanged
4917now.
4918
acfa1f52
MV
4919** New functions 'call-with-blocked-asyncs' and
4920 'call-with-unblocked-asyncs'
4921
4922The expression (call-with-blocked-asyncs PROC) will call PROC and will
4923block execution of system asyncs for the current thread by one level
4924while PROC runs. Likewise, call-with-unblocked-asyncs will call a
4925procedure and will unblock the execution of system asyncs by one
4926level for the current thread.
4927
4928Only system asyncs are affected by these functions.
4929
4930** The functions 'mask-signals' and 'unmask-signals' are deprecated.
4931
4932Use 'call-with-blocked-asyncs' or 'call-with-unblocked-asyncs'
4933instead. Those functions are easier to use correctly and can be
4934nested.
4935
7b232758
MV
4936** New function 'unsetenv'.
4937
f30482f3
MV
4938** New macro 'define-syntax-public'.
4939
4940It works like 'define-syntax' and also exports the defined macro (but
4941only on top-level).
4942
1ee34062
MV
4943** There is support for Infinity and NaNs.
4944
4945Following PLT Scheme, Guile can now work with infinite numbers, and
4946'not-a-numbers'.
4947
4948There is new syntax for numbers: "+inf.0" (infinity), "-inf.0"
4949(negative infinity), "+nan.0" (not-a-number), and "-nan.0" (same as
4950"+nan.0"). These numbers are inexact and have no exact counterpart.
4951
4952Dividing by an inexact zero returns +inf.0 or -inf.0, depending on the
4953sign of the dividend. The infinities are integers, and they answer #t
4954for both 'even?' and 'odd?'. The +nan.0 value is not an integer and is
4955not '=' to itself, but '+nan.0' is 'eqv?' to itself.
4956
4957For example
4958
4959 (/ 1 0.0)
4960 => +inf.0
4961
4962 (/ 0 0.0)
4963 => +nan.0
4964
4965 (/ 0)
4966 ERROR: Numerical overflow
4967
7b232758
MV
4968Two new predicates 'inf?' and 'nan?' can be used to test for the
4969special values.
4970
ba1b077b
MV
4971** Inexact zero can have a sign.
4972
4973Guile can now distinguish between plus and minus inexact zero, if your
4974platform supports this, too. The two zeros are equal according to
4975'=', but not according to 'eqv?'. For example
4976
4977 (- 0.0)
4978 => -0.0
4979
4980 (= 0.0 (- 0.0))
4981 => #t
4982
4983 (eqv? 0.0 (- 0.0))
4984 => #f
4985
bdf26b60
MV
4986** Guile now has exact rationals.
4987
4988Guile can now represent fractions such as 1/3 exactly. Computing with
4989them is also done exactly, of course:
4990
4991 (* 1/3 3/2)
4992 => 1/2
4993
4994** 'floor', 'ceiling', 'round' and 'truncate' now return exact numbers
4995 for exact arguments.
4996
4997For example: (floor 2) now returns an exact 2 where in the past it
4998returned an inexact 2.0. Likewise, (floor 5/4) returns an exact 1.
4999
5000** inexact->exact no longer returns only integers.
5001
5002Without exact rationals, the closest exact number was always an
5003integer, but now inexact->exact returns the fraction that is exactly
5004equal to a floating point number. For example:
5005
5006 (inexact->exact 1.234)
5007 => 694680242521899/562949953421312
5008
e299cee2 5009When you want the old behavior, use 'round' explicitly:
bdf26b60
MV
5010
5011 (inexact->exact (round 1.234))
5012 => 1
5013
5014** New function 'rationalize'.
5015
5016This function finds a simple fraction that is close to a given real
5017number. For example (and compare with inexact->exact above):
5018
fb16d26e 5019 (rationalize (inexact->exact 1.234) 1/2000)
bdf26b60
MV
5020 => 58/47
5021
fb16d26e
MV
5022Note that, as required by R5RS, rationalize returns only then an exact
5023result when both its arguments are exact.
5024
bdf26b60
MV
5025** 'odd?' and 'even?' work also for inexact integers.
5026
5027Previously, (odd? 1.0) would signal an error since only exact integers
5028were recognized as integers. Now (odd? 1.0) returns #t, (odd? 2.0)
5029returns #f and (odd? 1.5) signals an error.
5030
b0d10ba6 5031** Guile now has uninterned symbols.
610922b2 5032
b0d10ba6 5033The new function 'make-symbol' will return an uninterned symbol. This
610922b2
MV
5034is a symbol that is unique and is guaranteed to remain unique.
5035However, uninterned symbols can not yet be read back in.
5036
5037Use the new function 'symbol-interned?' to check whether a symbol is
5038interned or not.
5039
0e6f7775
MV
5040** pretty-print has more options.
5041
5042The function pretty-print from the (ice-9 pretty-print) module can now
5043also be invoked with keyword arguments that control things like
71f271b2 5044maximum output width. See the manual for details.
0e6f7775 5045
8c84b81e 5046** Variables have no longer a special behavior for `equal?'.
ee0c7345
MV
5047
5048Previously, comparing two variables with `equal?' would recursivly
5049compare their values. This is no longer done. Variables are now only
5050`equal?' if they are `eq?'.
5051
4e21fa60
MV
5052** `(begin)' is now valid.
5053
5054You can now use an empty `begin' form. It will yield #<unspecified>
5055when evaluated and simply be ignored in a definition context.
5056
3063e30a
DH
5057** Deprecated: procedure->macro
5058
b0d10ba6
MV
5059Change your code to use 'define-macro' or r5rs macros. Also, be aware
5060that macro expansion will not be done during evaluation, but prior to
5061evaluation.
3063e30a 5062
0a50eeaa
NJ
5063** Soft ports now allow a `char-ready?' procedure
5064
5065The vector argument to `make-soft-port' can now have a length of
5066either 5 or 6. (Previously the length had to be 5.) The optional 6th
5067element is interpreted as an `input-waiting' thunk -- i.e. a thunk
5068that returns the number of characters that can be read immediately
5069without the soft port blocking.
5070
63dd3413
DH
5071** Deprecated: undefine
5072
5073There is no replacement for undefine.
5074
9abd541e
NJ
5075** The functions make-keyword-from-dash-symbol and keyword-dash-symbol
5076 have been discouraged.
aef0bdb4
MV
5077
5078They are relics from a time where a keyword like #:foo was used
5079directly as a Tcl option "-foo" and thus keywords were internally
5080stored as a symbol with a starting dash. We now store a symbol
5081without the dash.
5082
5083Use symbol->keyword and keyword->symbol instead.
5084
9abd541e
NJ
5085** The `cheap' debug option is now obsolete
5086
5087Evaluator trap calls are now unconditionally "cheap" - in other words,
5088they pass a debug object to the trap handler rather than a full
5089continuation. The trap handler code can capture a full continuation
5090by using `call-with-current-continuation' in the usual way, if it so
5091desires.
5092
5093The `cheap' option is retained for now so as not to break existing
5094code which gets or sets it, but setting it now has no effect. It will
5095be removed in the next major Guile release.
5096
5097** Evaluator trap calls now support `tweaking'
5098
5099`Tweaking' means that the trap handler code can modify the Scheme
5100expression that is about to be evaluated (in the case of an
5101enter-frame trap) or the value that is being returned (in the case of
5102an exit-frame trap). The trap handler code indicates that it wants to
5103do this by returning a pair whose car is the symbol 'instead and whose
5104cdr is the modified expression or return value.
36a9b236 5105
b00418df
DH
5106* Changes to the C interface
5107
87bdbdbc
MV
5108** The functions scm_hash_fn_remove_x and scm_hashx_remove_x no longer
5109 take a 'delete' function argument.
5110
5111This argument makes no sense since the delete function is used to
5112remove a pair from an alist, and this must not be configurable.
5113
5114This is an incompatible change.
5115
1cf1bb95
MV
5116** The GH interface is now subject to the deprecation mechanism
5117
5118The GH interface has been deprecated for quite some time but now it is
5119actually removed from Guile when it is configured with
5120--disable-deprecated.
5121
5122See the manual "Transitioning away from GH" for more information.
5123
f7f3964e
MV
5124** A new family of functions for converting between C values and
5125 Scheme values has been added.
5126
5127These functions follow a common naming scheme and are designed to be
5128easier to use, thread-safe and more future-proof than the older
5129alternatives.
5130
5131 - int scm_is_* (...)
5132
5133 These are predicates that return a C boolean: 1 or 0. Instead of
5134 SCM_NFALSEP, you can now use scm_is_true, for example.
5135
5136 - <type> scm_to_<type> (SCM val, ...)
5137
5138 These are functions that convert a Scheme value into an appropriate
5139 C value. For example, you can use scm_to_int to safely convert from
5140 a SCM to an int.
5141
a2b6a0e7 5142 - SCM scm_from_<type> (<type> val, ...)
f7f3964e
MV
5143
5144 These functions convert from a C type to a SCM value; for example,
5145 scm_from_int for ints.
5146
5147There is a huge number of these functions, for numbers, strings,
5148symbols, vectors, etc. They are documented in the reference manual in
5149the API section together with the types that they apply to.
5150
96d8c217
MV
5151** New functions for dealing with complex numbers in C have been added.
5152
5153The new functions are scm_c_make_rectangular, scm_c_make_polar,
5154scm_c_real_part, scm_c_imag_part, scm_c_magnitude and scm_c_angle.
5155They work like scm_make_rectangular etc but take or return doubles
5156directly.
5157
5158** The function scm_make_complex has been discouraged.
5159
5160Use scm_c_make_rectangular instead.
5161
f7f3964e
MV
5162** The INUM macros have been deprecated.
5163
5164A lot of code uses these macros to do general integer conversions,
b0d10ba6
MV
5165although the macros only work correctly with fixnums. Use the
5166following alternatives.
f7f3964e
MV
5167
5168 SCM_INUMP -> scm_is_integer or similar
5169 SCM_NINUMP -> !scm_is_integer or similar
5170 SCM_MAKINUM -> scm_from_int or similar
5171 SCM_INUM -> scm_to_int or similar
5172
b0d10ba6 5173 SCM_VALIDATE_INUM_* -> Do not use these; scm_to_int, etc. will
f7f3964e
MV
5174 do the validating for you.
5175
f9656a9f
MV
5176** The scm_num2<type> and scm_<type>2num functions and scm_make_real
5177 have been discouraged.
f7f3964e
MV
5178
5179Use the newer scm_to_<type> and scm_from_<type> functions instead for
5180new code. The functions have been discouraged since they don't fit
5181the naming scheme.
5182
5183** The 'boolean' macros SCM_FALSEP etc have been discouraged.
5184
5185They have strange names, especially SCM_NFALSEP, and SCM_BOOLP
5186evaluates its argument twice. Use scm_is_true, etc. instead for new
5187code.
5188
5189** The macro SCM_EQ_P has been discouraged.
5190
5191Use scm_is_eq for new code, which fits better into the naming
5192conventions.
d5b203a6 5193
d5ac9b2a
MV
5194** The macros SCM_CONSP, SCM_NCONSP, SCM_NULLP, and SCM_NNULLP have
5195 been discouraged.
5196
5197Use the function scm_is_pair or scm_is_null instead.
5198
409eb4e5
MV
5199** The functions scm_round and scm_truncate have been deprecated and
5200 are now available as scm_c_round and scm_c_truncate, respectively.
5201
5202These functions occupy the names that scm_round_number and
5203scm_truncate_number should have.
5204
3ff9283d
MV
5205** The functions scm_c_string2str, scm_c_substring2str, and
5206 scm_c_symbol2str have been deprecated.
c41acab3
MV
5207
5208Use scm_to_locale_stringbuf or similar instead, maybe together with
5209scm_substring.
5210
3ff9283d
MV
5211** New functions scm_c_make_string, scm_c_string_length,
5212 scm_c_string_ref, scm_c_string_set_x, scm_c_substring,
5213 scm_c_substring_shared, scm_c_substring_copy.
5214
5215These are like scm_make_string, scm_length, etc. but are slightly
5216easier to use from C.
5217
5218** The macros SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_LENGTH,
5219 SCM_SYMBOL_CHARS, and SCM_SYMBOL_LENGTH have been deprecated.
5220
5221They export too many assumptions about the implementation of strings
5222and symbols that are no longer true in the presence of
b0d10ba6
MV
5223mutation-sharing substrings and when Guile switches to some form of
5224Unicode.
3ff9283d
MV
5225
5226When working with strings, it is often best to use the normal string
5227functions provided by Guile, such as scm_c_string_ref,
b0d10ba6
MV
5228scm_c_string_set_x, scm_string_append, etc. Be sure to look in the
5229manual since many more such functions are now provided than
5230previously.
3ff9283d
MV
5231
5232When you want to convert a SCM string to a C string, use the
5233scm_to_locale_string function or similar instead. For symbols, use
5234scm_symbol_to_string and then work with that string. Because of the
5235new string representation, scm_symbol_to_string does not need to copy
5236and is thus quite efficient.
5237
aef0bdb4 5238** Some string, symbol and keyword functions have been discouraged.
3ff9283d 5239
b0d10ba6 5240They don't fit into the uniform naming scheme and are not explicit
3ff9283d
MV
5241about the character encoding.
5242
5243Replace according to the following table:
5244
5245 scm_allocate_string -> scm_c_make_string
5246 scm_take_str -> scm_take_locale_stringn
5247 scm_take0str -> scm_take_locale_string
5248 scm_mem2string -> scm_from_locale_stringn
5249 scm_str2string -> scm_from_locale_string
5250 scm_makfrom0str -> scm_from_locale_string
5251 scm_mem2symbol -> scm_from_locale_symboln
b0d10ba6 5252 scm_mem2uninterned_symbol -> scm_from_locale_stringn + scm_make_symbol
3ff9283d
MV
5253 scm_str2symbol -> scm_from_locale_symbol
5254
5255 SCM_SYMBOL_HASH -> scm_hashq
5256 SCM_SYMBOL_INTERNED_P -> scm_symbol_interned_p
5257
aef0bdb4
MV
5258 scm_c_make_keyword -> scm_from_locale_keyword
5259
5260** The functions scm_keyword_to_symbol and sym_symbol_to_keyword are
5261 now also available to C code.
5262
5263** SCM_KEYWORDP and SCM_KEYWORDSYM have been deprecated.
5264
5265Use scm_is_keyword and scm_keyword_to_symbol instead, but note that
5266the latter returns the true name of the keyword, not the 'dash name',
5267as SCM_KEYWORDSYM used to do.
5268
dc91d8de
MV
5269** A new way to access arrays in a thread-safe and efficient way has
5270 been added.
5271
5272See the manual, node "Accessing Arrays From C".
5273
3167d5e4
MV
5274** The old uniform vector and bitvector implementations have been
5275 unceremoniously removed.
d4ea47c8 5276
a558cc63 5277This implementation exposed the details of the tagging system of
d4ea47c8 5278Guile. Use the new C API explained in the manual in node "Uniform
c34e5780 5279Numeric Vectors" and "Bit Vectors", respectively.
d4ea47c8
MV
5280
5281The following macros are gone: SCM_UVECTOR_BASE, SCM_SET_UVECTOR_BASE,
5282SCM_UVECTOR_MAXLENGTH, SCM_UVECTOR_LENGTH, SCM_MAKE_UVECTOR_TAG,
3167d5e4
MV
5283SCM_SET_UVECTOR_LENGTH, SCM_BITVECTOR_P, SCM_BITVECTOR_BASE,
5284SCM_SET_BITVECTOR_BASE, SCM_BITVECTOR_MAX_LENGTH,
5285SCM_BITVECTOR_LENGTH, SCM_MAKE_BITVECTOR_TAG,
0b63c1ee
MV
5286SCM_SET_BITVECTOR_LENGTH, SCM_BITVEC_REF, SCM_BITVEC_SET,
5287SCM_BITVEC_CLR.
d4ea47c8 5288
c34e5780
MV
5289** The macros dealing with vectors have been deprecated.
5290
5291Use the new functions scm_is_vector, scm_vector_elements,
0b63c1ee
MV
5292scm_vector_writable_elements, etc, or scm_is_simple_vector,
5293SCM_SIMPLE_VECTOR_REF, SCM_SIMPLE_VECTOR_SET, etc instead. See the
5294manual for more details.
c34e5780
MV
5295
5296Deprecated are SCM_VECTORP, SCM_VELTS, SCM_VECTOR_MAX_LENGTH,
5297SCM_VECTOR_LENGTH, SCM_VECTOR_REF, SCM_VECTOR_SET, SCM_WRITABLE_VELTS.
5298
5299The following macros have been removed: SCM_VECTOR_BASE,
5300SCM_SET_VECTOR_BASE, SCM_MAKE_VECTOR_TAG, SCM_SET_VECTOR_LENGTH,
5301SCM_VELTS_AS_STACKITEMS, SCM_SETVELTS, SCM_GC_WRITABLE_VELTS.
5302
0c7a5cab 5303** Some C functions and macros related to arrays have been deprecated.
dc91d8de
MV
5304
5305Migrate according to the following table:
5306
e94d0be2 5307 scm_make_uve -> scm_make_typed_array, scm_make_u8vector etc.
dc91d8de
MV
5308 scm_make_ra -> scm_make_array
5309 scm_shap2ra -> scm_make_array
5310 scm_cvref -> scm_c_generalized_vector_ref
5311 scm_ra_set_contp -> do not use
5312 scm_aind -> scm_array_handle_pos
5313 scm_raprin1 -> scm_display or scm_write
5314
0c7a5cab
MV
5315 SCM_ARRAYP -> scm_is_array
5316 SCM_ARRAY_NDIM -> scm_c_array_rank
5317 SCM_ARRAY_DIMS -> scm_array_handle_dims
5318 SCM_ARRAY_CONTP -> do not use
5319 SCM_ARRAY_MEM -> do not use
5320 SCM_ARRAY_V -> scm_array_handle_elements or similar
5321 SCM_ARRAY_BASE -> do not use
5322
c1e7caf7
MV
5323** SCM_CELL_WORD_LOC has been deprecated.
5324
b0d10ba6 5325Use the new macro SCM_CELL_OBJECT_LOC instead, which returns a pointer
c1e7caf7
MV
5326to a SCM, as opposed to a pointer to a scm_t_bits.
5327
5328This was done to allow the correct use of pointers into the Scheme
5329heap. Previously, the heap words were of type scm_t_bits and local
5330variables and function arguments were of type SCM, making it
5331non-standards-conformant to have a pointer that can point to both.
5332
3ff9283d 5333** New macros SCM_SMOB_DATA_2, SCM_SMOB_DATA_3, etc.
27968825
MV
5334
5335These macros should be used instead of SCM_CELL_WORD_2/3 to access the
5336second and third words of double smobs. Likewise for
5337SCM_SET_SMOB_DATA_2 and SCM_SET_SMOB_DATA_3.
5338
5339Also, there is SCM_SMOB_FLAGS and SCM_SET_SMOB_FLAGS that should be
5340used to get and set the 16 exra bits in the zeroth word of a smob.
5341
5342And finally, there is SCM_SMOB_OBJECT and SCM_SMOB_SET_OBJECT for
5343accesing the first immediate word of a smob as a SCM value, and there
5344is SCM_SMOB_OBJECT_LOC for getting a pointer to the first immediate
b0d10ba6 5345smob word. Like wise for SCM_SMOB_OBJECT_2, etc.
27968825 5346
b0d10ba6 5347** New way to deal with non-local exits and re-entries.
9879d390
MV
5348
5349There is a new set of functions that essentially do what
fc6bb283
MV
5350scm_internal_dynamic_wind does, but in a way that is more convenient
5351for C code in some situations. Here is a quick example of how to
5352prevent a potential memory leak:
9879d390
MV
5353
5354 void
5355 foo ()
5356 {
5357 char *mem;
5358
661ae7ab 5359 scm_dynwind_begin (0);
9879d390
MV
5360
5361 mem = scm_malloc (100);
661ae7ab 5362 scm_dynwind_unwind_handler (free, mem, SCM_F_WIND_EXPLICITLY);
f1da8e4e
MV
5363
5364 /* MEM would leak if BAR throws an error.
661ae7ab 5365 SCM_DYNWIND_UNWIND_HANDLER frees it nevertheless.
c41acab3 5366 */
9879d390 5367
9879d390
MV
5368 bar ();
5369
661ae7ab 5370 scm_dynwind_end ();
9879d390 5371
e299cee2 5372 /* Because of SCM_F_WIND_EXPLICITLY, MEM will be freed by
661ae7ab 5373 SCM_DYNWIND_END as well.
9879d390
MV
5374 */
5375 }
5376
661ae7ab 5377For full documentation, see the node "Dynamic Wind" in the manual.
9879d390 5378
661ae7ab 5379** New function scm_dynwind_free
c41acab3 5380
661ae7ab
MV
5381This function calls 'free' on a given pointer when a dynwind context
5382is left. Thus the call to scm_dynwind_unwind_handler above could be
5383replaced with simply scm_dynwind_free (mem).
c41acab3 5384
a6d75e53
MV
5385** New functions scm_c_call_with_blocked_asyncs and
5386 scm_c_call_with_unblocked_asyncs
5387
5388Like scm_call_with_blocked_asyncs etc. but for C functions.
5389
661ae7ab 5390** New functions scm_dynwind_block_asyncs and scm_dynwind_unblock_asyncs
49c00ecc
MV
5391
5392In addition to scm_c_call_with_blocked_asyncs you can now also use
661ae7ab
MV
5393scm_dynwind_block_asyncs in a 'dynwind context' (see above). Likewise for
5394scm_c_call_with_unblocked_asyncs and scm_dynwind_unblock_asyncs.
49c00ecc 5395
a558cc63
MV
5396** The macros SCM_DEFER_INTS, SCM_ALLOW_INTS, SCM_REDEFER_INTS,
5397 SCM_REALLOW_INTS have been deprecated.
5398
5399They do no longer fulfill their original role of blocking signal
5400delivery. Depending on what you want to achieve, replace a pair of
661ae7ab
MV
5401SCM_DEFER_INTS and SCM_ALLOW_INTS with a dynwind context that locks a
5402mutex, blocks asyncs, or both. See node "Critical Sections" in the
5403manual.
a6d75e53
MV
5404
5405** The value 'scm_mask_ints' is no longer writable.
5406
5407Previously, you could set scm_mask_ints directly. This is no longer
5408possible. Use scm_c_call_with_blocked_asyncs and
5409scm_c_call_with_unblocked_asyncs instead.
a558cc63 5410
49c00ecc
MV
5411** New way to temporarily set the current input, output or error ports
5412
661ae7ab 5413C code can now use scm_dynwind_current_<foo>_port in a 'dynwind
0f24e75b 5414context' (see above). <foo> is one of "input", "output" or "error".
49c00ecc 5415
fc6bb283
MV
5416** New way to temporarily set fluids
5417
661ae7ab 5418C code can now use scm_dynwind_fluid in a 'dynwind context' (see
fc6bb283
MV
5419above) to temporarily set the value of a fluid.
5420
89fcf1b4
MV
5421** New types scm_t_intmax and scm_t_uintmax.
5422
5423On platforms that have them, these types are identical to intmax_t and
5424uintmax_t, respectively. On other platforms, they are identical to
5425the largest integer types that Guile knows about.
5426
b0d10ba6 5427** The functions scm_unmemocopy and scm_unmemoize have been removed.
9fcf3cbb 5428
b0d10ba6 5429You should not have used them.
9fcf3cbb 5430
5ebbe4ef
RB
5431** Many public #defines with generic names have been made private.
5432
5433#defines with generic names like HAVE_FOO or SIZEOF_FOO have been made
b0d10ba6 5434private or renamed with a more suitable public name.
f03314f9
DH
5435
5436** The macro SCM_TYP16S has been deprecated.
5437
b0d10ba6 5438This macro is not intended for public use.
f03314f9 5439
0d5e3480
DH
5440** The macro SCM_SLOPPY_INEXACTP has been deprecated.
5441
b0d10ba6 5442Use scm_is_true (scm_inexact_p (...)) instead.
0d5e3480
DH
5443
5444** The macro SCM_SLOPPY_REALP has been deprecated.
5445
b0d10ba6 5446Use scm_is_real instead.
0d5e3480
DH
5447
5448** The macro SCM_SLOPPY_COMPLEXP has been deprecated.
5449
b0d10ba6 5450Use scm_is_complex instead.
5ebbe4ef 5451
b0d10ba6 5452** Some preprocessor defines have been deprecated.
5ebbe4ef 5453
b0d10ba6
MV
5454These defines indicated whether a certain feature was present in Guile
5455or not. Going forward, assume that the features are always present.
5ebbe4ef 5456
b0d10ba6
MV
5457The macros are: USE_THREADS, GUILE_ISELECT, READER_EXTENSIONS,
5458DEBUG_EXTENSIONS, DYNAMIC_LINKING.
5ebbe4ef 5459
b0d10ba6
MV
5460The following macros have been removed completely: MEMOIZE_LOCALS,
5461SCM_RECKLESS, SCM_CAUTIOUS.
5ebbe4ef
RB
5462
5463** The preprocessor define STACK_DIRECTION has been deprecated.
5464
5465There should be no need to know about the stack direction for ordinary
b0d10ba6 5466programs.
5ebbe4ef 5467
b2cbe8d8
RB
5468** New function: scm_effective_version
5469
5470Returns the "effective" version number. This is just the normal full
5471version string without the final micro-version number. See "Changes
5472to the distribution" above.
5473
2902a459
MV
5474** The function scm_call_with_new_thread has a new prototype.
5475
5476Instead of taking a list with the thunk and handler, these two
5477arguments are now passed directly:
5478
5479 SCM scm_call_with_new_thread (SCM thunk, SCM handler);
5480
5481This is an incompatible change.
5482
ffd0ef3b
MV
5483** New snarfer macro SCM_DEFINE_PUBLIC.
5484
5485This is like SCM_DEFINE, but also calls scm_c_export for the defined
5486function in the init section.
5487
8734ce02
MV
5488** The snarfer macro SCM_SNARF_INIT is now officially supported.
5489
39e8f371
HWN
5490** Garbage collector rewrite.
5491
5492The garbage collector is cleaned up a lot, and now uses lazy
5493sweeping. This is reflected in the output of (gc-stats); since cells
5494are being freed when they are allocated, the cells-allocated field
5495stays roughly constant.
5496
5497For malloc related triggers, the behavior is changed. It uses the same
5498heuristic as the cell-triggered collections. It may be tuned with the
5499environment variables GUILE_MIN_YIELD_MALLOC. This is the percentage
5500for minimum yield of malloc related triggers. The default is 40.
5501GUILE_INIT_MALLOC_LIMIT sets the initial trigger for doing a GC. The
5502default is 200 kb.
5503
5504Debugging operations for the freelist have been deprecated, along with
5505the C variables that control garbage collection. The environment
5506variables GUILE_MAX_SEGMENT_SIZE, GUILE_INIT_SEGMENT_SIZE_2,
5507GUILE_INIT_SEGMENT_SIZE_1, and GUILE_MIN_YIELD_2 should be used.
5508
1367aa5e
HWN
5509For understanding the memory usage of a GUILE program, the routine
5510gc-live-object-stats returns an alist containing the number of live
5511objects for every type.
5512
5513
5ec1d2c8
DH
5514** The function scm_definedp has been renamed to scm_defined_p
5515
5516The name scm_definedp is deprecated.
5517
b0d10ba6 5518** The struct scm_cell type has been renamed to scm_t_cell
228a24ef
DH
5519
5520This is in accordance to Guile's naming scheme for types. Note that
5521the name scm_cell is now used for a function that allocates and
5522initializes a new cell (see below).
5523
0906625f
MV
5524** New functions for memory management
5525
5526A new set of functions for memory management has been added since the
5527old way (scm_must_malloc, scm_must_free, etc) was error prone and
5528indeed, Guile itself contained some long standing bugs that could
5529cause aborts in long running programs.
5530
5531The new functions are more symmetrical and do not need cooperation
5532from smob free routines, among other improvements.
5533
eab1b259
HWN
5534The new functions are scm_malloc, scm_realloc, scm_calloc, scm_strdup,
5535scm_strndup, scm_gc_malloc, scm_gc_calloc, scm_gc_realloc,
5536scm_gc_free, scm_gc_register_collectable_memory, and
0906625f
MV
5537scm_gc_unregister_collectable_memory. Refer to the manual for more
5538details and for upgrading instructions.
5539
5540The old functions for memory management have been deprecated. They
5541are: scm_must_malloc, scm_must_realloc, scm_must_free,
5542scm_must_strdup, scm_must_strndup, scm_done_malloc, scm_done_free.
5543
4aa104a4
MV
5544** Declarations of exported features are marked with SCM_API.
5545
5546Every declaration of a feature that belongs to the exported Guile API
5547has been marked by adding the macro "SCM_API" to the start of the
5548declaration. This macro can expand into different things, the most
5549common of which is just "extern" for Unix platforms. On Win32, it can
5550be used to control which symbols are exported from a DLL.
5551
8f99e3f3 5552If you `#define SCM_IMPORT' before including <libguile.h>, SCM_API
4aa104a4
MV
5553will expand into "__declspec (dllimport) extern", which is needed for
5554linking to the Guile DLL in Windows.
5555
b0d10ba6 5556There are also SCM_RL_IMPORT, SCM_SRFI1314_IMPORT, and
8f99e3f3 5557SCM_SRFI4_IMPORT, for the corresponding libraries.
4aa104a4 5558
a9930d22
MV
5559** SCM_NEWCELL and SCM_NEWCELL2 have been deprecated.
5560
b0d10ba6
MV
5561Use the new functions scm_cell and scm_double_cell instead. The old
5562macros had problems because with them allocation and initialization
5563was separated and the GC could sometimes observe half initialized
5564cells. Only careful coding by the user of SCM_NEWCELL and
5565SCM_NEWCELL2 could make this safe and efficient.
a9930d22 5566
5132eef0
DH
5567** CHECK_ENTRY, CHECK_APPLY and CHECK_EXIT have been deprecated.
5568
5569Use the variables scm_check_entry_p, scm_check_apply_p and scm_check_exit_p
5570instead.
5571
bc76d628
DH
5572** SRCBRKP has been deprecated.
5573
5574Use scm_c_source_property_breakpoint_p instead.
5575
3063e30a
DH
5576** Deprecated: scm_makmacro
5577
b0d10ba6
MV
5578Change your code to use either scm_makmmacro or to define macros in
5579Scheme, using 'define-macro'.
1e5f92ce 5580
1a61d41b
MV
5581** New function scm_c_port_for_each.
5582
5583This function is like scm_port_for_each but takes a pointer to a C
5584function as the callback instead of a SCM value.
5585
1f834c95
MV
5586** The names scm_internal_select, scm_thread_sleep, and
5587 scm_thread_usleep have been discouraged.
5588
5589Use scm_std_select, scm_std_sleep, scm_std_usleep instead.
5590
aa9200e5
MV
5591** The GC can no longer be blocked.
5592
5593The global flags scm_gc_heap_lock and scm_block_gc have been removed.
5594The GC can now run (partially) concurrently with other code and thus
5595blocking it is not well defined.
5596
b0d10ba6
MV
5597** Many definitions have been removed that were previously deprecated.
5598
5599scm_lisp_nil, scm_lisp_t, s_nil_ify, scm_m_nil_ify, s_t_ify,
5600scm_m_t_ify, s_0_cond, scm_m_0_cond, s_0_ify, scm_m_0_ify, s_1_ify,
5601scm_m_1_ify, scm_debug_newcell, scm_debug_newcell2,
5602scm_tc16_allocated, SCM_SET_SYMBOL_HASH, SCM_IM_NIL_IFY, SCM_IM_T_IFY,
5603SCM_IM_0_COND, SCM_IM_0_IFY, SCM_IM_1_IFY, SCM_GC_SET_ALLOCATED,
5604scm_debug_newcell, scm_debug_newcell2, SCM_HUP_SIGNAL, SCM_INT_SIGNAL,
5605SCM_FPE_SIGNAL, SCM_BUS_SIGNAL, SCM_SEGV_SIGNAL, SCM_ALRM_SIGNAL,
5606SCM_GC_SIGNAL, SCM_TICK_SIGNAL, SCM_SIG_ORD, SCM_ORD_SIG,
5607SCM_NUM_SIGS, scm_top_level_lookup_closure_var,
5608*top-level-lookup-closure*, scm_system_transformer, scm_eval_3,
5609scm_eval2, root_module_lookup_closure, SCM_SLOPPY_STRINGP,
5610SCM_RWSTRINGP, scm_read_only_string_p, scm_make_shared_substring,
5611scm_tc7_substring, sym_huh, SCM_VARVCELL, SCM_UDVARIABLEP,
5612SCM_DEFVARIABLEP, scm_mkbig, scm_big2inum, scm_adjbig, scm_normbig,
5613scm_copybig, scm_2ulong2big, scm_dbl2big, scm_big2dbl, SCM_FIXNUM_BIT,
5614SCM_SETCHARS, SCM_SLOPPY_SUBSTRP, SCM_SUBSTR_STR, SCM_SUBSTR_OFFSET,
5615SCM_LENGTH_MAX, SCM_SETLENGTH, SCM_ROSTRINGP, SCM_ROLENGTH,
5616SCM_ROCHARS, SCM_ROUCHARS, SCM_SUBSTRP, SCM_COERCE_SUBSTR,
5617scm_sym2vcell, scm_intern, scm_intern0, scm_sysintern, scm_sysintern0,
66c8ded2 5618scm_sysintern0_no_module_lookup, scm_init_symbols_deprecated,
2109da78 5619scm_vector_set_length_x, scm_contregs, scm_debug_info,
983e697d
MV
5620scm_debug_frame, SCM_DSIDEVAL, SCM_CONST_LONG, SCM_VCELL,
5621SCM_GLOBAL_VCELL, SCM_VCELL_INIT, SCM_GLOBAL_VCELL_INIT,
5622SCM_HUGE_LENGTH, SCM_VALIDATE_STRINGORSUBSTR, SCM_VALIDATE_ROSTRING,
5623SCM_VALIDATE_ROSTRING_COPY, SCM_VALIDATE_NULLORROSTRING_COPY,
5624SCM_VALIDATE_RWSTRING, DIGITS, scm_small_istr2int, scm_istr2int,
2109da78
MV
5625scm_istr2flo, scm_istring2number, scm_istr2int, scm_istr2flo,
5626scm_istring2number, scm_vtable_index_vcell, scm_si_vcell, SCM_ECONSP,
5627SCM_NECONSP, SCM_GLOC_VAR, SCM_GLOC_VAL, SCM_GLOC_SET_VAL,
c41acab3
MV
5628SCM_GLOC_VAL_LOC, scm_make_gloc, scm_gloc_p, scm_tc16_variable,
5629SCM_CHARS, SCM_LENGTH, SCM_SET_STRING_CHARS, SCM_SET_STRING_LENGTH.
b51bad08 5630
09172f9c
NJ
5631* Changes to bundled modules
5632
5633** (ice-9 debug)
5634
5635Using the (ice-9 debug) module no longer automatically switches Guile
5636to use the debugging evaluator. If you want to switch to the
5637debugging evaluator (which is needed for backtrace information if you
5638hit an error), please add an explicit "(debug-enable 'debug)" to your
5639code just after the code to use (ice-9 debug).
5640
328dc9a3 5641\f
c299f186
MD
5642Changes since Guile 1.4:
5643
5644* Changes to the distribution
5645
32d6f999
TTN
5646** A top-level TODO file is included.
5647
311b6a3c 5648** Guile now uses a versioning scheme similar to that of the Linux kernel.
c81ea65d
RB
5649
5650Guile now always uses three numbers to represent the version,
5651i.e. "1.6.5". The first number, 1, is the major version number, the
5652second number, 6, is the minor version number, and the third number,
56535, is the micro version number. Changes in major version number
5654indicate major changes in Guile.
5655
5656Minor version numbers that are even denote stable releases, and odd
5657minor version numbers denote development versions (which may be
5658unstable). The micro version number indicates a minor sub-revision of
5659a given MAJOR.MINOR release.
5660
5661In keeping with the new scheme, (minor-version) and scm_minor_version
5662no longer return everything but the major version number. They now
5663just return the minor version number. Two new functions
5664(micro-version) and scm_micro_version have been added to report the
5665micro version number.
5666
5667In addition, ./GUILE-VERSION now defines GUILE_MICRO_VERSION.
5668
5c790b44
RB
5669** New preprocessor definitions are available for checking versions.
5670
5671version.h now #defines SCM_MAJOR_VERSION, SCM_MINOR_VERSION, and
5672SCM_MICRO_VERSION to the appropriate integer values.
5673
311b6a3c
MV
5674** Guile now actively warns about deprecated features.
5675
5676The new configure option `--enable-deprecated=LEVEL' and the
5677environment variable GUILE_WARN_DEPRECATED control this mechanism.
5678See INSTALL and README for more information.
5679
0b073f0f
RB
5680** Guile is much more likely to work on 64-bit architectures.
5681
5682Guile now compiles and passes "make check" with only two UNRESOLVED GC
5e137c65
RB
5683cases on Alpha and ia64 based machines now. Thanks to John Goerzen
5684for the use of a test machine, and thanks to Stefan Jahn for ia64
5685patches.
0b073f0f 5686
e658215a
RB
5687** New functions: setitimer and getitimer.
5688
5689These implement a fairly direct interface to the libc functions of the
5690same name.
5691
8630fdfc
RB
5692** The #. reader extension is now disabled by default.
5693
5694For safety reasons, #. evaluation is disabled by default. To
5695re-enable it, set the fluid read-eval? to #t. For example:
5696
67b7dd9e 5697 (fluid-set! read-eval? #t)
8630fdfc
RB
5698
5699but make sure you realize the potential security risks involved. With
5700read-eval? enabled, reading a data file from an untrusted source can
5701be dangerous.
5702
f2a75d81 5703** New SRFI modules have been added:
4df36934 5704
dfdf5826
MG
5705SRFI-0 `cond-expand' is now supported in Guile, without requiring
5706using a module.
5707
e8bb0476
MG
5708(srfi srfi-1) is a library containing many useful pair- and list-processing
5709 procedures.
5710
7adc2c58 5711(srfi srfi-2) exports and-let*.
4df36934 5712
b74a7ec8
MG
5713(srfi srfi-4) implements homogeneous numeric vector datatypes.
5714
7adc2c58
RB
5715(srfi srfi-6) is a dummy module for now, since guile already provides
5716 all of the srfi-6 procedures by default: open-input-string,
5717 open-output-string, get-output-string.
4df36934 5718
7adc2c58 5719(srfi srfi-8) exports receive.
4df36934 5720
7adc2c58 5721(srfi srfi-9) exports define-record-type.
4df36934 5722
dfdf5826
MG
5723(srfi srfi-10) exports define-reader-ctor and implements the reader
5724 extension #,().
5725
7adc2c58 5726(srfi srfi-11) exports let-values and let*-values.
4df36934 5727
7adc2c58 5728(srfi srfi-13) implements the SRFI String Library.
53e29a1e 5729
7adc2c58 5730(srfi srfi-14) implements the SRFI Character-Set Library.
53e29a1e 5731
dfdf5826
MG
5732(srfi srfi-17) implements setter and getter-with-setter and redefines
5733 some accessor procedures as procedures with getters. (such as car,
5734 cdr, vector-ref etc.)
5735
5736(srfi srfi-19) implements the SRFI Time/Date Library.
2b60bc95 5737
466bb4b3
TTN
5738** New scripts / "executable modules"
5739
5740Subdirectory "scripts" contains Scheme modules that are packaged to
5741also be executable as scripts. At this time, these scripts are available:
5742
5743 display-commentary
5744 doc-snarf
5745 generate-autoload
5746 punify
58e5b910 5747 read-scheme-source
466bb4b3
TTN
5748 use2dot
5749
5750See README there for more info.
5751
54c17ccb
TTN
5752These scripts can be invoked from the shell with the new program
5753"guile-tools", which keeps track of installation directory for you.
5754For example:
5755
5756 $ guile-tools display-commentary srfi/*.scm
5757
5758guile-tools is copied to the standard $bindir on "make install".
5759
0109c4bf
MD
5760** New module (ice-9 stack-catch):
5761
5762stack-catch is like catch, but saves the current state of the stack in
3c1d1301
RB
5763the fluid the-last-stack. This fluid can be useful when using the
5764debugger and when re-throwing an error.
0109c4bf 5765
fbf0c8c7
MV
5766** The module (ice-9 and-let*) has been renamed to (ice-9 and-let-star)
5767
5768This has been done to prevent problems on lesser operating systems
5769that can't tolerate `*'s in file names. The exported macro continues
5770to be named `and-let*', of course.
5771
4f60cc33 5772On systems that support it, there is also a compatibility module named
fbf0c8c7 5773(ice-9 and-let*). It will go away in the next release.
6c0201ad 5774
9d774814 5775** New modules (oop goops) etc.:
14f1d9fe
MD
5776
5777 (oop goops)
5778 (oop goops describe)
5779 (oop goops save)
5780 (oop goops active-slot)
5781 (oop goops composite-slot)
5782
9d774814 5783The Guile Object Oriented Programming System (GOOPS) has been
311b6a3c
MV
5784integrated into Guile. For further information, consult the GOOPS
5785manual and tutorial in the `doc' directory.
14f1d9fe 5786
9d774814
GH
5787** New module (ice-9 rdelim).
5788
5789This exports the following procedures which were previously defined
1c8cbd62 5790in the default environment:
9d774814 5791
1c8cbd62
GH
5792read-line read-line! read-delimited read-delimited! %read-delimited!
5793%read-line write-line
9d774814 5794
1c8cbd62
GH
5795For backwards compatibility the definitions are still imported into the
5796default environment in this version of Guile. However you should add:
9d774814
GH
5797
5798(use-modules (ice-9 rdelim))
5799
1c8cbd62
GH
5800to any program which uses the definitions, since this may change in
5801future.
9d774814
GH
5802
5803Alternatively, if guile-scsh is installed, the (scsh rdelim) module
5804can be used for similar functionality.
5805
7e267da1
GH
5806** New module (ice-9 rw)
5807
5808This is a subset of the (scsh rw) module from guile-scsh. Currently
373f4948 5809it defines two procedures:
7e267da1 5810
311b6a3c 5811*** New function: read-string!/partial str [port_or_fdes [start [end]]]
7e267da1 5812
4bcdfe46
GH
5813 Read characters from a port or file descriptor into a string STR.
5814 A port must have an underlying file descriptor -- a so-called
5815 fport. This procedure is scsh-compatible and can efficiently read
311b6a3c 5816 large strings.
7e267da1 5817
4bcdfe46
GH
5818*** New function: write-string/partial str [port_or_fdes [start [end]]]
5819
5820 Write characters from a string STR to a port or file descriptor.
5821 A port must have an underlying file descriptor -- a so-called
5822 fport. This procedure is mostly compatible and can efficiently
5823 write large strings.
5824
e5005373
KN
5825** New module (ice-9 match)
5826
311b6a3c
MV
5827This module includes Andrew K. Wright's pattern matcher. See
5828ice-9/match.scm for brief description or
e5005373 5829
311b6a3c 5830 http://www.star-lab.com/wright/code.html
e5005373 5831
311b6a3c 5832for complete documentation.
e5005373 5833
4f60cc33
NJ
5834** New module (ice-9 buffered-input)
5835
5836This module provides procedures to construct an input port from an
5837underlying source of input that reads and returns its input in chunks.
5838The underlying input source is a Scheme procedure, specified by the
5839caller, which the port invokes whenever it needs more input.
5840
5841This is useful when building an input port whose back end is Readline
5842or a UI element such as the GtkEntry widget.
5843
5844** Documentation
5845
5846The reference and tutorial documentation that was previously
5847distributed separately, as `guile-doc', is now included in the core
5848Guile distribution. The documentation consists of the following
5849manuals.
5850
5851- The Guile Tutorial (guile-tut.texi) contains a tutorial introduction
5852 to using Guile.
5853
5854- The Guile Reference Manual (guile.texi) contains (or is intended to
5855 contain) reference documentation on all aspects of Guile.
5856
5857- The GOOPS Manual (goops.texi) contains both tutorial-style and
5858 reference documentation for using GOOPS, Guile's Object Oriented
5859 Programming System.
5860
c3e62877
NJ
5861- The Revised^5 Report on the Algorithmic Language Scheme
5862 (r5rs.texi).
4f60cc33
NJ
5863
5864See the README file in the `doc' directory for more details.
5865
094a67bb
MV
5866** There are a couple of examples in the examples/ directory now.
5867
9d774814
GH
5868* Changes to the stand-alone interpreter
5869
e7e58018
MG
5870** New command line option `--use-srfi'
5871
5872Using this option, SRFI modules can be loaded on startup and be
5873available right from the beginning. This makes programming portable
5874Scheme programs easier.
5875
5876The option `--use-srfi' expects a comma-separated list of numbers,
5877each representing a SRFI number to be loaded into the interpreter
5878before starting evaluating a script file or the REPL. Additionally,
5879the feature identifier for the loaded SRFIs is recognized by
5880`cond-expand' when using this option.
5881
5882Example:
5883$ guile --use-srfi=8,13
5884guile> (receive (x z) (values 1 2) (+ 1 2))
58853
58e5b910 5886guile> (string-pad "bla" 20)
e7e58018
MG
5887" bla"
5888
094a67bb
MV
5889** Guile now always starts up in the `(guile-user)' module.
5890
6e9382f1 5891Previously, scripts executed via the `-s' option would run in the
094a67bb
MV
5892`(guile)' module and the repl would run in the `(guile-user)' module.
5893Now every user action takes place in the `(guile-user)' module by
5894default.
e7e58018 5895
c299f186
MD
5896* Changes to Scheme functions and syntax
5897
720e1c30
MV
5898** Character classifiers work for non-ASCII characters.
5899
5900The predicates `char-alphabetic?', `char-numeric?',
5901`char-whitespace?', `char-lower?', `char-upper?' and `char-is-both?'
5902no longer check whether their arguments are ASCII characters.
5903Previously, a character would only be considered alphabetic when it
5904was also ASCII, for example.
5905
311b6a3c
MV
5906** Previously deprecated Scheme functions have been removed:
5907
5908 tag - no replacement.
5909 fseek - replaced by seek.
5910 list* - replaced by cons*.
5911
5912** It's now possible to create modules with controlled environments
5913
5914Example:
5915
5916(use-modules (ice-9 safe))
5917(define m (make-safe-module))
5918;;; m will now be a module containing only a safe subset of R5RS
5919(eval '(+ 1 2) m) --> 3
5920(eval 'load m) --> ERROR: Unbound variable: load
5921
5922** Evaluation of "()", the empty list, is now an error.
8c2c9967
MV
5923
5924Previously, the expression "()" evaluated to the empty list. This has
5925been changed to signal a "missing expression" error. The correct way
5926to write the empty list as a literal constant is to use quote: "'()".
5927
311b6a3c
MV
5928** New concept of `Guile Extensions'.
5929
5930A Guile Extension is just a ordinary shared library that can be linked
5931at run-time. We found it advantageous to give this simple concept a
5932dedicated name to distinguish the issues related to shared libraries
5933from the issues related to the module system.
5934
5935*** New function: load-extension
5936
5937Executing (load-extension lib init) is mostly equivalent to
5938
5939 (dynamic-call init (dynamic-link lib))
5940
5941except when scm_register_extension has been called previously.
5942Whenever appropriate, you should use `load-extension' instead of
5943dynamic-link and dynamic-call.
5944
5945*** New C function: scm_c_register_extension
5946
5947This function registers a initialization function for use by
5948`load-extension'. Use it when you don't want specific extensions to
5949be loaded as shared libraries (for example on platforms that don't
5950support dynamic linking).
5951
8c2c9967
MV
5952** Auto-loading of compiled-code modules is deprecated.
5953
5954Guile used to be able to automatically find and link a shared
c10ecc4c 5955library to satisfy requests for a module. For example, the module
8c2c9967
MV
5956`(foo bar)' could be implemented by placing a shared library named
5957"foo/libbar.so" (or with a different extension) in a directory on the
5958load path of Guile.
5959
311b6a3c
MV
5960This has been found to be too tricky, and is no longer supported. The
5961shared libraries are now called "extensions". You should now write a
5962small Scheme file that calls `load-extension' to load the shared
e299cee2 5963library and initialize it explicitly.
8c2c9967
MV
5964
5965The shared libraries themselves should be installed in the usual
5966places for shared libraries, with names like "libguile-foo-bar".
5967
5968For example, place this into a file "foo/bar.scm"
5969
5970 (define-module (foo bar))
5971
311b6a3c
MV
5972 (load-extension "libguile-foo-bar" "foobar_init")
5973
5974** Backward incompatible change: eval EXP ENVIRONMENT-SPECIFIER
5975
5976`eval' is now R5RS, that is it takes two arguments.
5977The second argument is an environment specifier, i.e. either
5978
5979 (scheme-report-environment 5)
5980 (null-environment 5)
5981 (interaction-environment)
5982
5983or
8c2c9967 5984
311b6a3c 5985 any module.
8c2c9967 5986
6f76852b
MV
5987** The module system has been made more disciplined.
5988
311b6a3c
MV
5989The function `eval' will save and restore the current module around
5990the evaluation of the specified expression. While this expression is
5991evaluated, `(current-module)' will now return the right module, which
5992is the module specified as the second argument to `eval'.
6f76852b 5993
311b6a3c 5994A consequence of this change is that `eval' is not particularly
6f76852b
MV
5995useful when you want allow the evaluated code to change what module is
5996designated as the current module and have this change persist from one
5997call to `eval' to the next. The read-eval-print-loop is an example
5998where `eval' is now inadequate. To compensate, there is a new
5999function `primitive-eval' that does not take a module specifier and
6000that does not save/restore the current module. You should use this
6001function together with `set-current-module', `current-module', etc
6002when you want to have more control over the state that is carried from
6003one eval to the next.
6004
6005Additionally, it has been made sure that forms that are evaluated at
6006the top level are always evaluated with respect to the current module.
6007Previously, subforms of top-level forms such as `begin', `case',
6008etc. did not respect changes to the current module although these
6009subforms are at the top-level as well.
6010
311b6a3c 6011To prevent strange behavior, the forms `define-module',
6f76852b
MV
6012`use-modules', `use-syntax', and `export' have been restricted to only
6013work on the top level. The forms `define-public' and
6014`defmacro-public' only export the new binding on the top level. They
6015behave just like `define' and `defmacro', respectively, when they are
6016used in a lexical environment.
6017
0a892a2c
MV
6018Also, `export' will no longer silently re-export bindings imported
6019from a used module. It will emit a `deprecation' warning and will
6020cease to perform any re-export in the next version. If you actually
6021want to re-export bindings, use the new `re-export' in place of
6022`export'. The new `re-export' will not make copies of variables when
6023rexporting them, as `export' did wrongly.
6024
047dc3ae
TTN
6025** Module system now allows selection and renaming of imported bindings
6026
6027Previously, when using `use-modules' or the `#:use-module' clause in
6028the `define-module' form, all the bindings (association of symbols to
6029values) for imported modules were added to the "current module" on an
6030as-is basis. This has been changed to allow finer control through two
6031new facilities: selection and renaming.
6032
6033You can now select which of the imported module's bindings are to be
6034visible in the current module by using the `:select' clause. This
6035clause also can be used to rename individual bindings. For example:
6036
6037 ;; import all bindings no questions asked
6038 (use-modules (ice-9 common-list))
6039
6040 ;; import four bindings, renaming two of them;
6041 ;; the current module sees: every some zonk-y zonk-n
6042 (use-modules ((ice-9 common-list)
6043 :select (every some
6044 (remove-if . zonk-y)
6045 (remove-if-not . zonk-n))))
6046
6047You can also programmatically rename all selected bindings using the
6048`:renamer' clause, which specifies a proc that takes a symbol and
6049returns another symbol. Because it is common practice to use a prefix,
6050we now provide the convenience procedure `symbol-prefix-proc'. For
6051example:
6052
6053 ;; import four bindings, renaming two of them specifically,
6054 ;; and all four w/ prefix "CL:";
6055 ;; the current module sees: CL:every CL:some CL:zonk-y CL:zonk-n
6056 (use-modules ((ice-9 common-list)
6057 :select (every some
6058 (remove-if . zonk-y)
6059 (remove-if-not . zonk-n))
6060 :renamer (symbol-prefix-proc 'CL:)))
6061
6062 ;; import four bindings, renaming two of them specifically,
6063 ;; and all four by upcasing.
6064 ;; the current module sees: EVERY SOME ZONK-Y ZONK-N
6065 (define (upcase-symbol sym)
6066 (string->symbol (string-upcase (symbol->string sym))))
6067
6068 (use-modules ((ice-9 common-list)
6069 :select (every some
6070 (remove-if . zonk-y)
6071 (remove-if-not . zonk-n))
6072 :renamer upcase-symbol))
6073
6074Note that programmatic renaming is done *after* individual renaming.
6075Also, the above examples show `use-modules', but the same facilities are
6076available for the `#:use-module' clause of `define-module'.
6077
6078See manual for more info.
6079
b7d69200 6080** The semantics of guardians have changed.
56495472 6081
b7d69200 6082The changes are for the most part compatible. An important criterion
6c0201ad 6083was to keep the typical usage of guardians as simple as before, but to
c0a5d888 6084make the semantics safer and (as a result) more useful.
56495472 6085
c0a5d888 6086*** All objects returned from guardians are now properly alive.
56495472 6087
c0a5d888
ML
6088It is now guaranteed that any object referenced by an object returned
6089from a guardian is alive. It's now impossible for a guardian to
6090return a "contained" object before its "containing" object.
56495472
ML
6091
6092One incompatible (but probably not very important) change resulting
6093from this is that it is no longer possible to guard objects that
6094indirectly reference themselves (i.e. are parts of cycles). If you do
6095so accidentally, you'll get a warning.
6096
c0a5d888
ML
6097*** There are now two types of guardians: greedy and sharing.
6098
6099If you call (make-guardian #t) or just (make-guardian), you'll get a
6100greedy guardian, and for (make-guardian #f) a sharing guardian.
6101
6102Greedy guardians are the default because they are more "defensive".
6103You can only greedily guard an object once. If you guard an object
6104more than once, once in a greedy guardian and the rest of times in
6105sharing guardians, then it is guaranteed that the object won't be
6106returned from sharing guardians as long as it is greedily guarded
6107and/or alive.
6108
6109Guardians returned by calls to `make-guardian' can now take one more
6110optional parameter, which says whether to throw an error in case an
6111attempt is made to greedily guard an object that is already greedily
6112guarded. The default is true, i.e. throw an error. If the parameter
6113is false, the guardian invocation returns #t if guarding was
6114successful and #f if it wasn't.
6115
6116Also, since greedy guarding is, in effect, a side-effecting operation
6117on objects, a new function is introduced: `destroy-guardian!'.
6118Invoking this function on a guardian renders it unoperative and, if
6119the guardian is greedy, clears the "greedily guarded" property of the
6120objects that were guarded by it, thus undoing the side effect.
6121
6122Note that all this hair is hardly very important, since guardian
6123objects are usually permanent.
6124
311b6a3c
MV
6125** Continuations created by call-with-current-continuation now accept
6126any number of arguments, as required by R5RS.
818febc0 6127
c10ecc4c 6128** New function `issue-deprecation-warning'
56426fdb 6129
311b6a3c 6130This function is used to display the deprecation messages that are
c10ecc4c 6131controlled by GUILE_WARN_DEPRECATION as explained in the README.
56426fdb
KN
6132
6133 (define (id x)
c10ecc4c
MV
6134 (issue-deprecation-warning "`id' is deprecated. Use `identity' instead.")
6135 (identity x))
56426fdb
KN
6136
6137 guile> (id 1)
6138 ;; `id' is deprecated. Use `identity' instead.
6139 1
6140 guile> (id 1)
6141 1
6142
c10ecc4c
MV
6143** New syntax `begin-deprecated'
6144
6145When deprecated features are included (as determined by the configure
6146option --enable-deprecated), `begin-deprecated' is identical to
6147`begin'. When deprecated features are excluded, it always evaluates
6148to `#f', ignoring the body forms.
6149
17f367e0
MV
6150** New function `make-object-property'
6151
6152This function returns a new `procedure with setter' P that can be used
6153to attach a property to objects. When calling P as
6154
6155 (set! (P obj) val)
6156
6157where `obj' is any kind of object, it attaches `val' to `obj' in such
6158a way that it can be retrieved by calling P as
6159
6160 (P obj)
6161
6162This function will replace procedure properties, symbol properties and
6163source properties eventually.
6164
76ef92f3
MV
6165** Module (ice-9 optargs) now uses keywords instead of `#&'.
6166
6167Instead of #&optional, #&key, etc you should now use #:optional,
6168#:key, etc. Since #:optional is a keyword, you can write it as just
6169:optional when (read-set! keywords 'prefix) is active.
6170
6171The old reader syntax `#&' is still supported, but deprecated. It
6172will be removed in the next release.
6173
c0997079
MD
6174** New define-module option: pure
6175
6176Tells the module system not to include any bindings from the root
6177module.
6178
6179Example:
6180
6181(define-module (totally-empty-module)
6182 :pure)
6183
6184** New define-module option: export NAME1 ...
6185
6186Export names NAME1 ...
6187
6188This option is required if you want to be able to export bindings from
6189a module which doesn't import one of `define-public' or `export'.
6190
6191Example:
6192
311b6a3c
MV
6193 (define-module (foo)
6194 :pure
6195 :use-module (ice-9 r5rs)
6196 :export (bar))
69b5f65a 6197
311b6a3c 6198 ;;; Note that we're pure R5RS below this point!
69b5f65a 6199
311b6a3c
MV
6200 (define (bar)
6201 ...)
daa6ba18 6202
1f3908c4
KN
6203** New function: object->string OBJ
6204
6205Return a Scheme string obtained by printing a given object.
6206
eb5c0a2a
GH
6207** New function: port? X
6208
6209Returns a boolean indicating whether X is a port. Equivalent to
6210`(or (input-port? X) (output-port? X))'.
6211
efa40607
DH
6212** New function: file-port?
6213
6214Determines whether a given object is a port that is related to a file.
6215
34b56ec4
GH
6216** New function: port-for-each proc
6217
311b6a3c
MV
6218Apply PROC to each port in the Guile port table in turn. The return
6219value is unspecified. More specifically, PROC is applied exactly once
6220to every port that exists in the system at the time PORT-FOR-EACH is
6221invoked. Changes to the port table while PORT-FOR-EACH is running
6222have no effect as far as PORT-FOR-EACH is concerned.
34b56ec4
GH
6223
6224** New function: dup2 oldfd newfd
6225
6226A simple wrapper for the `dup2' system call. Copies the file
6227descriptor OLDFD to descriptor number NEWFD, replacing the
6228previous meaning of NEWFD. Both OLDFD and NEWFD must be integers.
6229Unlike for dup->fdes or primitive-move->fdes, no attempt is made
264e9cbc 6230to move away ports which are using NEWFD. The return value is
34b56ec4
GH
6231unspecified.
6232
6233** New function: close-fdes fd
6234
6235A simple wrapper for the `close' system call. Close file
6236descriptor FD, which must be an integer. Unlike close (*note
6237close: Ports and File Descriptors.), the file descriptor will be
6238closed even if a port is using it. The return value is
6239unspecified.
6240
94e6d793
MG
6241** New function: crypt password salt
6242
6243Encrypts `password' using the standard unix password encryption
6244algorithm.
6245
6246** New function: chroot path
6247
6248Change the root directory of the running process to `path'.
6249
6250** New functions: getlogin, cuserid
6251
6252Return the login name or the user name of the current effective user
6253id, respectively.
6254
6255** New functions: getpriority which who, setpriority which who prio
6256
6257Get or set the priority of the running process.
6258
6259** New function: getpass prompt
6260
6261Read a password from the terminal, first displaying `prompt' and
6262disabling echoing.
6263
6264** New function: flock file operation
6265
6266Set/remove an advisory shared or exclusive lock on `file'.
6267
6268** New functions: sethostname name, gethostname
6269
6270Set or get the hostname of the machine the current process is running
6271on.
6272
6d163216 6273** New function: mkstemp! tmpl
4f60cc33 6274
6d163216
GH
6275mkstemp creates a new unique file in the file system and returns a
6276new buffered port open for reading and writing to the file. TMPL
6277is a string specifying where the file should be created: it must
6278end with `XXXXXX' and will be changed in place to return the name
6279of the temporary file.
6280
62e63ba9
MG
6281** New function: open-input-string string
6282
6283Return an input string port which delivers the characters from
4f60cc33 6284`string'. This procedure, together with `open-output-string' and
62e63ba9
MG
6285`get-output-string' implements SRFI-6.
6286
6287** New function: open-output-string
6288
6289Return an output string port which collects all data written to it.
6290The data can then be retrieved by `get-output-string'.
6291
6292** New function: get-output-string
6293
6294Return the contents of an output string port.
6295
56426fdb
KN
6296** New function: identity
6297
6298Return the argument.
6299
5bef627d
GH
6300** socket, connect, accept etc., now have support for IPv6. IPv6 addresses
6301 are represented in Scheme as integers with normal host byte ordering.
6302
6303** New function: inet-pton family address
6304
311b6a3c
MV
6305Convert a printable string network address into an integer. Note that
6306unlike the C version of this function, the result is an integer with
6307normal host byte ordering. FAMILY can be `AF_INET' or `AF_INET6'.
6308e.g.,
6309
6310 (inet-pton AF_INET "127.0.0.1") => 2130706433
6311 (inet-pton AF_INET6 "::1") => 1
5bef627d
GH
6312
6313** New function: inet-ntop family address
6314
311b6a3c
MV
6315Convert an integer network address into a printable string. Note that
6316unlike the C version of this function, the input is an integer with
6317normal host byte ordering. FAMILY can be `AF_INET' or `AF_INET6'.
6318e.g.,
6319
6320 (inet-ntop AF_INET 2130706433) => "127.0.0.1"
6321 (inet-ntop AF_INET6 (- (expt 2 128) 1)) =>
5bef627d
GH
6322 ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
6323
56426fdb
KN
6324** Deprecated: id
6325
6326Use `identity' instead.
6327
5cd06d5e
DH
6328** Deprecated: -1+
6329
6330Use `1-' instead.
6331
6332** Deprecated: return-it
6333
311b6a3c 6334Do without it.
5cd06d5e
DH
6335
6336** Deprecated: string-character-length
6337
6338Use `string-length' instead.
6339
6340** Deprecated: flags
6341
6342Use `logior' instead.
6343
4f60cc33
NJ
6344** Deprecated: close-all-ports-except.
6345
6346This was intended for closing ports in a child process after a fork,
6347but it has the undesirable side effect of flushing buffers.
6348port-for-each is more flexible.
34b56ec4
GH
6349
6350** The (ice-9 popen) module now attempts to set up file descriptors in
6351the child process from the current Scheme ports, instead of using the
6352current values of file descriptors 0, 1, and 2 in the parent process.
6353
b52e071b
DH
6354** Removed function: builtin-weak-bindings
6355
6356There is no such concept as a weak binding any more.
6357
9d774814 6358** Removed constants: bignum-radix, scm-line-incrementors
0f979f3f 6359
7d435120
MD
6360** define-method: New syntax mandatory.
6361
6362The new method syntax is now mandatory:
6363
6364(define-method (NAME ARG-SPEC ...) BODY ...)
6365(define-method (NAME ARG-SPEC ... . REST-ARG) BODY ...)
6366
6367 ARG-SPEC ::= ARG-NAME | (ARG-NAME TYPE)
6368 REST-ARG ::= ARG-NAME
6369
6370If you have old code using the old syntax, import
6371(oop goops old-define-method) before (oop goops) as in:
6372
6373 (use-modules (oop goops old-define-method) (oop goops))
6374
f3f9dcbc
MV
6375** Deprecated function: builtin-variable
6376 Removed function: builtin-bindings
6377
6378There is no longer a distinction between builtin or other variables.
6379Use module system operations for all variables.
6380
311b6a3c
MV
6381** Lazy-catch handlers are no longer allowed to return.
6382
6383That is, a call to `throw', `error', etc is now guaranteed to not
6384return.
6385
a583bf1e 6386** Bugfixes for (ice-9 getopt-long)
8c84b81e 6387
a583bf1e
TTN
6388This module is now tested using test-suite/tests/getopt-long.test.
6389The following bugs have been fixed:
6390
6391*** Parsing for options that are specified to have `optional' args now checks
6392if the next element is an option instead of unconditionally taking it as the
8c84b81e
TTN
6393option arg.
6394
a583bf1e
TTN
6395*** An error is now thrown for `--opt=val' when the option description
6396does not specify `(value #t)' or `(value optional)'. This condition used to
6397be accepted w/o error, contrary to the documentation.
6398
6399*** The error message for unrecognized options is now more informative.
6400It used to be "not a record", an artifact of the implementation.
6401
6402*** The error message for `--opt' terminating the arg list (no value), when
6403`(value #t)' is specified, is now more informative. It used to be "not enough
6404args".
6405
6406*** "Clumped" single-char args now preserve trailing string, use it as arg.
6407The expansion used to be like so:
6408
6409 ("-abc5d" "--xyz") => ("-a" "-b" "-c" "--xyz")
6410
6411Note that the "5d" is dropped. Now it is like so:
6412
6413 ("-abc5d" "--xyz") => ("-a" "-b" "-c" "5d" "--xyz")
6414
6415This enables single-char options to have adjoining arguments as long as their
6416constituent characters are not potential single-char options.
8c84b81e 6417
998bfc70
TTN
6418** (ice-9 session) procedure `arity' now works with (ice-9 optargs) `lambda*'
6419
6420The `lambda*' and derivative forms in (ice-9 optargs) now set a procedure
6421property `arglist', which can be retrieved by `arity'. The result is that
6422`arity' can give more detailed information than before:
6423
6424Before:
6425
6426 guile> (use-modules (ice-9 optargs))
6427 guile> (define* (foo #:optional a b c) a)
6428 guile> (arity foo)
6429 0 or more arguments in `lambda*:G0'.
6430
6431After:
6432
6433 guile> (arity foo)
6434 3 optional arguments: `a', `b' and `c'.
6435 guile> (define* (bar a b #:key c d #:allow-other-keys) a)
6436 guile> (arity bar)
6437 2 required arguments: `a' and `b', 2 keyword arguments: `c'
6438 and `d', other keywords allowed.
6439 guile> (define* (baz a b #:optional c #:rest r) a)
6440 guile> (arity baz)
6441 2 required arguments: `a' and `b', 1 optional argument: `c',
6442 the rest in `r'.
6443
311b6a3c
MV
6444* Changes to the C interface
6445
c81c130e
MV
6446** Types have been renamed from scm_*_t to scm_t_*.
6447
6448This has been done for POSIX sake. It reserves identifiers ending
6449with "_t". What a concept.
6450
6451The old names are still available with status `deprecated'.
6452
6453** scm_t_bits (former scm_bits_t) is now a unsigned type.
6454
6e9382f1 6455** Deprecated features have been removed.
e6c9e497
MV
6456
6457*** Macros removed
6458
6459 SCM_INPORTP, SCM_OUTPORTP SCM_ICHRP, SCM_ICHR, SCM_MAKICHR
6460 SCM_SETJMPBUF SCM_NSTRINGP SCM_NRWSTRINGP SCM_NVECTORP SCM_DOUBLE_CELLP
6461
6462*** C Functions removed
6463
6464 scm_sysmissing scm_tag scm_tc16_flo scm_tc_flo
6465 scm_fseek - replaced by scm_seek.
6466 gc-thunk - replaced by after-gc-hook.
6467 gh_int2scmb - replaced by gh_bool2scm.
6468 scm_tc_dblr - replaced by scm_tc16_real.
6469 scm_tc_dblc - replaced by scm_tc16_complex.
6470 scm_list_star - replaced by scm_cons_star.
6471
36284627
DH
6472** Deprecated: scm_makfromstr
6473
6474Use scm_mem2string instead.
6475
311b6a3c
MV
6476** Deprecated: scm_make_shared_substring
6477
6478Explicit shared substrings will disappear from Guile.
6479
6480Instead, "normal" strings will be implemented using sharing
6481internally, combined with a copy-on-write strategy.
6482
6483** Deprecated: scm_read_only_string_p
6484
6485The concept of read-only strings will disappear in next release of
6486Guile.
6487
6488** Deprecated: scm_sloppy_memq, scm_sloppy_memv, scm_sloppy_member
c299f186 6489
311b6a3c 6490Instead, use scm_c_memq or scm_memq, scm_memv, scm_member.
c299f186 6491
dd0e04ed
KN
6492** New functions: scm_call_0, scm_call_1, scm_call_2, scm_call_3
6493
83dbedcc
KR
6494Call a procedure with the indicated number of arguments. See "Fly
6495Evaluation" in the manual.
dd0e04ed
KN
6496
6497** New functions: scm_apply_0, scm_apply_1, scm_apply_2, scm_apply_3
6498
83dbedcc
KR
6499Call a procedure with the indicated number of arguments and a list of
6500further arguments. See "Fly Evaluation" in the manual.
dd0e04ed 6501
e235f2a6
KN
6502** New functions: scm_list_1, scm_list_2, scm_list_3, scm_list_4, scm_list_5
6503
83dbedcc
KR
6504Create a list of the given number of elements. See "List
6505Constructors" in the manual.
e235f2a6
KN
6506
6507** Renamed function: scm_listify has been replaced by scm_list_n.
6508
6509** Deprecated macros: SCM_LIST0, SCM_LIST1, SCM_LIST2, SCM_LIST3, SCM_LIST4,
6510SCM_LIST5, SCM_LIST6, SCM_LIST7, SCM_LIST8, SCM_LIST9.
6511
6512Use functions scm_list_N instead.
6513
6fe692e9
MD
6514** New function: scm_c_read (SCM port, void *buffer, scm_sizet size)
6515
6516Used by an application to read arbitrary number of bytes from a port.
6517Same semantics as libc read, except that scm_c_read only returns less
6518than SIZE bytes if at end-of-file.
6519
6520Warning: Doesn't update port line and column counts!
6521
6522** New function: scm_c_write (SCM port, const void *ptr, scm_sizet size)
6523
6524Used by an application to write arbitrary number of bytes to an SCM
6525port. Similar semantics as libc write. However, unlike libc
6526write, scm_c_write writes the requested number of bytes and has no
6527return value.
6528
6529Warning: Doesn't update port line and column counts!
6530
17f367e0
MV
6531** New function: scm_init_guile ()
6532
6533In contrast to scm_boot_guile, scm_init_guile will return normally
6534after initializing Guile. It is not available on all systems, tho.
6535
23ade5e7
DH
6536** New functions: scm_str2symbol, scm_mem2symbol
6537
6538The function scm_str2symbol takes a const char* pointing to a zero-terminated
6539field of characters and creates a scheme symbol object from that C string.
6540The function scm_mem2symbol takes a const char* and a number of characters and
6541creates a symbol from the characters in that memory area.
6542
17f367e0
MV
6543** New functions: scm_primitive_make_property
6544 scm_primitive_property_ref
6545 scm_primitive_property_set_x
6546 scm_primitive_property_del_x
6547
6548These functions implement a new way to deal with object properties.
6549See libguile/properties.c for their documentation.
6550
9d47a1e6
ML
6551** New function: scm_done_free (long size)
6552
6553This function is the inverse of scm_done_malloc. Use it to report the
6554amount of smob memory you free. The previous method, which involved
6555calling scm_done_malloc with negative argument, was somewhat
6556unintuitive (and is still available, of course).
6557
79a3dafe
DH
6558** New function: scm_c_memq (SCM obj, SCM list)
6559
6560This function provides a fast C level alternative for scm_memq for the case
6561that the list parameter is known to be a proper list. The function is a
6562replacement for scm_sloppy_memq, but is stricter in its requirements on its
6563list input parameter, since for anything else but a proper list the function's
6564behaviour is undefined - it may even crash or loop endlessly. Further, for
6565the case that the object is not found in the list, scm_c_memq returns #f which
6566is similar to scm_memq, but different from scm_sloppy_memq's behaviour.
6567
6c0201ad 6568** New functions: scm_remember_upto_here_1, scm_remember_upto_here_2,
5d2b97cd
DH
6569scm_remember_upto_here
6570
6571These functions replace the function scm_remember.
6572
6573** Deprecated function: scm_remember
6574
6575Use one of the new functions scm_remember_upto_here_1,
6576scm_remember_upto_here_2 or scm_remember_upto_here instead.
6577
be54b15d
DH
6578** New function: scm_allocate_string
6579
6580This function replaces the function scm_makstr.
6581
6582** Deprecated function: scm_makstr
6583
6584Use the new function scm_allocate_string instead.
6585
32d0d4b1
DH
6586** New global variable scm_gc_running_p introduced.
6587
6588Use this variable to find out if garbage collection is being executed. Up to
6589now applications have used scm_gc_heap_lock to test if garbage collection was
6590running, which also works because of the fact that up to know only the garbage
6591collector has set this variable. But, this is an implementation detail that
6592may change. Further, scm_gc_heap_lock is not set throughout gc, thus the use
6593of this variable is (and has been) not fully safe anyway.
6594
5b9eb8ae
DH
6595** New macros: SCM_BITVECTOR_MAX_LENGTH, SCM_UVECTOR_MAX_LENGTH
6596
6597Use these instead of SCM_LENGTH_MAX.
6598
6c0201ad 6599** New macros: SCM_CONTINUATION_LENGTH, SCM_CCLO_LENGTH, SCM_STACK_LENGTH,
a6d9e5ab
DH
6600SCM_STRING_LENGTH, SCM_SYMBOL_LENGTH, SCM_UVECTOR_LENGTH,
6601SCM_BITVECTOR_LENGTH, SCM_VECTOR_LENGTH.
6602
6603Use these instead of SCM_LENGTH.
6604
6c0201ad 6605** New macros: SCM_SET_CONTINUATION_LENGTH, SCM_SET_STRING_LENGTH,
93778877
DH
6606SCM_SET_SYMBOL_LENGTH, SCM_SET_VECTOR_LENGTH, SCM_SET_UVECTOR_LENGTH,
6607SCM_SET_BITVECTOR_LENGTH
bc0eaf7b
DH
6608
6609Use these instead of SCM_SETLENGTH
6610
6c0201ad 6611** New macros: SCM_STRING_CHARS, SCM_SYMBOL_CHARS, SCM_CCLO_BASE,
a6d9e5ab
DH
6612SCM_VECTOR_BASE, SCM_UVECTOR_BASE, SCM_BITVECTOR_BASE, SCM_COMPLEX_MEM,
6613SCM_ARRAY_MEM
6614
e51fe79c
DH
6615Use these instead of SCM_CHARS, SCM_UCHARS, SCM_ROCHARS, SCM_ROUCHARS or
6616SCM_VELTS.
a6d9e5ab 6617
6c0201ad 6618** New macros: SCM_SET_BIGNUM_BASE, SCM_SET_STRING_CHARS,
6a0476fd
DH
6619SCM_SET_SYMBOL_CHARS, SCM_SET_UVECTOR_BASE, SCM_SET_BITVECTOR_BASE,
6620SCM_SET_VECTOR_BASE
6621
6622Use these instead of SCM_SETCHARS.
6623
a6d9e5ab
DH
6624** New macro: SCM_BITVECTOR_P
6625
6626** New macro: SCM_STRING_COERCE_0TERMINATION_X
6627
6628Use instead of SCM_COERCE_SUBSTR.
6629
30ea841d
DH
6630** New macros: SCM_DIR_OPEN_P, SCM_DIR_FLAG_OPEN
6631
6632For directory objects, use these instead of SCM_OPDIRP and SCM_OPN.
6633
6c0201ad
TTN
6634** Deprecated macros: SCM_OUTOFRANGE, SCM_NALLOC, SCM_HUP_SIGNAL,
6635SCM_INT_SIGNAL, SCM_FPE_SIGNAL, SCM_BUS_SIGNAL, SCM_SEGV_SIGNAL,
6636SCM_ALRM_SIGNAL, SCM_GC_SIGNAL, SCM_TICK_SIGNAL, SCM_SIG_ORD,
d1ca2c64 6637SCM_ORD_SIG, SCM_NUM_SIGS, SCM_SYMBOL_SLOTS, SCM_SLOTS, SCM_SLOPPY_STRINGP,
a6d9e5ab
DH
6638SCM_VALIDATE_STRINGORSUBSTR, SCM_FREEP, SCM_NFREEP, SCM_CHARS, SCM_UCHARS,
6639SCM_VALIDATE_ROSTRING, SCM_VALIDATE_ROSTRING_COPY,
6640SCM_VALIDATE_NULLORROSTRING_COPY, SCM_ROLENGTH, SCM_LENGTH, SCM_HUGE_LENGTH,
b24b5e13 6641SCM_SUBSTRP, SCM_SUBSTR_STR, SCM_SUBSTR_OFFSET, SCM_COERCE_SUBSTR,
34f0f2b8 6642SCM_ROSTRINGP, SCM_RWSTRINGP, SCM_VALIDATE_RWSTRING, SCM_ROCHARS,
fd336365 6643SCM_ROUCHARS, SCM_SETLENGTH, SCM_SETCHARS, SCM_LENGTH_MAX, SCM_GC8MARKP,
30ea841d 6644SCM_SETGC8MARK, SCM_CLRGC8MARK, SCM_GCTYP16, SCM_GCCDR, SCM_SUBR_DOC,
b3fcac34
DH
6645SCM_OPDIRP, SCM_VALIDATE_OPDIR, SCM_WTA, RETURN_SCM_WTA, SCM_CONST_LONG,
6646SCM_WNA, SCM_FUNC_NAME, SCM_VALIDATE_NUMBER_COPY,
61045190 6647SCM_VALIDATE_NUMBER_DEF_COPY, SCM_SLOPPY_CONSP, SCM_SLOPPY_NCONSP,
e038c042 6648SCM_SETAND_CDR, SCM_SETOR_CDR, SCM_SETAND_CAR, SCM_SETOR_CAR
b63a956d
DH
6649
6650Use SCM_ASSERT_RANGE or SCM_VALIDATE_XXX_RANGE instead of SCM_OUTOFRANGE.
6651Use scm_memory_error instead of SCM_NALLOC.
c1aef037 6652Use SCM_STRINGP instead of SCM_SLOPPY_STRINGP.
d1ca2c64
DH
6653Use SCM_VALIDATE_STRING instead of SCM_VALIDATE_STRINGORSUBSTR.
6654Use SCM_FREE_CELL_P instead of SCM_FREEP/SCM_NFREEP
a6d9e5ab 6655Use a type specific accessor macro instead of SCM_CHARS/SCM_UCHARS.
6c0201ad 6656Use a type specific accessor instead of SCM(_|_RO|_HUGE_)LENGTH.
a6d9e5ab
DH
6657Use SCM_VALIDATE_(SYMBOL|STRING) instead of SCM_VALIDATE_ROSTRING.
6658Use SCM_STRING_COERCE_0TERMINATION_X instead of SCM_COERCE_SUBSTR.
b24b5e13 6659Use SCM_STRINGP or SCM_SYMBOLP instead of SCM_ROSTRINGP.
f0942910
DH
6660Use SCM_STRINGP instead of SCM_RWSTRINGP.
6661Use SCM_VALIDATE_STRING instead of SCM_VALIDATE_RWSTRING.
34f0f2b8
DH
6662Use SCM_STRING_CHARS instead of SCM_ROCHARS.
6663Use SCM_STRING_UCHARS instead of SCM_ROUCHARS.
93778877 6664Use a type specific setter macro instead of SCM_SETLENGTH.
6a0476fd 6665Use a type specific setter macro instead of SCM_SETCHARS.
5b9eb8ae 6666Use a type specific length macro instead of SCM_LENGTH_MAX.
fd336365
DH
6667Use SCM_GCMARKP instead of SCM_GC8MARKP.
6668Use SCM_SETGCMARK instead of SCM_SETGC8MARK.
6669Use SCM_CLRGCMARK instead of SCM_CLRGC8MARK.
6670Use SCM_TYP16 instead of SCM_GCTYP16.
6671Use SCM_CDR instead of SCM_GCCDR.
30ea841d 6672Use SCM_DIR_OPEN_P instead of SCM_OPDIRP.
276dd677
DH
6673Use SCM_MISC_ERROR or SCM_WRONG_TYPE_ARG instead of SCM_WTA.
6674Use SCM_MISC_ERROR or SCM_WRONG_TYPE_ARG instead of RETURN_SCM_WTA.
8dea8611 6675Use SCM_VCELL_INIT instead of SCM_CONST_LONG.
b3fcac34 6676Use SCM_WRONG_NUM_ARGS instead of SCM_WNA.
ced99e92
DH
6677Use SCM_CONSP instead of SCM_SLOPPY_CONSP.
6678Use !SCM_CONSP instead of SCM_SLOPPY_NCONSP.
b63a956d 6679
f7620510
DH
6680** Removed function: scm_struct_init
6681
93d40df2
DH
6682** Removed variable: scm_symhash_dim
6683
818febc0
GH
6684** Renamed function: scm_make_cont has been replaced by
6685scm_make_continuation, which has a different interface.
6686
cc4feeca
DH
6687** Deprecated function: scm_call_catching_errors
6688
6689Use scm_catch or scm_lazy_catch from throw.[ch] instead.
6690
28b06554
DH
6691** Deprecated function: scm_strhash
6692
6693Use scm_string_hash instead.
6694
1b9be268
DH
6695** Deprecated function: scm_vector_set_length_x
6696
6697Instead, create a fresh vector of the desired size and copy the contents.
6698
302f229e
MD
6699** scm_gensym has changed prototype
6700
6701scm_gensym now only takes one argument.
6702
1660782e
DH
6703** Deprecated type tags: scm_tc7_ssymbol, scm_tc7_msymbol, scm_tcs_symbols,
6704scm_tc7_lvector
28b06554
DH
6705
6706There is now only a single symbol type scm_tc7_symbol.
1660782e 6707The tag scm_tc7_lvector was not used anyway.
28b06554 6708
2f6fb7c5
KN
6709** Deprecated function: scm_make_smob_type_mfpe, scm_set_smob_mfpe.
6710
6711Use scm_make_smob_type and scm_set_smob_XXX instead.
6712
6713** New function scm_set_smob_apply.
6714
6715This can be used to set an apply function to a smob type.
6716
1f3908c4
KN
6717** Deprecated function: scm_strprint_obj
6718
6719Use scm_object_to_string instead.
6720
b3fcac34
DH
6721** Deprecated function: scm_wta
6722
6723Use scm_wrong_type_arg, or another appropriate error signalling function
6724instead.
6725
f3f9dcbc
MV
6726** Explicit support for obarrays has been deprecated.
6727
6728Use `scm_str2symbol' and the generic hashtable functions instead.
6729
6730** The concept of `vcells' has been deprecated.
6731
6732The data type `variable' is now used exclusively. `Vcells' have been
6733a low-level concept so you are likely not affected by this change.
6734
6735*** Deprecated functions: scm_sym2vcell, scm_sysintern,
6736 scm_sysintern0, scm_symbol_value0, scm_intern, scm_intern0.
6737
6738Use scm_c_define or scm_c_lookup instead, as appropriate.
6739
6740*** New functions: scm_c_module_lookup, scm_c_lookup,
6741 scm_c_module_define, scm_c_define, scm_module_lookup, scm_lookup,
6742 scm_module_define, scm_define.
6743
6744These functions work with variables instead of with vcells.
6745
311b6a3c
MV
6746** New functions for creating and defining `subr's and `gsubr's.
6747
6748The new functions more clearly distinguish between creating a subr (or
6749gsubr) object and adding it to the current module.
6750
6751These new functions are available: scm_c_make_subr, scm_c_define_subr,
6752scm_c_make_subr_with_generic, scm_c_define_subr_with_generic,
6753scm_c_make_gsubr, scm_c_define_gsubr, scm_c_make_gsubr_with_generic,
6754scm_c_define_gsubr_with_generic.
6755
6756** Deprecated functions: scm_make_subr, scm_make_subr_opt,
6757 scm_make_subr_with_generic, scm_make_gsubr,
6758 scm_make_gsubr_with_generic.
6759
6760Use the new ones from above instead.
6761
6762** C interface to the module system has changed.
6763
6764While we suggest that you avoid as many explicit module system
6765operations from C as possible for the time being, the C interface has
6766been made more similar to the high-level Scheme module system.
6767
6768*** New functions: scm_c_define_module, scm_c_use_module,
6769 scm_c_export, scm_c_resolve_module.
6770
6771They mostly work like their Scheme namesakes. scm_c_define_module
6772takes a function that is called a context where the new module is
6773current.
6774
6775*** Deprecated functions: scm_the_root_module, scm_make_module,
6776 scm_ensure_user_module, scm_load_scheme_module.
6777
6778Use the new functions instead.
6779
6780** Renamed function: scm_internal_with_fluids becomes
6781 scm_c_with_fluids.
6782
6783scm_internal_with_fluids is available as a deprecated function.
6784
6785** New function: scm_c_with_fluid.
6786
6787Just like scm_c_with_fluids, but takes one fluid and one value instead
6788of lists of same.
6789
1be6b49c
ML
6790** Deprecated typedefs: long_long, ulong_long.
6791
6792They are of questionable utility and they pollute the global
6793namespace.
6794
1be6b49c
ML
6795** Deprecated typedef: scm_sizet
6796
6797It is of questionable utility now that Guile requires ANSI C, and is
6798oddly named.
6799
6800** Deprecated typedefs: scm_port_rw_active, scm_port,
6801 scm_ptob_descriptor, scm_debug_info, scm_debug_frame, scm_fport,
6802 scm_option, scm_rstate, scm_rng, scm_array, scm_array_dim.
6803
6804Made more compliant with the naming policy by adding a _t at the end.
6805
6806** Deprecated functions: scm_mkbig, scm_big2num, scm_adjbig,
6807 scm_normbig, scm_copybig, scm_2ulong2big, scm_dbl2big, scm_big2dbl
6808
373f4948 6809With the exception of the mysterious scm_2ulong2big, they are still
1be6b49c
ML
6810available under new names (scm_i_mkbig etc). These functions are not
6811intended to be used in user code. You should avoid dealing with
6812bignums directly, and should deal with numbers in general (which can
6813be bignums).
6814
147c18a0
MD
6815** Change in behavior: scm_num2long, scm_num2ulong
6816
6817The scm_num2[u]long functions don't any longer accept an inexact
6818argument. This change in behavior is motivated by concordance with
6819R5RS: It is more common that a primitive doesn't want to accept an
6820inexact for an exact.
6821
1be6b49c 6822** New functions: scm_short2num, scm_ushort2num, scm_int2num,
f3f70257
ML
6823 scm_uint2num, scm_size2num, scm_ptrdiff2num, scm_num2short,
6824 scm_num2ushort, scm_num2int, scm_num2uint, scm_num2ptrdiff,
1be6b49c
ML
6825 scm_num2size.
6826
6827These are conversion functions between the various ANSI C integral
147c18a0
MD
6828types and Scheme numbers. NOTE: The scm_num2xxx functions don't
6829accept an inexact argument.
1be6b49c 6830
5437598b
MD
6831** New functions: scm_float2num, scm_double2num,
6832 scm_num2float, scm_num2double.
6833
6834These are conversion functions between the two ANSI C float types and
6835Scheme numbers.
6836
1be6b49c 6837** New number validation macros:
f3f70257 6838 SCM_NUM2{SIZE,PTRDIFF,SHORT,USHORT,INT,UINT}[_DEF]
1be6b49c
ML
6839
6840See above.
6841
fc62c86a
ML
6842** New functions: scm_gc_protect_object, scm_gc_unprotect_object
6843
6844These are just nicer-named old scm_protect_object and
6845scm_unprotect_object.
6846
6847** Deprecated functions: scm_protect_object, scm_unprotect_object
6848
6849** New functions: scm_gc_[un]register_root, scm_gc_[un]register_roots
6850
6851These functions can be used to register pointers to locations that
6852hold SCM values.
6853
5b2ad23b
ML
6854** Deprecated function: scm_create_hook.
6855
6856Its sins are: misleading name, non-modularity and lack of general
6857usefulness.
6858
c299f186 6859\f
cc36e791
JB
6860Changes since Guile 1.3.4:
6861
80f27102
JB
6862* Changes to the distribution
6863
ce358662
JB
6864** Trees from nightly snapshots and CVS now require you to run autogen.sh.
6865
6866We've changed the way we handle generated files in the Guile source
6867repository. As a result, the procedure for building trees obtained
6868from the nightly FTP snapshots or via CVS has changed:
6869- You must have appropriate versions of autoconf, automake, and
6870 libtool installed on your system. See README for info on how to
6871 obtain these programs.
6872- Before configuring the tree, you must first run the script
6873 `autogen.sh' at the top of the source tree.
6874
6875The Guile repository used to contain not only source files, written by
6876humans, but also some generated files, like configure scripts and
6877Makefile.in files. Even though the contents of these files could be
6878derived mechanically from other files present, we thought it would
6879make the tree easier to build if we checked them into CVS.
6880
6881However, this approach means that minor differences between
6882developer's installed tools and habits affected the whole team.
6883So we have removed the generated files from the repository, and
6884added the autogen.sh script, which will reconstruct them
6885appropriately.
6886
6887
dc914156
GH
6888** configure now has experimental options to remove support for certain
6889features:
52cfc69b 6890
dc914156
GH
6891--disable-arrays omit array and uniform array support
6892--disable-posix omit posix interfaces
6893--disable-networking omit networking interfaces
6894--disable-regex omit regular expression interfaces
52cfc69b
GH
6895
6896These are likely to become separate modules some day.
6897
9764c29b 6898** New configure option --enable-debug-freelist
e1b0d0ac 6899
38a15cfd
GB
6900This enables a debugging version of SCM_NEWCELL(), and also registers
6901an extra primitive, the setter `gc-set-debug-check-freelist!'.
6902
6903Configure with the --enable-debug-freelist option to enable
6904the gc-set-debug-check-freelist! primitive, and then use:
6905
6906(gc-set-debug-check-freelist! #t) # turn on checking of the freelist
6907(gc-set-debug-check-freelist! #f) # turn off checking
6908
6909Checking of the freelist forces a traversal of the freelist and
6910a garbage collection before each allocation of a cell. This can
6911slow down the interpreter dramatically, so the setter should be used to
6912turn on this extra processing only when necessary.
e1b0d0ac 6913
9764c29b
MD
6914** New configure option --enable-debug-malloc
6915
6916Include code for debugging of calls to scm_must_malloc/realloc/free.
6917
6918Checks that
6919
69201. objects freed by scm_must_free has been mallocated by scm_must_malloc
69212. objects reallocated by scm_must_realloc has been allocated by
6922 scm_must_malloc
69233. reallocated objects are reallocated with the same what string
6924
6925But, most importantly, it records the number of allocated objects of
6926each kind. This is useful when searching for memory leaks.
6927
6928A Guile compiled with this option provides the primitive
6929`malloc-stats' which returns an alist with pairs of kind and the
6930number of objects of that kind.
6931
e415cb06
MD
6932** All includes are now referenced relative to the root directory
6933
6934Since some users have had problems with mixups between Guile and
6935system headers, we have decided to always refer to Guile headers via
6936their parent directories. This essentially creates a "private name
6937space" for Guile headers. This means that the compiler only is given
6938-I options for the root build and root source directory.
6939
341f78c9
MD
6940** Header files kw.h and genio.h have been removed.
6941
6942** The module (ice-9 getopt-gnu-style) has been removed.
6943
e8855f8d
MD
6944** New module (ice-9 documentation)
6945
6946Implements the interface to documentation strings associated with
6947objects.
6948
0c0ffe09
KN
6949** New module (ice-9 time)
6950
6951Provides a macro `time', which displays execution time of a given form.
6952
cf7a5ee5
KN
6953** New module (ice-9 history)
6954
6955Loading this module enables value history in the repl.
6956
0af43c4a 6957* Changes to the stand-alone interpreter
bd9e24b3 6958
67ef2dca
MD
6959** New command line option --debug
6960
6961Start Guile with debugging evaluator and backtraces enabled.
6962
6963This is useful when debugging your .guile init file or scripts.
6964
aa4bb95d
MD
6965** New help facility
6966
341f78c9
MD
6967Usage: (help NAME) gives documentation about objects named NAME (a symbol)
6968 (help REGEXP) ditto for objects with names matching REGEXP (a string)
58e5b910 6969 (help 'NAME) gives documentation for NAME, even if it is not an object
341f78c9 6970 (help ,EXPR) gives documentation for object returned by EXPR
6c0201ad 6971 (help (my module)) gives module commentary for `(my module)'
341f78c9
MD
6972 (help) gives this text
6973
6974`help' searches among bindings exported from loaded modules, while
6975`apropos' searches among bindings visible from the "current" module.
6976
6977Examples: (help help)
6978 (help cons)
6979 (help "output-string")
aa4bb95d 6980
e8855f8d
MD
6981** `help' and `apropos' now prints full module names
6982
0af43c4a 6983** Dynamic linking now uses libltdl from the libtool package.
bd9e24b3 6984
0af43c4a
MD
6985The old system dependent code for doing dynamic linking has been
6986replaced with calls to the libltdl functions which do all the hairy
6987details for us.
bd9e24b3 6988
0af43c4a
MD
6989The major improvement is that you can now directly pass libtool
6990library names like "libfoo.la" to `dynamic-link' and `dynamic-link'
6991will be able to do the best shared library job you can get, via
6992libltdl.
bd9e24b3 6993
0af43c4a
MD
6994The way dynamic libraries are found has changed and is not really
6995portable across platforms, probably. It is therefore recommended to
6996use absolute filenames when possible.
6997
6998If you pass a filename without an extension to `dynamic-link', it will
6999try a few appropriate ones. Thus, the most platform ignorant way is
7000to specify a name like "libfoo", without any directories and
7001extensions.
0573ddae 7002
91163914
MD
7003** Guile COOP threads are now compatible with LinuxThreads
7004
7005Previously, COOP threading wasn't possible in applications linked with
7006Linux POSIX threads due to their use of the stack pointer to find the
7007thread context. This has now been fixed with a workaround which uses
7008the pthreads to allocate the stack.
7009
6c0201ad 7010** New primitives: `pkgdata-dir', `site-dir', `library-dir'
62b82274 7011
9770d235
MD
7012** Positions of erring expression in scripts
7013
7014With version 1.3.4, the location of the erring expression in Guile
7015scipts is no longer automatically reported. (This should have been
7016documented before the 1.3.4 release.)
7017
7018You can get this information by enabling recording of positions of
7019source expressions and running the debugging evaluator. Put this at
7020the top of your script (or in your "site" file):
7021
7022 (read-enable 'positions)
7023 (debug-enable 'debug)
7024
0573ddae
MD
7025** Backtraces in scripts
7026
7027It is now possible to get backtraces in scripts.
7028
7029Put
7030
7031 (debug-enable 'debug 'backtrace)
7032
7033at the top of the script.
7034
7035(The first options enables the debugging evaluator.
7036 The second enables backtraces.)
7037
e8855f8d
MD
7038** Part of module system symbol lookup now implemented in C
7039
7040The eval closure of most modules is now implemented in C. Since this
7041was one of the bottlenecks for loading speed, Guile now loads code
7042substantially faster than before.
7043
f25f761d
GH
7044** Attempting to get the value of an unbound variable now produces
7045an exception with a key of 'unbound-variable instead of 'misc-error.
7046
1a35eadc
GH
7047** The initial default output port is now unbuffered if it's using a
7048tty device. Previously in this situation it was line-buffered.
7049
820920e6
MD
7050** New hook: after-gc-hook
7051
7052after-gc-hook takes over the role of gc-thunk. This hook is run at
7053the first SCM_TICK after a GC. (Thus, the code is run at the same
7054point during evaluation as signal handlers.)
7055
7056Note that this hook should be used only for diagnostic and debugging
7057purposes. It is not certain that it will continue to be well-defined
7058when this hook is run in the future.
7059
7060C programmers: Note the new C level hooks scm_before_gc_c_hook,
7061scm_before_sweep_c_hook, scm_after_gc_c_hook.
7062
b5074b23
MD
7063** Improvements to garbage collector
7064
7065Guile 1.4 has a new policy for triggering heap allocation and
7066determining the sizes of heap segments. It fixes a number of problems
7067in the old GC.
7068
70691. The new policy can handle two separate pools of cells
7070 (2-word/4-word) better. (The old policy would run wild, allocating
7071 more and more memory for certain programs.)
7072
70732. The old code would sometimes allocate far too much heap so that the
7074 Guile process became gigantic. The new code avoids this.
7075
70763. The old code would sometimes allocate too little so that few cells
7077 were freed at GC so that, in turn, too much time was spent in GC.
7078
70794. The old code would often trigger heap allocation several times in a
7080 row. (The new scheme predicts how large the segments needs to be
7081 in order not to need further allocation.)
7082
e8855f8d
MD
7083All in all, the new GC policy will make larger applications more
7084efficient.
7085
b5074b23
MD
7086The new GC scheme also is prepared for POSIX threading. Threads can
7087allocate private pools of cells ("clusters") with just a single
7088function call. Allocation of single cells from such a cluster can
7089then proceed without any need of inter-thread synchronization.
7090
7091** New environment variables controlling GC parameters
7092
7093GUILE_MAX_SEGMENT_SIZE Maximal segment size
7094 (default = 2097000)
7095
7096Allocation of 2-word cell heaps:
7097
7098GUILE_INIT_SEGMENT_SIZE_1 Size of initial heap segment in bytes
7099 (default = 360000)
7100
7101GUILE_MIN_YIELD_1 Minimum number of freed cells at each
7102 GC in percent of total heap size
7103 (default = 40)
7104
7105Allocation of 4-word cell heaps
7106(used for real numbers and misc other objects):
7107
7108GUILE_INIT_SEGMENT_SIZE_2, GUILE_MIN_YIELD_2
7109
7110(See entry "Way for application to customize GC parameters" under
7111 section "Changes to the scm_ interface" below.)
7112
67ef2dca
MD
7113** Guile now implements reals using 4-word cells
7114
7115This speeds up computation with reals. (They were earlier allocated
7116with `malloc'.) There is still some room for optimizations, however.
7117
7118** Some further steps toward POSIX thread support have been taken
7119
7120*** Guile's critical sections (SCM_DEFER/ALLOW_INTS)
7121don't have much effect any longer, and many of them will be removed in
7122next release.
7123
7124*** Signals
7125are only handled at the top of the evaluator loop, immediately after
7126I/O, and in scm_equalp.
7127
7128*** The GC can allocate thread private pools of pairs.
7129
0af43c4a
MD
7130* Changes to Scheme functions and syntax
7131
a0128ebe 7132** close-input-port and close-output-port are now R5RS
7c1e0b12 7133
a0128ebe 7134These procedures have been turned into primitives and have R5RS behaviour.
7c1e0b12 7135
0af43c4a
MD
7136** New procedure: simple-format PORT MESSAGE ARG1 ...
7137
7138(ice-9 boot) makes `format' an alias for `simple-format' until possibly
7139extended by the more sophisticated version in (ice-9 format)
7140
7141(simple-format port message . args)
7142Write MESSAGE to DESTINATION, defaulting to `current-output-port'.
7143MESSAGE can contain ~A (was %s) and ~S (was %S) escapes. When printed,
7144the escapes are replaced with corresponding members of ARGS:
7145~A formats using `display' and ~S formats using `write'.
7146If DESTINATION is #t, then use the `current-output-port',
7147if DESTINATION is #f, then return a string containing the formatted text.
7148Does not add a trailing newline."
7149
7150** string-ref: the second argument is no longer optional.
7151
7152** string, list->string: no longer accept strings in their arguments,
7153only characters, for compatibility with R5RS.
7154
7155** New procedure: port-closed? PORT
7156Returns #t if PORT is closed or #f if it is open.
7157
0a9e521f
MD
7158** Deprecated: list*
7159
7160The list* functionality is now provided by cons* (SRFI-1 compliant)
7161
b5074b23
MD
7162** New procedure: cons* ARG1 ARG2 ... ARGn
7163
7164Like `list', but the last arg provides the tail of the constructed list,
7165returning (cons ARG1 (cons ARG2 (cons ... ARGn))).
7166
7167Requires at least one argument. If given one argument, that argument
7168is returned as result.
7169
7170This function is called `list*' in some other Schemes and in Common LISP.
7171
341f78c9
MD
7172** Removed deprecated: serial-map, serial-array-copy!, serial-array-map!
7173
e8855f8d
MD
7174** New procedure: object-documentation OBJECT
7175
7176Returns the documentation string associated with OBJECT. The
7177procedure uses a caching mechanism so that subsequent lookups are
7178faster.
7179
7180Exported by (ice-9 documentation).
7181
7182** module-name now returns full names of modules
7183
7184Previously, only the last part of the name was returned (`session' for
7185`(ice-9 session)'). Ex: `(ice-9 session)'.
7186
894a712b
DH
7187* Changes to the gh_ interface
7188
7189** Deprecated: gh_int2scmb
7190
7191Use gh_bool2scm instead.
7192
a2349a28
GH
7193* Changes to the scm_ interface
7194
810e1aec
MD
7195** Guile primitives now carry docstrings!
7196
7197Thanks to Greg Badros!
7198
0a9e521f 7199** Guile primitives are defined in a new way: SCM_DEFINE/SCM_DEFINE1/SCM_PROC
0af43c4a 7200
0a9e521f
MD
7201Now Guile primitives are defined using the SCM_DEFINE/SCM_DEFINE1/SCM_PROC
7202macros and must contain a docstring that is extracted into foo.doc using a new
0af43c4a
MD
7203guile-doc-snarf script (that uses guile-doc-snarf.awk).
7204
0a9e521f
MD
7205However, a major overhaul of these macros is scheduled for the next release of
7206guile.
7207
0af43c4a
MD
7208** Guile primitives use a new technique for validation of arguments
7209
7210SCM_VALIDATE_* macros are defined to ease the redundancy and improve
7211the readability of argument checking.
7212
7213** All (nearly?) K&R prototypes for functions replaced with ANSI C equivalents.
7214
894a712b 7215** New macros: SCM_PACK, SCM_UNPACK
f8a72ca4
MD
7216
7217Compose/decompose an SCM value.
7218
894a712b
DH
7219The SCM type is now treated as an abstract data type and may be defined as a
7220long, a void* or as a struct, depending on the architecture and compile time
7221options. This makes it easier to find several types of bugs, for example when
7222SCM values are treated as integers without conversion. Values of the SCM type
7223should be treated as "atomic" values. These macros are used when
f8a72ca4
MD
7224composing/decomposing an SCM value, either because you want to access
7225individual bits, or because you want to treat it as an integer value.
7226
7227E.g., in order to set bit 7 in an SCM value x, use the expression
7228
7229 SCM_PACK (SCM_UNPACK (x) | 0x80)
7230
e11f8b42
DH
7231** The name property of hooks is deprecated.
7232Thus, the use of SCM_HOOK_NAME and scm_make_hook_with_name is deprecated.
7233
7234You can emulate this feature by using object properties.
7235
6c0201ad 7236** Deprecated macros: SCM_INPORTP, SCM_OUTPORTP, SCM_CRDY, SCM_ICHRP,
894a712b
DH
7237SCM_ICHR, SCM_MAKICHR, SCM_SETJMPBUF, SCM_NSTRINGP, SCM_NRWSTRINGP,
7238SCM_NVECTORP
f8a72ca4 7239
894a712b 7240These macros will be removed in a future release of Guile.
7c1e0b12 7241
6c0201ad 7242** The following types, functions and macros from numbers.h are deprecated:
0a9e521f
MD
7243scm_dblproc, SCM_UNEGFIXABLE, SCM_FLOBUFLEN, SCM_INEXP, SCM_CPLXP, SCM_REAL,
7244SCM_IMAG, SCM_REALPART, scm_makdbl, SCM_SINGP, SCM_NUM2DBL, SCM_NO_BIGDIG
7245
a2349a28
GH
7246** Port internals: the rw_random variable in the scm_port structure
7247must be set to non-zero in any random access port. In recent Guile
7248releases it was only set for bidirectional random-access ports.
7249
7dcb364d
GH
7250** Port internals: the seek ptob procedure is now responsible for
7251resetting the buffers if required. The change was made so that in the
7252special case of reading the current position (i.e., seek p 0 SEEK_CUR)
7253the fport and strport ptobs can avoid resetting the buffers,
7254in particular to avoid discarding unread chars. An existing port
7255type can be fixed by adding something like the following to the
7256beginning of the ptob seek procedure:
7257
7258 if (pt->rw_active == SCM_PORT_READ)
7259 scm_end_input (object);
7260 else if (pt->rw_active == SCM_PORT_WRITE)
7261 ptob->flush (object);
7262
7263although to actually avoid resetting the buffers and discard unread
7264chars requires further hacking that depends on the characteristics
7265of the ptob.
7266
894a712b
DH
7267** Deprecated functions: scm_fseek, scm_tag
7268
7269These functions are no longer used and will be removed in a future version.
7270
f25f761d
GH
7271** The scm_sysmissing procedure is no longer used in libguile.
7272Unless it turns out to be unexpectedly useful to somebody, it will be
7273removed in a future version.
7274
0af43c4a
MD
7275** The format of error message strings has changed
7276
7277The two C procedures: scm_display_error and scm_error, as well as the
7278primitive `scm-error', now use scm_simple_format to do their work.
7279This means that the message strings of all code must be updated to use
7280~A where %s was used before, and ~S where %S was used before.
7281
7282During the period when there still are a lot of old Guiles out there,
7283you might want to support both old and new versions of Guile.
7284
7285There are basically two methods to achieve this. Both methods use
7286autoconf. Put
7287
7288 AC_CHECK_FUNCS(scm_simple_format)
7289
7290in your configure.in.
7291
7292Method 1: Use the string concatenation features of ANSI C's
7293 preprocessor.
7294
7295In C:
7296
7297#ifdef HAVE_SCM_SIMPLE_FORMAT
7298#define FMT_S "~S"
7299#else
7300#define FMT_S "%S"
7301#endif
7302
7303Then represent each of your error messages using a preprocessor macro:
7304
7305#define E_SPIDER_ERROR "There's a spider in your " ## FMT_S ## "!!!"
7306
7307In Scheme:
7308
7309(define fmt-s (if (defined? 'simple-format) "~S" "%S"))
7310(define make-message string-append)
7311
7312(define e-spider-error (make-message "There's a spider in your " fmt-s "!!!"))
7313
7314Method 2: Use the oldfmt function found in doc/oldfmt.c.
7315
7316In C:
7317
7318scm_misc_error ("picnic", scm_c_oldfmt0 ("There's a spider in your ~S!!!"),
7319 ...);
7320
7321In Scheme:
7322
7323(scm-error 'misc-error "picnic" (oldfmt "There's a spider in your ~S!!!")
7324 ...)
7325
7326
f3b5e185
MD
7327** Deprecated: coop_mutex_init, coop_condition_variable_init
7328
7329Don't use the functions coop_mutex_init and
7330coop_condition_variable_init. They will change.
7331
7332Use scm_mutex_init and scm_cond_init instead.
7333
f3b5e185
MD
7334** New function: int scm_cond_timedwait (scm_cond_t *COND, scm_mutex_t *MUTEX, const struct timespec *ABSTIME)
7335 `scm_cond_timedwait' atomically unlocks MUTEX and waits on
7336 COND, as `scm_cond_wait' does, but it also bounds the duration
7337 of the wait. If COND has not been signaled before time ABSTIME,
7338 the mutex MUTEX is re-acquired and `scm_cond_timedwait'
7339 returns the error code `ETIMEDOUT'.
7340
7341 The ABSTIME parameter specifies an absolute time, with the same
7342 origin as `time' and `gettimeofday': an ABSTIME of 0 corresponds
7343 to 00:00:00 GMT, January 1, 1970.
7344
7345** New function: scm_cond_broadcast (scm_cond_t *COND)
7346 `scm_cond_broadcast' restarts all the threads that are waiting
7347 on the condition variable COND. Nothing happens if no threads are
7348 waiting on COND.
7349
7350** New function: scm_key_create (scm_key_t *KEY, void (*destr_function) (void *))
7351 `scm_key_create' allocates a new TSD key. The key is stored in
7352 the location pointed to by KEY. There is no limit on the number
7353 of keys allocated at a given time. The value initially associated
7354 with the returned key is `NULL' in all currently executing threads.
7355
7356 The DESTR_FUNCTION argument, if not `NULL', specifies a destructor
7357 function associated with the key. When a thread terminates,
7358 DESTR_FUNCTION is called on the value associated with the key in
7359 that thread. The DESTR_FUNCTION is not called if a key is deleted
7360 with `scm_key_delete' or a value is changed with
7361 `scm_setspecific'. The order in which destructor functions are
7362 called at thread termination time is unspecified.
7363
7364 Destructors are not yet implemented.
7365
7366** New function: scm_setspecific (scm_key_t KEY, const void *POINTER)
7367 `scm_setspecific' changes the value associated with KEY in the
7368 calling thread, storing the given POINTER instead.
7369
7370** New function: scm_getspecific (scm_key_t KEY)
7371 `scm_getspecific' returns the value currently associated with
7372 KEY in the calling thread.
7373
7374** New function: scm_key_delete (scm_key_t KEY)
7375 `scm_key_delete' deallocates a TSD key. It does not check
7376 whether non-`NULL' values are associated with that key in the
7377 currently executing threads, nor call the destructor function
7378 associated with the key.
7379
820920e6
MD
7380** New function: scm_c_hook_init (scm_c_hook_t *HOOK, void *HOOK_DATA, scm_c_hook_type_t TYPE)
7381
7382Initialize a C level hook HOOK with associated HOOK_DATA and type
7383TYPE. (See scm_c_hook_run ().)
7384
7385** New function: scm_c_hook_add (scm_c_hook_t *HOOK, scm_c_hook_function_t FUNC, void *FUNC_DATA, int APPENDP)
7386
7387Add hook function FUNC with associated FUNC_DATA to HOOK. If APPENDP
7388is true, add it last, otherwise first. The same FUNC can be added
7389multiple times if FUNC_DATA differ and vice versa.
7390
7391** New function: scm_c_hook_remove (scm_c_hook_t *HOOK, scm_c_hook_function_t FUNC, void *FUNC_DATA)
7392
7393Remove hook function FUNC with associated FUNC_DATA from HOOK. A
7394function is only removed if both FUNC and FUNC_DATA matches.
7395
7396** New function: void *scm_c_hook_run (scm_c_hook_t *HOOK, void *DATA)
7397
7398Run hook HOOK passing DATA to the hook functions.
7399
7400If TYPE is SCM_C_HOOK_NORMAL, all hook functions are run. The value
7401returned is undefined.
7402
7403If TYPE is SCM_C_HOOK_OR, hook functions are run until a function
7404returns a non-NULL value. This value is returned as the result of
7405scm_c_hook_run. If all functions return NULL, NULL is returned.
7406
7407If TYPE is SCM_C_HOOK_AND, hook functions are run until a function
7408returns a NULL value, and NULL is returned. If all functions returns
7409a non-NULL value, the last value is returned.
7410
7411** New C level GC hooks
7412
7413Five new C level hooks has been added to the garbage collector.
7414
7415 scm_before_gc_c_hook
7416 scm_after_gc_c_hook
7417
7418are run before locking and after unlocking the heap. The system is
7419thus in a mode where evaluation can take place. (Except that
7420scm_before_gc_c_hook must not allocate new cells.)
7421
7422 scm_before_mark_c_hook
7423 scm_before_sweep_c_hook
7424 scm_after_sweep_c_hook
7425
7426are run when the heap is locked. These are intended for extension of
7427the GC in a modular fashion. Examples are the weaks and guardians
7428modules.
7429
b5074b23
MD
7430** Way for application to customize GC parameters
7431
7432The application can set up other default values for the GC heap
7433allocation parameters
7434
7435 GUILE_INIT_HEAP_SIZE_1, GUILE_MIN_YIELD_1,
7436 GUILE_INIT_HEAP_SIZE_2, GUILE_MIN_YIELD_2,
7437 GUILE_MAX_SEGMENT_SIZE,
7438
7439by setting
7440
7441 scm_default_init_heap_size_1, scm_default_min_yield_1,
7442 scm_default_init_heap_size_2, scm_default_min_yield_2,
7443 scm_default_max_segment_size
7444
7445respectively before callong scm_boot_guile.
7446
7447(See entry "New environment variables ..." in section
7448"Changes to the stand-alone interpreter" above.)
7449
9704841c
MD
7450** scm_protect_object/scm_unprotect_object now nest
7451
67ef2dca
MD
7452This means that you can call scm_protect_object multiple times on an
7453object and count on the object being protected until
7454scm_unprotect_object has been call the same number of times.
7455
7456The functions also have better time complexity.
7457
7458Still, it is usually possible to structure the application in a way
7459that you don't need to use these functions. For example, if you use a
7460protected standard Guile list to keep track of live objects rather
7461than some custom data type, objects will die a natural death when they
7462are no longer needed.
7463
0a9e521f
MD
7464** Deprecated type tags: scm_tc16_flo, scm_tc_flo, scm_tc_dblr, scm_tc_dblc
7465
7466Guile does not provide the float representation for inexact real numbers any
7467more. Now, only doubles are used to represent inexact real numbers. Further,
7468the tag names scm_tc_dblr and scm_tc_dblc have been changed to scm_tc16_real
7469and scm_tc16_complex, respectively.
7470
341f78c9
MD
7471** Removed deprecated type scm_smobfuns
7472
7473** Removed deprecated function scm_newsmob
7474
b5074b23
MD
7475** Warning: scm_make_smob_type_mfpe might become deprecated in a future release
7476
7477There is an ongoing discussion among the developers whether to
7478deprecate `scm_make_smob_type_mfpe' or not. Please use the current
7479standard interface (scm_make_smob_type, scm_set_smob_XXX) in new code
7480until this issue has been settled.
7481
341f78c9
MD
7482** Removed deprecated type tag scm_tc16_kw
7483
2728d7f4
MD
7484** Added type tag scm_tc16_keyword
7485
7486(This was introduced already in release 1.3.4 but was not documented
7487 until now.)
7488
67ef2dca
MD
7489** gdb_print now prints "*** Guile not initialized ***" until Guile initialized
7490
f25f761d
GH
7491* Changes to system call interfaces:
7492
28d77376
GH
7493** The "select" procedure now tests port buffers for the ability to
7494provide input or accept output. Previously only the underlying file
7495descriptors were checked.
7496
bd9e24b3
GH
7497** New variable PIPE_BUF: the maximum number of bytes that can be
7498atomically written to a pipe.
7499
f25f761d
GH
7500** If a facility is not available on the system when Guile is
7501compiled, the corresponding primitive procedure will not be defined.
7502Previously it would have been defined but would throw a system-error
7503exception if called. Exception handlers which catch this case may
7504need minor modification: an error will be thrown with key
7505'unbound-variable instead of 'system-error. Alternatively it's
7506now possible to use `defined?' to check whether the facility is
7507available.
7508
38c1d3c4 7509** Procedures which depend on the timezone should now give the correct
6c0201ad 7510result on systems which cache the TZ environment variable, even if TZ
38c1d3c4
GH
7511is changed without calling tzset.
7512
5c11cc9d
GH
7513* Changes to the networking interfaces:
7514
7515** New functions: htons, ntohs, htonl, ntohl: for converting short and
7516long integers between network and host format. For now, it's not
7517particularly convenient to do this kind of thing, but consider:
7518
7519(define write-network-long
7520 (lambda (value port)
7521 (let ((v (make-uniform-vector 1 1 0)))
7522 (uniform-vector-set! v 0 (htonl value))
7523 (uniform-vector-write v port))))
7524
7525(define read-network-long
7526 (lambda (port)
7527 (let ((v (make-uniform-vector 1 1 0)))
7528 (uniform-vector-read! v port)
7529 (ntohl (uniform-vector-ref v 0)))))
7530
7531** If inet-aton fails, it now throws an error with key 'misc-error
7532instead of 'system-error, since errno is not relevant.
7533
7534** Certain gethostbyname/gethostbyaddr failures now throw errors with
7535specific keys instead of 'system-error. The latter is inappropriate
7536since errno will not have been set. The keys are:
afe5177e 7537'host-not-found, 'try-again, 'no-recovery and 'no-data.
5c11cc9d
GH
7538
7539** sethostent, setnetent, setprotoent, setservent: now take an
7540optional argument STAYOPEN, which specifies whether the database
7541remains open after a database entry is accessed randomly (e.g., using
7542gethostbyname for the hosts database.) The default is #f. Previously
7543#t was always used.
7544
cc36e791 7545\f
43fa9a05
JB
7546Changes since Guile 1.3.2:
7547
0fdcbcaa
MD
7548* Changes to the stand-alone interpreter
7549
7550** Debugger
7551
7552An initial version of the Guile debugger written by Chris Hanson has
7553been added. The debugger is still under development but is included
7554in the distribution anyway since it is already quite useful.
7555
7556Type
7557
7558 (debug)
7559
7560after an error to enter the debugger. Type `help' inside the debugger
7561for a description of available commands.
7562
7563If you prefer to have stack frames numbered and printed in
7564anti-chronological order and prefer up in the stack to be down on the
7565screen as is the case in gdb, you can put
7566
7567 (debug-enable 'backwards)
7568
7569in your .guile startup file. (However, this means that Guile can't
7570use indentation to indicate stack level.)
7571
7572The debugger is autoloaded into Guile at the first use.
7573
7574** Further enhancements to backtraces
7575
7576There is a new debug option `width' which controls the maximum width
7577on the screen of printed stack frames. Fancy printing parameters
7578("level" and "length" as in Common LISP) are adaptively adjusted for
7579each stack frame to give maximum information while still fitting
7580within the bounds. If the stack frame can't be made to fit by
7581adjusting parameters, it is simply cut off at the end. This is marked
7582with a `$'.
7583
7584** Some modules are now only loaded when the repl is started
7585
7586The modules (ice-9 debug), (ice-9 session), (ice-9 threads) and (ice-9
7587regex) are now loaded into (guile-user) only if the repl has been
7588started. The effect is that the startup time for scripts has been
7589reduced to 30% of what it was previously.
7590
7591Correctly written scripts load the modules they require at the top of
7592the file and should not be affected by this change.
7593
ece41168
MD
7594** Hooks are now represented as smobs
7595
6822fe53
MD
7596* Changes to Scheme functions and syntax
7597
0ce204b0
MV
7598** Readline support has changed again.
7599
7600The old (readline-activator) module is gone. Use (ice-9 readline)
7601instead, which now contains all readline functionality. So the code
7602to activate readline is now
7603
7604 (use-modules (ice-9 readline))
7605 (activate-readline)
7606
7607This should work at any time, including from the guile prompt.
7608
5d195868
JB
7609To avoid confusion about the terms of Guile's license, please only
7610enable readline for your personal use; please don't make it the
7611default for others. Here is why we make this rather odd-sounding
7612request:
7613
7614Guile is normally licensed under a weakened form of the GNU General
7615Public License, which allows you to link code with Guile without
7616placing that code under the GPL. This exception is important to some
7617people.
7618
7619However, since readline is distributed under the GNU General Public
7620License, when you link Guile with readline, either statically or
7621dynamically, you effectively change Guile's license to the strict GPL.
7622Whenever you link any strictly GPL'd code into Guile, uses of Guile
7623which are normally permitted become forbidden. This is a rather
7624non-obvious consequence of the licensing terms.
7625
7626So, to make sure things remain clear, please let people choose for
7627themselves whether to link GPL'd libraries like readline with Guile.
7628
25b0654e
JB
7629** regexp-substitute/global has changed slightly, but incompatibly.
7630
7631If you include a function in the item list, the string of the match
7632object it receives is the same string passed to
7633regexp-substitute/global, not some suffix of that string.
7634Correspondingly, the match's positions are relative to the entire
7635string, not the suffix.
7636
7637If the regexp can match the empty string, the way matches are chosen
7638from the string has changed. regexp-substitute/global recognizes the
7639same set of matches that list-matches does; see below.
7640
7641** New function: list-matches REGEXP STRING [FLAGS]
7642
7643Return a list of match objects, one for every non-overlapping, maximal
7644match of REGEXP in STRING. The matches appear in left-to-right order.
7645list-matches only reports matches of the empty string if there are no
7646other matches which begin on, end at, or include the empty match's
7647position.
7648
7649If present, FLAGS is passed as the FLAGS argument to regexp-exec.
7650
7651** New function: fold-matches REGEXP STRING INIT PROC [FLAGS]
7652
7653For each match of REGEXP in STRING, apply PROC to the match object,
7654and the last value PROC returned, or INIT for the first call. Return
7655the last value returned by PROC. We apply PROC to the matches as they
7656appear from left to right.
7657
7658This function recognizes matches according to the same criteria as
7659list-matches.
7660
7661Thus, you could define list-matches like this:
7662
7663 (define (list-matches regexp string . flags)
7664 (reverse! (apply fold-matches regexp string '() cons flags)))
7665
7666If present, FLAGS is passed as the FLAGS argument to regexp-exec.
7667
bc848f7f
MD
7668** Hooks
7669
7670*** New function: hook? OBJ
7671
7672Return #t if OBJ is a hook, otherwise #f.
7673
ece41168
MD
7674*** New function: make-hook-with-name NAME [ARITY]
7675
7676Return a hook with name NAME and arity ARITY. The default value for
7677ARITY is 0. The only effect of NAME is that it will appear when the
7678hook object is printed to ease debugging.
7679
bc848f7f
MD
7680*** New function: hook-empty? HOOK
7681
7682Return #t if HOOK doesn't contain any procedures, otherwise #f.
7683
7684*** New function: hook->list HOOK
7685
7686Return a list of the procedures that are called when run-hook is
7687applied to HOOK.
7688
b074884f
JB
7689** `map' signals an error if its argument lists are not all the same length.
7690
7691This is the behavior required by R5RS, so this change is really a bug
7692fix. But it seems to affect a lot of people's code, so we're
7693mentioning it here anyway.
7694
6822fe53
MD
7695** Print-state handling has been made more transparent
7696
7697Under certain circumstances, ports are represented as a port with an
7698associated print state. Earlier, this pair was represented as a pair
7699(see "Some magic has been added to the printer" below). It is now
7700indistinguishable (almost; see `get-print-state') from a port on the
7701user level.
7702
7703*** New function: port-with-print-state OUTPUT-PORT PRINT-STATE
7704
7705Return a new port with the associated print state PRINT-STATE.
7706
7707*** New function: get-print-state OUTPUT-PORT
7708
7709Return the print state associated with this port if it exists,
7710otherwise return #f.
7711
340a8770 7712*** New function: directory-stream? OBJECT
77242ff9 7713
340a8770 7714Returns true iff OBJECT is a directory stream --- the sort of object
77242ff9
GH
7715returned by `opendir'.
7716
0fdcbcaa
MD
7717** New function: using-readline?
7718
7719Return #t if readline is in use in the current repl.
7720
26405bc1
MD
7721** structs will be removed in 1.4
7722
7723Structs will be replaced in Guile 1.4. We will merge GOOPS into Guile
7724and use GOOPS objects as the fundamental record type.
7725
49199eaa
MD
7726* Changes to the scm_ interface
7727
26405bc1
MD
7728** structs will be removed in 1.4
7729
7730The entire current struct interface (struct.c, struct.h) will be
7731replaced in Guile 1.4. We will merge GOOPS into libguile and use
7732GOOPS objects as the fundamental record type.
7733
49199eaa
MD
7734** The internal representation of subr's has changed
7735
7736Instead of giving a hint to the subr name, the CAR field of the subr
7737now contains an index to a subr entry in scm_subr_table.
7738
7739*** New variable: scm_subr_table
7740
7741An array of subr entries. A subr entry contains the name, properties
7742and documentation associated with the subr. The properties and
7743documentation slots are not yet used.
7744
7745** A new scheme for "forwarding" calls to a builtin to a generic function
7746
7747It is now possible to extend the functionality of some Guile
7748primitives by letting them defer a call to a GOOPS generic function on
240ed66f 7749argument mismatch. This means that there is no loss of efficiency in
daf516d6 7750normal evaluation.
49199eaa
MD
7751
7752Example:
7753
daf516d6 7754 (use-modules (oop goops)) ; Must be GOOPS version 0.2.
49199eaa
MD
7755 (define-method + ((x <string>) (y <string>))
7756 (string-append x y))
7757
86a4d62e
MD
7758+ will still be as efficient as usual in numerical calculations, but
7759can also be used for concatenating strings.
49199eaa 7760
86a4d62e 7761Who will be the first one to extend Guile's numerical tower to
daf516d6
MD
7762rationals? :) [OK, there a few other things to fix before this can
7763be made in a clean way.]
49199eaa
MD
7764
7765*** New snarf macros for defining primitives: SCM_GPROC, SCM_GPROC1
7766
7767 New macro: SCM_GPROC (CNAME, SNAME, REQ, OPT, VAR, CFUNC, GENERIC)
7768
7769 New macro: SCM_GPROC1 (CNAME, SNAME, TYPE, CFUNC, GENERIC)
7770
d02cafe7 7771These do the same job as SCM_PROC and SCM_PROC1, but they also define
49199eaa
MD
7772a variable GENERIC which can be used by the dispatch macros below.
7773
7774[This is experimental code which may change soon.]
7775
7776*** New macros for forwarding control to a generic on arg type error
7777
7778 New macro: SCM_WTA_DISPATCH_1 (GENERIC, ARG1, POS, SUBR)
7779
7780 New macro: SCM_WTA_DISPATCH_2 (GENERIC, ARG1, ARG2, POS, SUBR)
7781
7782These correspond to the scm_wta function call, and have the same
7783behaviour until the user has called the GOOPS primitive
7784`enable-primitive-generic!'. After that, these macros will apply the
7785generic function GENERIC to the argument(s) instead of calling
7786scm_wta.
7787
7788[This is experimental code which may change soon.]
7789
7790*** New macros for argument testing with generic dispatch
7791
7792 New macro: SCM_GASSERT1 (COND, GENERIC, ARG1, POS, SUBR)
7793
7794 New macro: SCM_GASSERT2 (COND, GENERIC, ARG1, ARG2, POS, SUBR)
7795
7796These correspond to the SCM_ASSERT macro, but will defer control to
7797GENERIC on error after `enable-primitive-generic!' has been called.
7798
7799[This is experimental code which may change soon.]
7800
7801** New function: SCM scm_eval_body (SCM body, SCM env)
7802
7803Evaluates the body of a special form.
7804
7805** The internal representation of struct's has changed
7806
7807Previously, four slots were allocated for the procedure(s) of entities
7808and operators. The motivation for this representation had to do with
7809the structure of the evaluator, the wish to support tail-recursive
7810generic functions, and efficiency. Since the generic function
7811dispatch mechanism has changed, there is no longer a need for such an
7812expensive representation, and the representation has been simplified.
7813
7814This should not make any difference for most users.
7815
7816** GOOPS support has been cleaned up.
7817
7818Some code has been moved from eval.c to objects.c and code in both of
7819these compilation units has been cleaned up and better structured.
7820
7821*** New functions for applying generic functions
7822
7823 New function: SCM scm_apply_generic (GENERIC, ARGS)
7824 New function: SCM scm_call_generic_0 (GENERIC)
7825 New function: SCM scm_call_generic_1 (GENERIC, ARG1)
7826 New function: SCM scm_call_generic_2 (GENERIC, ARG1, ARG2)
7827 New function: SCM scm_call_generic_3 (GENERIC, ARG1, ARG2, ARG3)
7828
ece41168
MD
7829** Deprecated function: scm_make_named_hook
7830
7831It is now replaced by:
7832
7833** New function: SCM scm_create_hook (const char *name, int arity)
7834
7835Creates a hook in the same way as make-hook above but also
7836binds a variable named NAME to it.
7837
7838This is the typical way of creating a hook from C code.
7839
7840Currently, the variable is created in the "current" module.
7841This might change when we get the new module system.
7842
7843[The behaviour is identical to scm_make_named_hook.]
7844
7845
43fa9a05 7846\f
f3227c7a
JB
7847Changes since Guile 1.3:
7848
6ca345f3
JB
7849* Changes to mailing lists
7850
7851** Some of the Guile mailing lists have moved to sourceware.cygnus.com.
7852
7853See the README file to find current addresses for all the Guile
7854mailing lists.
7855
d77fb593
JB
7856* Changes to the distribution
7857
1d335863
JB
7858** Readline support is no longer included with Guile by default.
7859
7860Based on the different license terms of Guile and Readline, we
7861concluded that Guile should not *by default* cause the linking of
7862Readline into an application program. Readline support is now offered
7863as a separate module, which is linked into an application only when
7864you explicitly specify it.
7865
7866Although Guile is GNU software, its distribution terms add a special
7867exception to the usual GNU General Public License (GPL). Guile's
7868license includes a clause that allows you to link Guile with non-free
7869programs. We add this exception so as not to put Guile at a
7870disadvantage vis-a-vis other extensibility packages that support other
7871languages.
7872
7873In contrast, the GNU Readline library is distributed under the GNU
7874General Public License pure and simple. This means that you may not
7875link Readline, even dynamically, into an application unless it is
7876distributed under a free software license that is compatible the GPL.
7877
7878Because of this difference in distribution terms, an application that
7879can use Guile may not be able to use Readline. Now users will be
7880explicitly offered two independent decisions about the use of these
7881two packages.
d77fb593 7882
0e8a8468
MV
7883You can activate the readline support by issuing
7884
7885 (use-modules (readline-activator))
7886 (activate-readline)
7887
7888from your ".guile" file, for example.
7889
e4eae9b1
MD
7890* Changes to the stand-alone interpreter
7891
67ad463a
MD
7892** All builtins now print as primitives.
7893Previously builtin procedures not belonging to the fundamental subr
7894types printed as #<compiled closure #<primitive-procedure gsubr-apply>>.
7895Now, they print as #<primitive-procedure NAME>.
7896
7897** Backtraces slightly more intelligible.
7898gsubr-apply and macro transformer application frames no longer appear
7899in backtraces.
7900
69c6acbb
JB
7901* Changes to Scheme functions and syntax
7902
2a52b429
MD
7903** Guile now correctly handles internal defines by rewriting them into
7904their equivalent letrec. Previously, internal defines would
7905incrementally add to the innermost environment, without checking
7906whether the restrictions specified in RnRS were met. This lead to the
7907correct behaviour when these restriction actually were met, but didn't
7908catch all illegal uses. Such an illegal use could lead to crashes of
b3da54d1 7909the Guile interpreter or other unwanted results. An example of
2a52b429
MD
7910incorrect internal defines that made Guile behave erratically:
7911
7912 (let ()
7913 (define a 1)
7914 (define (b) a)
7915 (define c (1+ (b)))
7916 (define d 3)
7917
7918 (b))
7919
7920 => 2
7921
7922The problem with this example is that the definition of `c' uses the
7923value of `b' directly. This confuses the meoization machine of Guile
7924so that the second call of `b' (this time in a larger environment that
7925also contains bindings for `c' and `d') refers to the binding of `c'
7926instead of `a'. You could also make Guile crash with a variation on
7927this theme:
7928
7929 (define (foo flag)
7930 (define a 1)
7931 (define (b flag) (if flag a 1))
7932 (define c (1+ (b flag)))
7933 (define d 3)
7934
7935 (b #t))
7936
7937 (foo #f)
7938 (foo #t)
7939
7940From now on, Guile will issue an `Unbound variable: b' error message
7941for both examples.
7942
36d3d540
MD
7943** Hooks
7944
7945A hook contains a list of functions which should be called on
7946particular occasions in an existing program. Hooks are used for
7947customization.
7948
7949A window manager might have a hook before-window-map-hook. The window
7950manager uses the function run-hooks to call all functions stored in
7951before-window-map-hook each time a window is mapped. The user can
7952store functions in the hook using add-hook!.
7953
7954In Guile, hooks are first class objects.
7955
7956*** New function: make-hook [N_ARGS]
7957
7958Return a hook for hook functions which can take N_ARGS arguments.
7959The default value for N_ARGS is 0.
7960
ad91d6c3
MD
7961(See also scm_make_named_hook below.)
7962
36d3d540
MD
7963*** New function: add-hook! HOOK PROC [APPEND_P]
7964
7965Put PROC at the beginning of the list of functions stored in HOOK.
7966If APPEND_P is supplied, and non-false, put PROC at the end instead.
7967
7968PROC must be able to take the number of arguments specified when the
7969hook was created.
7970
7971If PROC already exists in HOOK, then remove it first.
7972
7973*** New function: remove-hook! HOOK PROC
7974
7975Remove PROC from the list of functions in HOOK.
7976
7977*** New function: reset-hook! HOOK
7978
7979Clear the list of hook functions stored in HOOK.
7980
7981*** New function: run-hook HOOK ARG1 ...
7982
7983Run all hook functions stored in HOOK with arguments ARG1 ... .
7984The number of arguments supplied must correspond to the number given
7985when the hook was created.
7986
56a19408
MV
7987** The function `dynamic-link' now takes optional keyword arguments.
7988 The only keyword argument that is currently defined is `:global
7989 BOOL'. With it, you can control whether the shared library will be
7990 linked in global mode or not. In global mode, the symbols from the
7991 linked library can be used to resolve references from other
7992 dynamically linked libraries. In non-global mode, the linked
7993 library is essentially invisible and can only be accessed via
7994 `dynamic-func', etc. The default is now to link in global mode.
7995 Previously, the default has been non-global mode.
7996
7997 The `#:global' keyword is only effective on platforms that support
7998 the dlopen family of functions.
7999
ad226f25 8000** New function `provided?'
b7e13f65
JB
8001
8002 - Function: provided? FEATURE
8003 Return true iff FEATURE is supported by this installation of
8004 Guile. FEATURE must be a symbol naming a feature; the global
8005 variable `*features*' is a list of available features.
8006
ad226f25
JB
8007** Changes to the module (ice-9 expect):
8008
8009*** The expect-strings macro now matches `$' in a regular expression
8010 only at a line-break or end-of-file by default. Previously it would
ab711359
JB
8011 match the end of the string accumulated so far. The old behaviour
8012 can be obtained by setting the variable `expect-strings-exec-flags'
8013 to 0.
ad226f25
JB
8014
8015*** The expect-strings macro now uses a variable `expect-strings-exec-flags'
8016 for the regexp-exec flags. If `regexp/noteol' is included, then `$'
8017 in a regular expression will still match before a line-break or
8018 end-of-file. The default is `regexp/noteol'.
8019
6c0201ad 8020*** The expect-strings macro now uses a variable
ad226f25
JB
8021 `expect-strings-compile-flags' for the flags to be supplied to
8022 `make-regexp'. The default is `regexp/newline', which was previously
8023 hard-coded.
8024
8025*** The expect macro now supplies two arguments to a match procedure:
ab711359
JB
8026 the current accumulated string and a flag to indicate whether
8027 end-of-file has been reached. Previously only the string was supplied.
8028 If end-of-file is reached, the match procedure will be called an
8029 additional time with the same accumulated string as the previous call
8030 but with the flag set.
ad226f25 8031
b7e13f65
JB
8032** New module (ice-9 format), implementing the Common Lisp `format' function.
8033
8034This code, and the documentation for it that appears here, was
8035borrowed from SLIB, with minor adaptations for Guile.
8036
8037 - Function: format DESTINATION FORMAT-STRING . ARGUMENTS
8038 An almost complete implementation of Common LISP format description
8039 according to the CL reference book `Common LISP' from Guy L.
8040 Steele, Digital Press. Backward compatible to most of the
8041 available Scheme format implementations.
8042
8043 Returns `#t', `#f' or a string; has side effect of printing
8044 according to FORMAT-STRING. If DESTINATION is `#t', the output is
8045 to the current output port and `#t' is returned. If DESTINATION
8046 is `#f', a formatted string is returned as the result of the call.
8047 NEW: If DESTINATION is a string, DESTINATION is regarded as the
8048 format string; FORMAT-STRING is then the first argument and the
8049 output is returned as a string. If DESTINATION is a number, the
8050 output is to the current error port if available by the
8051 implementation. Otherwise DESTINATION must be an output port and
8052 `#t' is returned.
8053
8054 FORMAT-STRING must be a string. In case of a formatting error
8055 format returns `#f' and prints a message on the current output or
8056 error port. Characters are output as if the string were output by
8057 the `display' function with the exception of those prefixed by a
8058 tilde (~). For a detailed description of the FORMAT-STRING syntax
8059 please consult a Common LISP format reference manual. For a test
8060 suite to verify this format implementation load `formatst.scm'.
8061 Please send bug reports to `lutzeb@cs.tu-berlin.de'.
8062
8063 Note: `format' is not reentrant, i.e. only one `format'-call may
8064 be executed at a time.
8065
8066
8067*** Format Specification (Format version 3.0)
8068
8069 Please consult a Common LISP format reference manual for a detailed
8070description of the format string syntax. For a demonstration of the
8071implemented directives see `formatst.scm'.
8072
8073 This implementation supports directive parameters and modifiers (`:'
8074and `@' characters). Multiple parameters must be separated by a comma
8075(`,'). Parameters can be numerical parameters (positive or negative),
8076character parameters (prefixed by a quote character (`''), variable
8077parameters (`v'), number of rest arguments parameter (`#'), empty and
8078default parameters. Directive characters are case independent. The
8079general form of a directive is:
8080
8081DIRECTIVE ::= ~{DIRECTIVE-PARAMETER,}[:][@]DIRECTIVE-CHARACTER
8082
8083DIRECTIVE-PARAMETER ::= [ [-|+]{0-9}+ | 'CHARACTER | v | # ]
8084
8085*** Implemented CL Format Control Directives
8086
8087 Documentation syntax: Uppercase characters represent the
8088corresponding control directive characters. Lowercase characters
8089represent control directive parameter descriptions.
8090
8091`~A'
8092 Any (print as `display' does).
8093 `~@A'
8094 left pad.
8095
8096 `~MINCOL,COLINC,MINPAD,PADCHARA'
8097 full padding.
8098
8099`~S'
8100 S-expression (print as `write' does).
8101 `~@S'
8102 left pad.
8103
8104 `~MINCOL,COLINC,MINPAD,PADCHARS'
8105 full padding.
8106
8107`~D'
8108 Decimal.
8109 `~@D'
8110 print number sign always.
8111
8112 `~:D'
8113 print comma separated.
8114
8115 `~MINCOL,PADCHAR,COMMACHARD'
8116 padding.
8117
8118`~X'
8119 Hexadecimal.
8120 `~@X'
8121 print number sign always.
8122
8123 `~:X'
8124 print comma separated.
8125
8126 `~MINCOL,PADCHAR,COMMACHARX'
8127 padding.
8128
8129`~O'
8130 Octal.
8131 `~@O'
8132 print number sign always.
8133
8134 `~:O'
8135 print comma separated.
8136
8137 `~MINCOL,PADCHAR,COMMACHARO'
8138 padding.
8139
8140`~B'
8141 Binary.
8142 `~@B'
8143 print number sign always.
8144
8145 `~:B'
8146 print comma separated.
8147
8148 `~MINCOL,PADCHAR,COMMACHARB'
8149 padding.
8150
8151`~NR'
8152 Radix N.
8153 `~N,MINCOL,PADCHAR,COMMACHARR'
8154 padding.
8155
8156`~@R'
8157 print a number as a Roman numeral.
8158
8159`~:@R'
8160 print a number as an "old fashioned" Roman numeral.
8161
8162`~:R'
8163 print a number as an ordinal English number.
8164
8165`~:@R'
8166 print a number as a cardinal English number.
8167
8168`~P'
8169 Plural.
8170 `~@P'
8171 prints `y' and `ies'.
8172
8173 `~:P'
8174 as `~P but jumps 1 argument backward.'
8175
8176 `~:@P'
8177 as `~@P but jumps 1 argument backward.'
8178
8179`~C'
8180 Character.
8181 `~@C'
8182 prints a character as the reader can understand it (i.e. `#\'
8183 prefixing).
8184
8185 `~:C'
8186 prints a character as emacs does (eg. `^C' for ASCII 03).
8187
8188`~F'
8189 Fixed-format floating-point (prints a flonum like MMM.NNN).
8190 `~WIDTH,DIGITS,SCALE,OVERFLOWCHAR,PADCHARF'
8191 `~@F'
8192 If the number is positive a plus sign is printed.
8193
8194`~E'
8195 Exponential floating-point (prints a flonum like MMM.NNN`E'EE).
8196 `~WIDTH,DIGITS,EXPONENTDIGITS,SCALE,OVERFLOWCHAR,PADCHAR,EXPONENTCHARE'
8197 `~@E'
8198 If the number is positive a plus sign is printed.
8199
8200`~G'
8201 General floating-point (prints a flonum either fixed or
8202 exponential).
8203 `~WIDTH,DIGITS,EXPONENTDIGITS,SCALE,OVERFLOWCHAR,PADCHAR,EXPONENTCHARG'
8204 `~@G'
8205 If the number is positive a plus sign is printed.
8206
8207`~$'
8208 Dollars floating-point (prints a flonum in fixed with signs
8209 separated).
8210 `~DIGITS,SCALE,WIDTH,PADCHAR$'
8211 `~@$'
8212 If the number is positive a plus sign is printed.
8213
8214 `~:@$'
8215 A sign is always printed and appears before the padding.
8216
8217 `~:$'
8218 The sign appears before the padding.
8219
8220`~%'
8221 Newline.
8222 `~N%'
8223 print N newlines.
8224
8225`~&'
8226 print newline if not at the beginning of the output line.
8227 `~N&'
8228 prints `~&' and then N-1 newlines.
8229
8230`~|'
8231 Page Separator.
8232 `~N|'
8233 print N page separators.
8234
8235`~~'
8236 Tilde.
8237 `~N~'
8238 print N tildes.
8239
8240`~'<newline>
8241 Continuation Line.
8242 `~:'<newline>
8243 newline is ignored, white space left.
8244
8245 `~@'<newline>
8246 newline is left, white space ignored.
8247
8248`~T'
8249 Tabulation.
8250 `~@T'
8251 relative tabulation.
8252
8253 `~COLNUM,COLINCT'
8254 full tabulation.
8255
8256`~?'
8257 Indirection (expects indirect arguments as a list).
8258 `~@?'
8259 extracts indirect arguments from format arguments.
8260
8261`~(STR~)'
8262 Case conversion (converts by `string-downcase').
8263 `~:(STR~)'
8264 converts by `string-capitalize'.
8265
8266 `~@(STR~)'
8267 converts by `string-capitalize-first'.
8268
8269 `~:@(STR~)'
8270 converts by `string-upcase'.
8271
8272`~*'
8273 Argument Jumping (jumps 1 argument forward).
8274 `~N*'
8275 jumps N arguments forward.
8276
8277 `~:*'
8278 jumps 1 argument backward.
8279
8280 `~N:*'
8281 jumps N arguments backward.
8282
8283 `~@*'
8284 jumps to the 0th argument.
8285
8286 `~N@*'
8287 jumps to the Nth argument (beginning from 0)
8288
8289`~[STR0~;STR1~;...~;STRN~]'
8290 Conditional Expression (numerical clause conditional).
8291 `~N['
8292 take argument from N.
8293
8294 `~@['
8295 true test conditional.
8296
8297 `~:['
8298 if-else-then conditional.
8299
8300 `~;'
8301 clause separator.
8302
8303 `~:;'
8304 default clause follows.
8305
8306`~{STR~}'
8307 Iteration (args come from the next argument (a list)).
8308 `~N{'
8309 at most N iterations.
8310
8311 `~:{'
8312 args from next arg (a list of lists).
8313
8314 `~@{'
8315 args from the rest of arguments.
8316
8317 `~:@{'
8318 args from the rest args (lists).
8319
8320`~^'
8321 Up and out.
8322 `~N^'
8323 aborts if N = 0
8324
8325 `~N,M^'
8326 aborts if N = M
8327
8328 `~N,M,K^'
8329 aborts if N <= M <= K
8330
8331*** Not Implemented CL Format Control Directives
8332
8333`~:A'
8334 print `#f' as an empty list (see below).
8335
8336`~:S'
8337 print `#f' as an empty list (see below).
8338
8339`~<~>'
8340 Justification.
8341
8342`~:^'
8343 (sorry I don't understand its semantics completely)
8344
8345*** Extended, Replaced and Additional Control Directives
8346
8347`~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHD'
8348`~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHX'
8349`~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHO'
8350`~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHB'
8351`~N,MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHR'
8352 COMMAWIDTH is the number of characters between two comma
8353 characters.
8354
8355`~I'
8356 print a R4RS complex number as `~F~@Fi' with passed parameters for
8357 `~F'.
8358
8359`~Y'
8360 Pretty print formatting of an argument for scheme code lists.
8361
8362`~K'
8363 Same as `~?.'
8364
8365`~!'
8366 Flushes the output if format DESTINATION is a port.
8367
8368`~_'
8369 Print a `#\space' character
8370 `~N_'
8371 print N `#\space' characters.
8372
8373`~/'
8374 Print a `#\tab' character
8375 `~N/'
8376 print N `#\tab' characters.
8377
8378`~NC'
8379 Takes N as an integer representation for a character. No arguments
8380 are consumed. N is converted to a character by `integer->char'. N
8381 must be a positive decimal number.
8382
8383`~:S'
8384 Print out readproof. Prints out internal objects represented as
8385 `#<...>' as strings `"#<...>"' so that the format output can always
8386 be processed by `read'.
8387
8388`~:A'
8389 Print out readproof. Prints out internal objects represented as
8390 `#<...>' as strings `"#<...>"' so that the format output can always
8391 be processed by `read'.
8392
8393`~Q'
8394 Prints information and a copyright notice on the format
8395 implementation.
8396 `~:Q'
8397 prints format version.
8398
8399`~F, ~E, ~G, ~$'
8400 may also print number strings, i.e. passing a number as a string
8401 and format it accordingly.
8402
8403*** Configuration Variables
8404
8405 The format module exports some configuration variables to suit the
8406systems and users needs. There should be no modification necessary for
8407the configuration that comes with Guile. Format detects automatically
8408if the running scheme system implements floating point numbers and
8409complex numbers.
8410
8411format:symbol-case-conv
8412 Symbols are converted by `symbol->string' so the case type of the
8413 printed symbols is implementation dependent.
8414 `format:symbol-case-conv' is a one arg closure which is either
8415 `#f' (no conversion), `string-upcase', `string-downcase' or
8416 `string-capitalize'. (default `#f')
8417
8418format:iobj-case-conv
8419 As FORMAT:SYMBOL-CASE-CONV but applies for the representation of
8420 implementation internal objects. (default `#f')
8421
8422format:expch
8423 The character prefixing the exponent value in `~E' printing.
8424 (default `#\E')
8425
8426*** Compatibility With Other Format Implementations
8427
8428SLIB format 2.x:
8429 See `format.doc'.
8430
8431SLIB format 1.4:
8432 Downward compatible except for padding support and `~A', `~S',
8433 `~P', `~X' uppercase printing. SLIB format 1.4 uses C-style
8434 `printf' padding support which is completely replaced by the CL
8435 `format' padding style.
8436
8437MIT C-Scheme 7.1:
8438 Downward compatible except for `~', which is not documented
8439 (ignores all characters inside the format string up to a newline
8440 character). (7.1 implements `~a', `~s', ~NEWLINE, `~~', `~%',
8441 numerical and variable parameters and `:/@' modifiers in the CL
8442 sense).
8443
8444Elk 1.5/2.0:
8445 Downward compatible except for `~A' and `~S' which print in
8446 uppercase. (Elk implements `~a', `~s', `~~', and `~%' (no
8447 directive parameters or modifiers)).
8448
8449Scheme->C 01nov91:
8450 Downward compatible except for an optional destination parameter:
8451 S2C accepts a format call without a destination which returns a
8452 formatted string. This is equivalent to a #f destination in S2C.
8453 (S2C implements `~a', `~s', `~c', `~%', and `~~' (no directive
8454 parameters or modifiers)).
8455
8456
e7d37b0a 8457** Changes to string-handling functions.
b7e13f65 8458
e7d37b0a 8459These functions were added to support the (ice-9 format) module, above.
b7e13f65 8460
e7d37b0a
JB
8461*** New function: string-upcase STRING
8462*** New function: string-downcase STRING
b7e13f65 8463
e7d37b0a
JB
8464These are non-destructive versions of the existing string-upcase! and
8465string-downcase! functions.
b7e13f65 8466
e7d37b0a
JB
8467*** New function: string-capitalize! STRING
8468*** New function: string-capitalize STRING
8469
8470These functions convert the first letter of each word in the string to
8471upper case. Thus:
8472
8473 (string-capitalize "howdy there")
8474 => "Howdy There"
8475
8476As with the other functions, string-capitalize! modifies the string in
8477place, while string-capitalize returns a modified copy of its argument.
8478
8479*** New function: string-ci->symbol STRING
8480
8481Return a symbol whose name is STRING, but having the same case as if
8482the symbol had be read by `read'.
8483
8484Guile can be configured to be sensitive or insensitive to case
8485differences in Scheme identifiers. If Guile is case-insensitive, all
8486symbols are converted to lower case on input. The `string-ci->symbol'
8487function returns a symbol whose name in STRING, transformed as Guile
8488would if STRING were input.
8489
8490*** New function: substring-move! STRING1 START END STRING2 START
8491
8492Copy the substring of STRING1 from START (inclusive) to END
8493(exclusive) to STRING2 at START. STRING1 and STRING2 may be the same
8494string, and the source and destination areas may overlap; in all
8495cases, the function behaves as if all the characters were copied
8496simultanously.
8497
6c0201ad 8498*** Extended functions: substring-move-left! substring-move-right!
e7d37b0a
JB
8499
8500These functions now correctly copy arbitrarily overlapping substrings;
8501they are both synonyms for substring-move!.
b7e13f65 8502
b7e13f65 8503
deaceb4e
JB
8504** New module (ice-9 getopt-long), with the function `getopt-long'.
8505
8506getopt-long is a function for parsing command-line arguments in a
8507manner consistent with other GNU programs.
8508
8509(getopt-long ARGS GRAMMAR)
8510Parse the arguments ARGS according to the argument list grammar GRAMMAR.
8511
8512ARGS should be a list of strings. Its first element should be the
8513name of the program; subsequent elements should be the arguments
8514that were passed to the program on the command line. The
8515`program-arguments' procedure returns a list of this form.
8516
8517GRAMMAR is a list of the form:
8518((OPTION (PROPERTY VALUE) ...) ...)
8519
8520Each OPTION should be a symbol. `getopt-long' will accept a
8521command-line option named `--OPTION'.
8522Each option can have the following (PROPERTY VALUE) pairs:
8523
8524 (single-char CHAR) --- Accept `-CHAR' as a single-character
8525 equivalent to `--OPTION'. This is how to specify traditional
8526 Unix-style flags.
8527 (required? BOOL) --- If BOOL is true, the option is required.
8528 getopt-long will raise an error if it is not found in ARGS.
8529 (value BOOL) --- If BOOL is #t, the option accepts a value; if
8530 it is #f, it does not; and if it is the symbol
8531 `optional', the option may appear in ARGS with or
6c0201ad 8532 without a value.
deaceb4e
JB
8533 (predicate FUNC) --- If the option accepts a value (i.e. you
8534 specified `(value #t)' for this option), then getopt
8535 will apply FUNC to the value, and throw an exception
8536 if it returns #f. FUNC should be a procedure which
8537 accepts a string and returns a boolean value; you may
8538 need to use quasiquotes to get it into GRAMMAR.
8539
8540The (PROPERTY VALUE) pairs may occur in any order, but each
8541property may occur only once. By default, options do not have
8542single-character equivalents, are not required, and do not take
8543values.
8544
8545In ARGS, single-character options may be combined, in the usual
8546Unix fashion: ("-x" "-y") is equivalent to ("-xy"). If an option
8547accepts values, then it must be the last option in the
8548combination; the value is the next argument. So, for example, using
8549the following grammar:
8550 ((apples (single-char #\a))
8551 (blimps (single-char #\b) (value #t))
8552 (catalexis (single-char #\c) (value #t)))
8553the following argument lists would be acceptable:
8554 ("-a" "-b" "bang" "-c" "couth") ("bang" and "couth" are the values
8555 for "blimps" and "catalexis")
8556 ("-ab" "bang" "-c" "couth") (same)
8557 ("-ac" "couth" "-b" "bang") (same)
8558 ("-abc" "couth" "bang") (an error, since `-b' is not the
8559 last option in its combination)
8560
8561If an option's value is optional, then `getopt-long' decides
8562whether it has a value by looking at what follows it in ARGS. If
8563the next element is a string, and it does not appear to be an
8564option itself, then that string is the option's value.
8565
8566The value of a long option can appear as the next element in ARGS,
8567or it can follow the option name, separated by an `=' character.
8568Thus, using the same grammar as above, the following argument lists
8569are equivalent:
8570 ("--apples" "Braeburn" "--blimps" "Goodyear")
8571 ("--apples=Braeburn" "--blimps" "Goodyear")
8572 ("--blimps" "Goodyear" "--apples=Braeburn")
8573
8574If the option "--" appears in ARGS, argument parsing stops there;
8575subsequent arguments are returned as ordinary arguments, even if
8576they resemble options. So, in the argument list:
8577 ("--apples" "Granny Smith" "--" "--blimp" "Goodyear")
8578`getopt-long' will recognize the `apples' option as having the
8579value "Granny Smith", but it will not recognize the `blimp'
8580option; it will return the strings "--blimp" and "Goodyear" as
8581ordinary argument strings.
8582
8583The `getopt-long' function returns the parsed argument list as an
8584assocation list, mapping option names --- the symbols from GRAMMAR
8585--- onto their values, or #t if the option does not accept a value.
8586Unused options do not appear in the alist.
8587
8588All arguments that are not the value of any option are returned
8589as a list, associated with the empty list.
8590
8591`getopt-long' throws an exception if:
8592- it finds an unrecognized option in ARGS
8593- a required option is omitted
8594- an option that requires an argument doesn't get one
8595- an option that doesn't accept an argument does get one (this can
8596 only happen using the long option `--opt=value' syntax)
8597- an option predicate fails
8598
8599So, for example:
8600
8601(define grammar
8602 `((lockfile-dir (required? #t)
8603 (value #t)
8604 (single-char #\k)
8605 (predicate ,file-is-directory?))
8606 (verbose (required? #f)
8607 (single-char #\v)
8608 (value #f))
8609 (x-includes (single-char #\x))
6c0201ad 8610 (rnet-server (single-char #\y)
deaceb4e
JB
8611 (predicate ,string?))))
8612
6c0201ad 8613(getopt-long '("my-prog" "-vk" "/tmp" "foo1" "--x-includes=/usr/include"
deaceb4e
JB
8614 "--rnet-server=lamprod" "--" "-fred" "foo2" "foo3")
8615 grammar)
8616=> ((() "foo1" "-fred" "foo2" "foo3")
8617 (rnet-server . "lamprod")
8618 (x-includes . "/usr/include")
8619 (lockfile-dir . "/tmp")
8620 (verbose . #t))
8621
8622** The (ice-9 getopt-gnu-style) module is obsolete; use (ice-9 getopt-long).
8623
8624It will be removed in a few releases.
8625
08394899
MS
8626** New syntax: lambda*
8627** New syntax: define*
6c0201ad 8628** New syntax: define*-public
08394899
MS
8629** New syntax: defmacro*
8630** New syntax: defmacro*-public
6c0201ad 8631Guile now supports optional arguments.
08394899
MS
8632
8633`lambda*', `define*', `define*-public', `defmacro*' and
8634`defmacro*-public' are identical to the non-* versions except that
8635they use an extended type of parameter list that has the following BNF
8636syntax (parentheses are literal, square brackets indicate grouping,
8637and `*', `+' and `?' have the usual meaning):
8638
8639 ext-param-list ::= ( [identifier]* [#&optional [ext-var-decl]+]?
6c0201ad 8640 [#&key [ext-var-decl]+ [#&allow-other-keys]?]?
08394899
MS
8641 [[#&rest identifier]|[. identifier]]? ) | [identifier]
8642
6c0201ad 8643 ext-var-decl ::= identifier | ( identifier expression )
08394899
MS
8644
8645The semantics are best illustrated with the following documentation
8646and examples for `lambda*':
8647
8648 lambda* args . body
8649 lambda extended for optional and keyword arguments
6c0201ad 8650
08394899
MS
8651 lambda* creates a procedure that takes optional arguments. These
8652 are specified by putting them inside brackets at the end of the
8653 paramater list, but before any dotted rest argument. For example,
8654 (lambda* (a b #&optional c d . e) '())
8655 creates a procedure with fixed arguments a and b, optional arguments c
8656 and d, and rest argument e. If the optional arguments are omitted
8657 in a call, the variables for them are unbound in the procedure. This
8658 can be checked with the bound? macro.
8659
8660 lambda* can also take keyword arguments. For example, a procedure
8661 defined like this:
8662 (lambda* (#&key xyzzy larch) '())
8663 can be called with any of the argument lists (#:xyzzy 11)
8664 (#:larch 13) (#:larch 42 #:xyzzy 19) (). Whichever arguments
8665 are given as keywords are bound to values.
8666
8667 Optional and keyword arguments can also be given default values
8668 which they take on when they are not present in a call, by giving a
8669 two-item list in place of an optional argument, for example in:
6c0201ad 8670 (lambda* (foo #&optional (bar 42) #&key (baz 73)) (list foo bar baz))
08394899
MS
8671 foo is a fixed argument, bar is an optional argument with default
8672 value 42, and baz is a keyword argument with default value 73.
8673 Default value expressions are not evaluated unless they are needed
6c0201ad 8674 and until the procedure is called.
08394899
MS
8675
8676 lambda* now supports two more special parameter list keywords.
8677
8678 lambda*-defined procedures now throw an error by default if a
8679 keyword other than one of those specified is found in the actual
8680 passed arguments. However, specifying #&allow-other-keys
8681 immediately after the kyword argument declarations restores the
8682 previous behavior of ignoring unknown keywords. lambda* also now
8683 guarantees that if the same keyword is passed more than once, the
8684 last one passed is the one that takes effect. For example,
8685 ((lambda* (#&key (heads 0) (tails 0)) (display (list heads tails)))
8686 #:heads 37 #:tails 42 #:heads 99)
8687 would result in (99 47) being displayed.
8688
8689 #&rest is also now provided as a synonym for the dotted syntax rest
8690 argument. The argument lists (a . b) and (a #&rest b) are equivalent in
8691 all respects to lambda*. This is provided for more similarity to DSSSL,
8692 MIT-Scheme and Kawa among others, as well as for refugees from other
8693 Lisp dialects.
8694
8695Further documentation may be found in the optargs.scm file itself.
8696
8697The optional argument module also exports the macros `let-optional',
8698`let-optional*', `let-keywords', `let-keywords*' and `bound?'. These
8699are not documented here because they may be removed in the future, but
8700full documentation is still available in optargs.scm.
8701
2e132553
JB
8702** New syntax: and-let*
8703Guile now supports the `and-let*' form, described in the draft SRFI-2.
8704
8705Syntax: (land* (<clause> ...) <body> ...)
8706Each <clause> should have one of the following forms:
8707 (<variable> <expression>)
8708 (<expression>)
8709 <bound-variable>
8710Each <variable> or <bound-variable> should be an identifier. Each
8711<expression> should be a valid expression. The <body> should be a
8712possibly empty sequence of expressions, like the <body> of a
8713lambda form.
8714
8715Semantics: A LAND* expression is evaluated by evaluating the
8716<expression> or <bound-variable> of each of the <clause>s from
8717left to right. The value of the first <expression> or
8718<bound-variable> that evaluates to a false value is returned; the
8719remaining <expression>s and <bound-variable>s are not evaluated.
8720The <body> forms are evaluated iff all the <expression>s and
8721<bound-variable>s evaluate to true values.
8722
8723The <expression>s and the <body> are evaluated in an environment
8724binding each <variable> of the preceding (<variable> <expression>)
8725clauses to the value of the <expression>. Later bindings
8726shadow earlier bindings.
8727
8728Guile's and-let* macro was contributed by Michael Livshin.
8729
36d3d540
MD
8730** New sorting functions
8731
8732*** New function: sorted? SEQUENCE LESS?
ed8c8636
MD
8733Returns `#t' when the sequence argument is in non-decreasing order
8734according to LESS? (that is, there is no adjacent pair `... x y
8735...' for which `(less? y x)').
8736
8737Returns `#f' when the sequence contains at least one out-of-order
8738pair. It is an error if the sequence is neither a list nor a
8739vector.
8740
36d3d540 8741*** New function: merge LIST1 LIST2 LESS?
ed8c8636
MD
8742LIST1 and LIST2 are sorted lists.
8743Returns the sorted list of all elements in LIST1 and LIST2.
8744
8745Assume that the elements a and b1 in LIST1 and b2 in LIST2 are "equal"
8746in the sense that (LESS? x y) --> #f for x, y in {a, b1, b2},
8747and that a < b1 in LIST1. Then a < b1 < b2 in the result.
8748(Here "<" should read "comes before".)
8749
36d3d540 8750*** New procedure: merge! LIST1 LIST2 LESS?
ed8c8636
MD
8751Merges two lists, re-using the pairs of LIST1 and LIST2 to build
8752the result. If the code is compiled, and LESS? constructs no new
8753pairs, no pairs at all will be allocated. The first pair of the
8754result will be either the first pair of LIST1 or the first pair of
8755LIST2.
8756
36d3d540 8757*** New function: sort SEQUENCE LESS?
ed8c8636
MD
8758Accepts either a list or a vector, and returns a new sequence
8759which is sorted. The new sequence is the same type as the input.
8760Always `(sorted? (sort sequence less?) less?)'. The original
8761sequence is not altered in any way. The new sequence shares its
8762elements with the old one; no elements are copied.
8763
36d3d540 8764*** New procedure: sort! SEQUENCE LESS
ed8c8636
MD
8765Returns its sorted result in the original boxes. No new storage is
8766allocated at all. Proper usage: (set! slist (sort! slist <))
8767
36d3d540 8768*** New function: stable-sort SEQUENCE LESS?
ed8c8636
MD
8769Similar to `sort' but stable. That is, if "equal" elements are
8770ordered a < b in the original sequence, they will have the same order
8771in the result.
8772
36d3d540 8773*** New function: stable-sort! SEQUENCE LESS?
ed8c8636
MD
8774Similar to `sort!' but stable.
8775Uses temporary storage when sorting vectors.
8776
36d3d540 8777*** New functions: sort-list, sort-list!
ed8c8636
MD
8778Added for compatibility with scsh.
8779
36d3d540
MD
8780** New built-in random number support
8781
8782*** New function: random N [STATE]
3e8370c3
MD
8783Accepts a positive integer or real N and returns a number of the
8784same type between zero (inclusive) and N (exclusive). The values
8785returned have a uniform distribution.
8786
8787The optional argument STATE must be of the type produced by
416075f1
MD
8788`copy-random-state' or `seed->random-state'. It defaults to the value
8789of the variable `*random-state*'. This object is used to maintain the
8790state of the pseudo-random-number generator and is altered as a side
8791effect of the `random' operation.
3e8370c3 8792
36d3d540 8793*** New variable: *random-state*
3e8370c3
MD
8794Holds a data structure that encodes the internal state of the
8795random-number generator that `random' uses by default. The nature
8796of this data structure is implementation-dependent. It may be
8797printed out and successfully read back in, but may or may not
8798function correctly as a random-number state object in another
8799implementation.
8800
36d3d540 8801*** New function: copy-random-state [STATE]
3e8370c3
MD
8802Returns a new object of type suitable for use as the value of the
8803variable `*random-state*' and as a second argument to `random'.
8804If argument STATE is given, a copy of it is returned. Otherwise a
8805copy of `*random-state*' is returned.
416075f1 8806
36d3d540 8807*** New function: seed->random-state SEED
416075f1
MD
8808Returns a new object of type suitable for use as the value of the
8809variable `*random-state*' and as a second argument to `random'.
8810SEED is a string or a number. A new state is generated and
8811initialized using SEED.
3e8370c3 8812
36d3d540 8813*** New function: random:uniform [STATE]
3e8370c3
MD
8814Returns an uniformly distributed inexact real random number in the
8815range between 0 and 1.
8816
36d3d540 8817*** New procedure: random:solid-sphere! VECT [STATE]
3e8370c3
MD
8818Fills VECT with inexact real random numbers the sum of whose
8819squares is less than 1.0. Thinking of VECT as coordinates in
8820space of dimension N = `(vector-length VECT)', the coordinates are
8821uniformly distributed within the unit N-shere. The sum of the
8822squares of the numbers is returned. VECT can be either a vector
8823or a uniform vector of doubles.
8824
36d3d540 8825*** New procedure: random:hollow-sphere! VECT [STATE]
3e8370c3
MD
8826Fills VECT with inexact real random numbers the sum of whose squares
8827is equal to 1.0. Thinking of VECT as coordinates in space of
8828dimension n = `(vector-length VECT)', the coordinates are uniformly
8829distributed over the surface of the unit n-shere. VECT can be either
8830a vector or a uniform vector of doubles.
8831
36d3d540 8832*** New function: random:normal [STATE]
3e8370c3
MD
8833Returns an inexact real in a normal distribution with mean 0 and
8834standard deviation 1. For a normal distribution with mean M and
8835standard deviation D use `(+ M (* D (random:normal)))'.
8836
36d3d540 8837*** New procedure: random:normal-vector! VECT [STATE]
3e8370c3
MD
8838Fills VECT with inexact real random numbers which are independent and
8839standard normally distributed (i.e., with mean 0 and variance 1).
8840VECT can be either a vector or a uniform vector of doubles.
8841
36d3d540 8842*** New function: random:exp STATE
3e8370c3
MD
8843Returns an inexact real in an exponential distribution with mean 1.
8844For an exponential distribution with mean U use (* U (random:exp)).
8845
69c6acbb
JB
8846** The range of logand, logior, logxor, logtest, and logbit? have changed.
8847
8848These functions now operate on numbers in the range of a C unsigned
8849long.
8850
8851These functions used to operate on numbers in the range of a C signed
8852long; however, this seems inappropriate, because Guile integers don't
8853overflow.
8854
ba4ee0d6
MD
8855** New function: make-guardian
8856This is an implementation of guardians as described in
8857R. Kent Dybvig, Carl Bruggeman, and David Eby (1993) "Guardians in a
8858Generation-Based Garbage Collector" ACM SIGPLAN Conference on
8859Programming Language Design and Implementation, June 1993
8860ftp://ftp.cs.indiana.edu/pub/scheme-repository/doc/pubs/guardians.ps.gz
8861
88ceea5c
MD
8862** New functions: delq1!, delv1!, delete1!
8863These procedures behave similar to delq! and friends but delete only
8864one object if at all.
8865
55254a6a
MD
8866** New function: unread-string STRING PORT
8867Unread STRING to PORT, that is, push it back onto the port so that
8868next read operation will work on the pushed back characters.
8869
8870** unread-char can now be called multiple times
8871If unread-char is called multiple times, the unread characters will be
8872read again in last-in first-out order.
8873
9e97c52d
GH
8874** the procedures uniform-array-read! and uniform-array-write! now
8875work on any kind of port, not just ports which are open on a file.
8876
b074884f 8877** Now 'l' in a port mode requests line buffering.
9e97c52d 8878
69bc9ff3
GH
8879** The procedure truncate-file now works on string ports as well
8880as file ports. If the size argument is omitted, the current
1b9c3dae 8881file position is used.
9e97c52d 8882
c94577b4 8883** new procedure: seek PORT/FDES OFFSET WHENCE
9e97c52d
GH
8884The arguments are the same as for the old fseek procedure, but it
8885works on string ports as well as random-access file ports.
8886
8887** the fseek procedure now works on string ports, since it has been
c94577b4 8888redefined using seek.
9e97c52d
GH
8889
8890** the setvbuf procedure now uses a default size if mode is _IOFBF and
8891size is not supplied.
8892
8893** the newline procedure no longer flushes the port if it's not
8894line-buffered: previously it did if it was the current output port.
8895
8896** open-pipe and close-pipe are no longer primitive procedures, but
8897an emulation can be obtained using `(use-modules (ice-9 popen))'.
8898
8899** the freopen procedure has been removed.
8900
8901** new procedure: drain-input PORT
8902Drains PORT's read buffers (including any pushed-back characters)
8903and returns the contents as a single string.
8904
67ad463a 8905** New function: map-in-order PROC LIST1 LIST2 ...
d41b3904
MD
8906Version of `map' which guarantees that the procedure is applied to the
8907lists in serial order.
8908
67ad463a
MD
8909** Renamed `serial-array-copy!' and `serial-array-map!' to
8910`array-copy-in-order!' and `array-map-in-order!'. The old names are
8911now obsolete and will go away in release 1.5.
8912
cf7132b3 8913** New syntax: collect BODY1 ...
d41b3904
MD
8914Version of `begin' which returns a list of the results of the body
8915forms instead of the result of the last body form. In contrast to
cf7132b3 8916`begin', `collect' allows an empty body.
d41b3904 8917
e4eae9b1
MD
8918** New functions: read-history FILENAME, write-history FILENAME
8919Read/write command line history from/to file. Returns #t on success
8920and #f if an error occured.
8921
d21ffe26
JB
8922** `ls' and `lls' in module (ice-9 ls) now handle no arguments.
8923
8924These procedures return a list of definitions available in the specified
8925argument, a relative module reference. In the case of no argument,
8926`(current-module)' is now consulted for definitions to return, instead
8927of simply returning #f, the former behavior.
8928
f8c9d497
JB
8929** The #/ syntax for lists is no longer supported.
8930
8931Earlier versions of Scheme accepted this syntax, but printed a
8932warning.
8933
8934** Guile no longer consults the SCHEME_LOAD_PATH environment variable.
8935
8936Instead, you should set GUILE_LOAD_PATH to tell Guile where to find
8937modules.
8938
3ffc7a36
MD
8939* Changes to the gh_ interface
8940
8941** gh_scm2doubles
8942
8943Now takes a second argument which is the result array. If this
8944pointer is NULL, a new array is malloced (the old behaviour).
8945
8946** gh_chars2byvect, gh_shorts2svect, gh_floats2fvect, gh_scm2chars,
8947 gh_scm2shorts, gh_scm2longs, gh_scm2floats
8948
8949New functions.
8950
3e8370c3
MD
8951* Changes to the scm_ interface
8952
ad91d6c3
MD
8953** Function: scm_make_named_hook (char* name, int n_args)
8954
8955Creates a hook in the same way as make-hook above but also
8956binds a variable named NAME to it.
8957
8958This is the typical way of creating a hook from C code.
8959
ece41168
MD
8960Currently, the variable is created in the "current" module. This
8961might change when we get the new module system.
ad91d6c3 8962
16a5a9a4
MD
8963** The smob interface
8964
8965The interface for creating smobs has changed. For documentation, see
8966data-rep.info (made from guile-core/doc/data-rep.texi).
8967
8968*** Deprecated function: SCM scm_newsmob (scm_smobfuns *)
8969
8970>>> This function will be removed in 1.3.4. <<<
8971
8972It is replaced by:
8973
8974*** Function: SCM scm_make_smob_type (const char *name, scm_sizet size)
8975This function adds a new smob type, named NAME, with instance size
8976SIZE to the system. The return value is a tag that is used in
8977creating instances of the type. If SIZE is 0, then no memory will
8978be allocated when instances of the smob are created, and nothing
8979will be freed by the default free function.
6c0201ad 8980
16a5a9a4
MD
8981*** Function: void scm_set_smob_mark (long tc, SCM (*mark) (SCM))
8982This function sets the smob marking procedure for the smob type
8983specified by the tag TC. TC is the tag returned by
8984`scm_make_smob_type'.
8985
8986*** Function: void scm_set_smob_free (long tc, SCM (*mark) (SCM))
8987This function sets the smob freeing procedure for the smob type
8988specified by the tag TC. TC is the tag returned by
8989`scm_make_smob_type'.
8990
8991*** Function: void scm_set_smob_print (tc, print)
8992
8993 - Function: void scm_set_smob_print (long tc,
8994 scm_sizet (*print) (SCM,
8995 SCM,
8996 scm_print_state *))
8997
8998This function sets the smob printing procedure for the smob type
8999specified by the tag TC. TC is the tag returned by
9000`scm_make_smob_type'.
9001
9002*** Function: void scm_set_smob_equalp (long tc, SCM (*equalp) (SCM, SCM))
9003This function sets the smob equality-testing predicate for the
9004smob type specified by the tag TC. TC is the tag returned by
9005`scm_make_smob_type'.
9006
9007*** Macro: void SCM_NEWSMOB (SCM var, long tc, void *data)
9008Make VALUE contain a smob instance of the type with type code TC and
9009smob data DATA. VALUE must be previously declared as C type `SCM'.
9010
9011*** Macro: fn_returns SCM_RETURN_NEWSMOB (long tc, void *data)
9012This macro expands to a block of code that creates a smob instance
9013of the type with type code TC and smob data DATA, and returns that
9014`SCM' value. It should be the last piece of code in a block.
9015
9e97c52d
GH
9016** The interfaces for using I/O ports and implementing port types
9017(ptobs) have changed significantly. The new interface is based on
9018shared access to buffers and a new set of ptob procedures.
9019
16a5a9a4
MD
9020*** scm_newptob has been removed
9021
9022It is replaced by:
9023
9024*** Function: SCM scm_make_port_type (type_name, fill_buffer, write_flush)
9025
9026- Function: SCM scm_make_port_type (char *type_name,
9027 int (*fill_buffer) (SCM port),
9028 void (*write_flush) (SCM port));
9029
9030Similarly to the new smob interface, there is a set of function
9031setters by which the user can customize the behaviour of his port
544e9093 9032type. See ports.h (scm_set_port_XXX).
16a5a9a4 9033
9e97c52d
GH
9034** scm_strport_to_string: New function: creates a new string from
9035a string port's buffer.
9036
3e8370c3
MD
9037** Plug in interface for random number generators
9038The variable `scm_the_rng' in random.c contains a value and three
9039function pointers which together define the current random number
9040generator being used by the Scheme level interface and the random
9041number library functions.
9042
9043The user is free to replace the default generator with the generator
9044of his own choice.
9045
9046*** Variable: size_t scm_the_rng.rstate_size
9047The size of the random state type used by the current RNG
9048measured in chars.
9049
9050*** Function: unsigned long scm_the_rng.random_bits (scm_rstate *STATE)
9051Given the random STATE, return 32 random bits.
9052
9053*** Function: void scm_the_rng.init_rstate (scm_rstate *STATE, chars *S, int N)
9054Seed random state STATE using string S of length N.
9055
9056*** Function: scm_rstate *scm_the_rng.copy_rstate (scm_rstate *STATE)
9057Given random state STATE, return a malloced copy.
9058
9059** Default RNG
9060The default RNG is the MWC (Multiply With Carry) random number
9061generator described by George Marsaglia at the Department of
9062Statistics and Supercomputer Computations Research Institute, The
9063Florida State University (http://stat.fsu.edu/~geo).
9064
9065It uses 64 bits, has a period of 4578426017172946943 (4.6e18), and
9066passes all tests in the DIEHARD test suite
9067(http://stat.fsu.edu/~geo/diehard.html). The generation of 32 bits
9068costs one multiply and one add on platforms which either supports long
9069longs (gcc does this on most systems) or have 64 bit longs. The cost
9070is four multiply on other systems but this can be optimized by writing
9071scm_i_uniform32 in assembler.
9072
9073These functions are provided through the scm_the_rng interface for use
9074by libguile and the application.
9075
9076*** Function: unsigned long scm_i_uniform32 (scm_i_rstate *STATE)
9077Given the random STATE, return 32 random bits.
9078Don't use this function directly. Instead go through the plugin
9079interface (see "Plug in interface" above).
9080
9081*** Function: void scm_i_init_rstate (scm_i_rstate *STATE, char *SEED, int N)
9082Initialize STATE using SEED of length N.
9083
9084*** Function: scm_i_rstate *scm_i_copy_rstate (scm_i_rstate *STATE)
9085Return a malloc:ed copy of STATE. This function can easily be re-used
9086in the interfaces to other RNGs.
9087
9088** Random number library functions
9089These functions use the current RNG through the scm_the_rng interface.
9090It might be a good idea to use these functions from your C code so
9091that only one random generator is used by all code in your program.
9092
259529f2 9093The default random state is stored in:
3e8370c3
MD
9094
9095*** Variable: SCM scm_var_random_state
9096Contains the vcell of the Scheme variable "*random-state*" which is
9097used as default state by all random number functions in the Scheme
9098level interface.
9099
9100Example:
9101
259529f2 9102 double x = scm_c_uniform01 (SCM_RSTATE (SCM_CDR (scm_var_random_state)));
3e8370c3 9103
259529f2
MD
9104*** Function: scm_rstate *scm_c_default_rstate (void)
9105This is a convenience function which returns the value of
9106scm_var_random_state. An error message is generated if this value
9107isn't a random state.
9108
9109*** Function: scm_rstate *scm_c_make_rstate (char *SEED, int LENGTH)
9110Make a new random state from the string SEED of length LENGTH.
9111
9112It is generally not a good idea to use multiple random states in a
9113program. While subsequent random numbers generated from one random
9114state are guaranteed to be reasonably independent, there is no such
9115guarantee for numbers generated from different random states.
9116
9117*** Macro: unsigned long scm_c_uniform32 (scm_rstate *STATE)
9118Return 32 random bits.
9119
9120*** Function: double scm_c_uniform01 (scm_rstate *STATE)
3e8370c3
MD
9121Return a sample from the uniform(0,1) distribution.
9122
259529f2 9123*** Function: double scm_c_normal01 (scm_rstate *STATE)
3e8370c3
MD
9124Return a sample from the normal(0,1) distribution.
9125
259529f2 9126*** Function: double scm_c_exp1 (scm_rstate *STATE)
3e8370c3
MD
9127Return a sample from the exp(1) distribution.
9128
259529f2
MD
9129*** Function: unsigned long scm_c_random (scm_rstate *STATE, unsigned long M)
9130Return a sample from the discrete uniform(0,M) distribution.
9131
9132*** Function: SCM scm_c_random_bignum (scm_rstate *STATE, SCM M)
3e8370c3 9133Return a sample from the discrete uniform(0,M) distribution.
259529f2 9134M must be a bignum object. The returned value may be an INUM.
3e8370c3 9135
9e97c52d 9136
f3227c7a 9137\f
d23bbf3e 9138Changes in Guile 1.3 (released Monday, October 19, 1998):
c484bf7f
JB
9139
9140* Changes to the distribution
9141
e2d6569c
JB
9142** We renamed the SCHEME_LOAD_PATH environment variable to GUILE_LOAD_PATH.
9143To avoid conflicts, programs should name environment variables after
9144themselves, except when there's a common practice establishing some
9145other convention.
9146
9147For now, Guile supports both GUILE_LOAD_PATH and SCHEME_LOAD_PATH,
9148giving the former precedence, and printing a warning message if the
9149latter is set. Guile 1.4 will not recognize SCHEME_LOAD_PATH at all.
9150
9151** The header files related to multi-byte characters have been removed.
9152They were: libguile/extchrs.h and libguile/mbstrings.h. Any C code
9153which referred to these explicitly will probably need to be rewritten,
9154since the support for the variant string types has been removed; see
9155below.
9156
9157** The header files append.h and sequences.h have been removed. These
9158files implemented non-R4RS operations which would encourage
9159non-portable programming style and less easy-to-read code.
3a97e020 9160
c484bf7f
JB
9161* Changes to the stand-alone interpreter
9162
2e368582 9163** New procedures have been added to implement a "batch mode":
ec4ab4fd 9164
2e368582 9165*** Function: batch-mode?
ec4ab4fd
GH
9166
9167 Returns a boolean indicating whether the interpreter is in batch
9168 mode.
9169
2e368582 9170*** Function: set-batch-mode?! ARG
ec4ab4fd
GH
9171
9172 If ARG is true, switches the interpreter to batch mode. The `#f'
9173 case has not been implemented.
9174
2e368582
JB
9175** Guile now provides full command-line editing, when run interactively.
9176To use this feature, you must have the readline library installed.
9177The Guile build process will notice it, and automatically include
9178support for it.
9179
9180The readline library is available via anonymous FTP from any GNU
9181mirror site; the canonical location is "ftp://prep.ai.mit.edu/pub/gnu".
9182
a5d6d578
MD
9183** the-last-stack is now a fluid.
9184
c484bf7f
JB
9185* Changes to the procedure for linking libguile with your programs
9186
71f20534 9187** You can now use the `guile-config' utility to build programs that use Guile.
2e368582 9188
2adfe1c0 9189Guile now includes a command-line utility called `guile-config', which
71f20534
JB
9190can provide information about how to compile and link programs that
9191use Guile.
9192
9193*** `guile-config compile' prints any C compiler flags needed to use Guile.
9194You should include this command's output on the command line you use
9195to compile C or C++ code that #includes the Guile header files. It's
9196usually just a `-I' flag to help the compiler find the Guile headers.
9197
9198
9199*** `guile-config link' prints any linker flags necessary to link with Guile.
8aa5c148 9200
71f20534 9201This command writes to its standard output a list of flags which you
8aa5c148
JB
9202must pass to the linker to link your code against the Guile library.
9203The flags include '-lguile' itself, any other libraries the Guile
9204library depends upon, and any `-L' flags needed to help the linker
9205find those libraries.
2e368582
JB
9206
9207For example, here is a Makefile rule that builds a program named 'foo'
9208from the object files ${FOO_OBJECTS}, and links them against Guile:
9209
9210 foo: ${FOO_OBJECTS}
2adfe1c0 9211 ${CC} ${CFLAGS} ${FOO_OBJECTS} `guile-config link` -o foo
2e368582 9212
e2d6569c
JB
9213Previous Guile releases recommended that you use autoconf to detect
9214which of a predefined set of libraries were present on your system.
2adfe1c0 9215It is more robust to use `guile-config', since it records exactly which
e2d6569c
JB
9216libraries the installed Guile library requires.
9217
2adfe1c0
JB
9218This was originally called `build-guile', but was renamed to
9219`guile-config' before Guile 1.3 was released, to be consistent with
9220the analogous script for the GTK+ GUI toolkit, which is called
9221`gtk-config'.
9222
2e368582 9223
8aa5c148
JB
9224** Use the GUILE_FLAGS macro in your configure.in file to find Guile.
9225
9226If you are using the GNU autoconf package to configure your program,
9227you can use the GUILE_FLAGS autoconf macro to call `guile-config'
9228(described above) and gather the necessary values for use in your
9229Makefiles.
9230
9231The GUILE_FLAGS macro expands to configure script code which runs the
9232`guile-config' script, to find out where Guile's header files and
9233libraries are installed. It sets two variables, marked for
9234substitution, as by AC_SUBST.
9235
9236 GUILE_CFLAGS --- flags to pass to a C or C++ compiler to build
9237 code that uses Guile header files. This is almost always just a
9238 -I flag.
9239
9240 GUILE_LDFLAGS --- flags to pass to the linker to link a
9241 program against Guile. This includes `-lguile' for the Guile
9242 library itself, any libraries that Guile itself requires (like
9243 -lqthreads), and so on. It may also include a -L flag to tell the
9244 compiler where to find the libraries.
9245
9246GUILE_FLAGS is defined in the file guile.m4, in the top-level
9247directory of the Guile distribution. You can copy it into your
9248package's aclocal.m4 file, and then use it in your configure.in file.
9249
9250If you are using the `aclocal' program, distributed with GNU automake,
9251to maintain your aclocal.m4 file, the Guile installation process
9252installs guile.m4 where aclocal will find it. All you need to do is
9253use GUILE_FLAGS in your configure.in file, and then run `aclocal';
9254this will copy the definition of GUILE_FLAGS into your aclocal.m4
9255file.
9256
9257
c484bf7f 9258* Changes to Scheme functions and syntax
7ad3c1e7 9259
02755d59 9260** Multi-byte strings have been removed, as have multi-byte and wide
e2d6569c
JB
9261ports. We felt that these were the wrong approach to
9262internationalization support.
02755d59 9263
2e368582
JB
9264** New function: readline [PROMPT]
9265Read a line from the terminal, and allow the user to edit it,
9266prompting with PROMPT. READLINE provides a large set of Emacs-like
9267editing commands, lets the user recall previously typed lines, and
9268works on almost every kind of terminal, including dumb terminals.
9269
9270READLINE assumes that the cursor is at the beginning of the line when
9271it is invoked. Thus, you can't print a prompt yourself, and then call
9272READLINE; you need to package up your prompt as a string, pass it to
9273the function, and let READLINE print the prompt itself. This is
9274because READLINE needs to know the prompt's screen width.
9275
8cd57bd0
JB
9276For Guile to provide this function, you must have the readline
9277library, version 2.1 or later, installed on your system. Readline is
9278available via anonymous FTP from prep.ai.mit.edu in pub/gnu, or from
9279any GNU mirror site.
2e368582
JB
9280
9281See also ADD-HISTORY function.
9282
9283** New function: add-history STRING
9284Add STRING as the most recent line in the history used by the READLINE
9285command. READLINE does not add lines to the history itself; you must
9286call ADD-HISTORY to make previous input available to the user.
9287
8cd57bd0
JB
9288** The behavior of the read-line function has changed.
9289
9290This function now uses standard C library functions to read the line,
9291for speed. This means that it doesn not respect the value of
9292scm-line-incrementors; it assumes that lines are delimited with
9293#\newline.
9294
9295(Note that this is read-line, the function that reads a line of text
9296from a port, not readline, the function that reads a line from a
9297terminal, providing full editing capabilities.)
9298
1a0106ef
JB
9299** New module (ice-9 getopt-gnu-style): Parse command-line arguments.
9300
9301This module provides some simple argument parsing. It exports one
9302function:
9303
9304Function: getopt-gnu-style ARG-LS
9305 Parse a list of program arguments into an alist of option
9306 descriptions.
9307
9308 Each item in the list of program arguments is examined to see if
9309 it meets the syntax of a GNU long-named option. An argument like
9310 `--MUMBLE' produces an element of the form (MUMBLE . #t) in the
9311 returned alist, where MUMBLE is a keyword object with the same
9312 name as the argument. An argument like `--MUMBLE=FROB' produces
9313 an element of the form (MUMBLE . FROB), where FROB is a string.
9314
9315 As a special case, the returned alist also contains a pair whose
9316 car is the symbol `rest'. The cdr of this pair is a list
9317 containing all the items in the argument list that are not options
9318 of the form mentioned above.
9319
9320 The argument `--' is treated specially: all items in the argument
9321 list appearing after such an argument are not examined, and are
9322 returned in the special `rest' list.
9323
9324 This function does not parse normal single-character switches.
9325 You will need to parse them out of the `rest' list yourself.
9326
8cd57bd0
JB
9327** The read syntax for byte vectors and short vectors has changed.
9328
9329Instead of #bytes(...), write #y(...).
9330
9331Instead of #short(...), write #h(...).
9332
9333This may seem nutty, but, like the other uniform vectors, byte vectors
9334and short vectors want to have the same print and read syntax (and,
9335more basic, want to have read syntax!). Changing the read syntax to
9336use multiple characters after the hash sign breaks with the
9337conventions used in R5RS and the conventions used for the other
9338uniform vectors. It also introduces complexity in the current reader,
9339both on the C and Scheme levels. (The Right solution is probably to
9340change the syntax and prototypes for uniform vectors entirely.)
9341
9342
9343** The new module (ice-9 session) provides useful interactive functions.
9344
9345*** New procedure: (apropos REGEXP OPTION ...)
9346
9347Display a list of top-level variables whose names match REGEXP, and
9348the modules they are imported from. Each OPTION should be one of the
9349following symbols:
9350
9351 value --- Show the value of each matching variable.
9352 shadow --- Show bindings shadowed by subsequently imported modules.
9353 full --- Same as both `shadow' and `value'.
9354
9355For example:
9356
9357 guile> (apropos "trace" 'full)
9358 debug: trace #<procedure trace args>
9359 debug: untrace #<procedure untrace args>
9360 the-scm-module: display-backtrace #<compiled-closure #<primitive-procedure gsubr-apply>>
9361 the-scm-module: before-backtrace-hook ()
9362 the-scm-module: backtrace #<primitive-procedure backtrace>
9363 the-scm-module: after-backtrace-hook ()
9364 the-scm-module: has-shown-backtrace-hint? #f
6c0201ad 9365 guile>
8cd57bd0
JB
9366
9367** There are new functions and syntax for working with macros.
9368
9369Guile implements macros as a special object type. Any variable whose
9370top-level binding is a macro object acts as a macro. The macro object
9371specifies how the expression should be transformed before evaluation.
9372
9373*** Macro objects now print in a reasonable way, resembling procedures.
9374
9375*** New function: (macro? OBJ)
9376True iff OBJ is a macro object.
9377
9378*** New function: (primitive-macro? OBJ)
9379Like (macro? OBJ), but true only if OBJ is one of the Guile primitive
9380macro transformers, implemented in eval.c rather than Scheme code.
9381
dbdd0c16
JB
9382Why do we have this function?
9383- For symmetry with procedure? and primitive-procedure?,
9384- to allow custom print procedures to tell whether a macro is
9385 primitive, and display it differently, and
9386- to allow compilers and user-written evaluators to distinguish
9387 builtin special forms from user-defined ones, which could be
9388 compiled.
9389
8cd57bd0
JB
9390*** New function: (macro-type OBJ)
9391Return a value indicating what kind of macro OBJ is. Possible return
9392values are:
9393
9394 The symbol `syntax' --- a macro created by procedure->syntax.
9395 The symbol `macro' --- a macro created by procedure->macro.
9396 The symbol `macro!' --- a macro created by procedure->memoizing-macro.
6c0201ad 9397 The boolean #f --- if OBJ is not a macro object.
8cd57bd0
JB
9398
9399*** New function: (macro-name MACRO)
9400Return the name of the macro object MACRO's procedure, as returned by
9401procedure-name.
9402
9403*** New function: (macro-transformer MACRO)
9404Return the transformer procedure for MACRO.
9405
9406*** New syntax: (use-syntax MODULE ... TRANSFORMER)
9407
9408Specify a new macro expander to use in the current module. Each
9409MODULE is a module name, with the same meaning as in the `use-modules'
9410form; each named module's exported bindings are added to the current
9411top-level environment. TRANSFORMER is an expression evaluated in the
9412resulting environment which must yield a procedure to use as the
9413module's eval transformer: every expression evaluated in this module
9414is passed to this function, and the result passed to the Guile
6c0201ad 9415interpreter.
8cd57bd0
JB
9416
9417*** macro-eval! is removed. Use local-eval instead.
29521173 9418
8d9dcb3c
MV
9419** Some magic has been added to the printer to better handle user
9420written printing routines (like record printers, closure printers).
9421
9422The problem is that these user written routines must have access to
7fbd77df 9423the current `print-state' to be able to handle fancy things like
8d9dcb3c
MV
9424detection of circular references. These print-states have to be
9425passed to the builtin printing routines (display, write, etc) to
9426properly continue the print chain.
9427
9428We didn't want to change all existing print code so that it
8cd57bd0 9429explicitly passes thru a print state in addition to a port. Instead,
8d9dcb3c
MV
9430we extented the possible values that the builtin printing routines
9431accept as a `port'. In addition to a normal port, they now also take
9432a pair of a normal port and a print-state. Printing will go to the
9433port and the print-state will be used to control the detection of
9434circular references, etc. If the builtin function does not care for a
9435print-state, it is simply ignored.
9436
9437User written callbacks are now called with such a pair as their
9438`port', but because every function now accepts this pair as a PORT
9439argument, you don't have to worry about that. In fact, it is probably
9440safest to not check for these pairs.
9441
9442However, it is sometimes necessary to continue a print chain on a
9443different port, for example to get a intermediate string
9444representation of the printed value, mangle that string somehow, and
9445then to finally print the mangled string. Use the new function
9446
9447 inherit-print-state OLD-PORT NEW-PORT
9448
9449for this. It constructs a new `port' that prints to NEW-PORT but
9450inherits the print-state of OLD-PORT.
9451
ef1ea498
MD
9452** struct-vtable-offset renamed to vtable-offset-user
9453
9454** New constants: vtable-index-layout, vtable-index-vtable, vtable-index-printer
9455
e478dffa
MD
9456** There is now a third optional argument to make-vtable-vtable
9457 (and fourth to make-struct) when constructing new types (vtables).
9458 This argument initializes field vtable-index-printer of the vtable.
ef1ea498 9459
4851dc57
MV
9460** The detection of circular references has been extended to structs.
9461That is, a structure that -- in the process of being printed -- prints
9462itself does not lead to infinite recursion.
9463
9464** There is now some basic support for fluids. Please read
9465"libguile/fluid.h" to find out more. It is accessible from Scheme with
9466the following functions and macros:
9467
9c3fb66f
MV
9468Function: make-fluid
9469
9470 Create a new fluid object. Fluids are not special variables or
9471 some other extension to the semantics of Scheme, but rather
9472 ordinary Scheme objects. You can store them into variables (that
9473 are still lexically scoped, of course) or into any other place you
9474 like. Every fluid has a initial value of `#f'.
04c76b58 9475
9c3fb66f 9476Function: fluid? OBJ
04c76b58 9477
9c3fb66f 9478 Test whether OBJ is a fluid.
04c76b58 9479
9c3fb66f
MV
9480Function: fluid-ref FLUID
9481Function: fluid-set! FLUID VAL
04c76b58
MV
9482
9483 Access/modify the fluid FLUID. Modifications are only visible
9484 within the current dynamic root (that includes threads).
9485
9c3fb66f
MV
9486Function: with-fluids* FLUIDS VALUES THUNK
9487
9488 FLUIDS is a list of fluids and VALUES a corresponding list of
9489 values for these fluids. Before THUNK gets called the values are
6c0201ad 9490 installed in the fluids and the old values of the fluids are
9c3fb66f
MV
9491 saved in the VALUES list. When the flow of control leaves THUNK
9492 or reenters it, the values get swapped again. You might think of
9493 this as a `safe-fluid-excursion'. Note that the VALUES list is
9494 modified by `with-fluids*'.
9495
9496Macro: with-fluids ((FLUID VALUE) ...) FORM ...
9497
9498 The same as `with-fluids*' but with a different syntax. It looks
9499 just like `let', but both FLUID and VALUE are evaluated. Remember,
9500 fluids are not special variables but ordinary objects. FLUID
9501 should evaluate to a fluid.
04c76b58 9502
e2d6569c 9503** Changes to system call interfaces:
64d01d13 9504
e2d6569c 9505*** close-port, close-input-port and close-output-port now return a
64d01d13
GH
9506boolean instead of an `unspecified' object. #t means that the port
9507was successfully closed, while #f means it was already closed. It is
9508also now possible for these procedures to raise an exception if an
9509error occurs (some errors from write can be delayed until close.)
9510
e2d6569c 9511*** the first argument to chmod, fcntl, ftell and fseek can now be a
6afcd3b2
GH
9512file descriptor.
9513
e2d6569c 9514*** the third argument to fcntl is now optional.
6afcd3b2 9515
e2d6569c 9516*** the first argument to chown can now be a file descriptor or a port.
6afcd3b2 9517
e2d6569c 9518*** the argument to stat can now be a port.
6afcd3b2 9519
e2d6569c 9520*** The following new procedures have been added (most use scsh
64d01d13
GH
9521interfaces):
9522
e2d6569c 9523*** procedure: close PORT/FD
ec4ab4fd
GH
9524 Similar to close-port (*note close-port: Closing Ports.), but also
9525 works on file descriptors. A side effect of closing a file
9526 descriptor is that any ports using that file descriptor are moved
9527 to a different file descriptor and have their revealed counts set
9528 to zero.
9529
e2d6569c 9530*** procedure: port->fdes PORT
ec4ab4fd
GH
9531 Returns the integer file descriptor underlying PORT. As a side
9532 effect the revealed count of PORT is incremented.
9533
e2d6569c 9534*** procedure: fdes->ports FDES
ec4ab4fd
GH
9535 Returns a list of existing ports which have FDES as an underlying
9536 file descriptor, without changing their revealed counts.
9537
e2d6569c 9538*** procedure: fdes->inport FDES
ec4ab4fd
GH
9539 Returns an existing input port which has FDES as its underlying
9540 file descriptor, if one exists, and increments its revealed count.
9541 Otherwise, returns a new input port with a revealed count of 1.
9542
e2d6569c 9543*** procedure: fdes->outport FDES
ec4ab4fd
GH
9544 Returns an existing output port which has FDES as its underlying
9545 file descriptor, if one exists, and increments its revealed count.
9546 Otherwise, returns a new output port with a revealed count of 1.
9547
9548 The next group of procedures perform a `dup2' system call, if NEWFD
9549(an integer) is supplied, otherwise a `dup'. The file descriptor to be
9550duplicated can be supplied as an integer or contained in a port. The
64d01d13
GH
9551type of value returned varies depending on which procedure is used.
9552
ec4ab4fd
GH
9553 All procedures also have the side effect when performing `dup2' that
9554any ports using NEWFD are moved to a different file descriptor and have
64d01d13
GH
9555their revealed counts set to zero.
9556
e2d6569c 9557*** procedure: dup->fdes PORT/FD [NEWFD]
ec4ab4fd 9558 Returns an integer file descriptor.
64d01d13 9559
e2d6569c 9560*** procedure: dup->inport PORT/FD [NEWFD]
ec4ab4fd 9561 Returns a new input port using the new file descriptor.
64d01d13 9562
e2d6569c 9563*** procedure: dup->outport PORT/FD [NEWFD]
ec4ab4fd 9564 Returns a new output port using the new file descriptor.
64d01d13 9565
e2d6569c 9566*** procedure: dup PORT/FD [NEWFD]
ec4ab4fd
GH
9567 Returns a new port if PORT/FD is a port, with the same mode as the
9568 supplied port, otherwise returns an integer file descriptor.
64d01d13 9569
e2d6569c 9570*** procedure: dup->port PORT/FD MODE [NEWFD]
ec4ab4fd
GH
9571 Returns a new port using the new file descriptor. MODE supplies a
9572 mode string for the port (*note open-file: File Ports.).
64d01d13 9573
e2d6569c 9574*** procedure: setenv NAME VALUE
ec4ab4fd
GH
9575 Modifies the environment of the current process, which is also the
9576 default environment inherited by child processes.
64d01d13 9577
ec4ab4fd
GH
9578 If VALUE is `#f', then NAME is removed from the environment.
9579 Otherwise, the string NAME=VALUE is added to the environment,
9580 replacing any existing string with name matching NAME.
64d01d13 9581
ec4ab4fd 9582 The return value is unspecified.
956055a9 9583
e2d6569c 9584*** procedure: truncate-file OBJ SIZE
6afcd3b2
GH
9585 Truncates the file referred to by OBJ to at most SIZE bytes. OBJ
9586 can be a string containing a file name or an integer file
9587 descriptor or port open for output on the file. The underlying
9588 system calls are `truncate' and `ftruncate'.
9589
9590 The return value is unspecified.
9591
e2d6569c 9592*** procedure: setvbuf PORT MODE [SIZE]
7a6f1ffa
GH
9593 Set the buffering mode for PORT. MODE can be:
9594 `_IONBF'
9595 non-buffered
9596
9597 `_IOLBF'
9598 line buffered
9599
9600 `_IOFBF'
9601 block buffered, using a newly allocated buffer of SIZE bytes.
9602 However if SIZE is zero or unspecified, the port will be made
9603 non-buffered.
9604
9605 This procedure should not be used after I/O has been performed with
9606 the port.
9607
9608 Ports are usually block buffered by default, with a default buffer
9609 size. Procedures e.g., *Note open-file: File Ports, which accept a
9610 mode string allow `0' to be added to request an unbuffered port.
9611
e2d6569c 9612*** procedure: fsync PORT/FD
6afcd3b2
GH
9613 Copies any unwritten data for the specified output file descriptor
9614 to disk. If PORT/FD is a port, its buffer is flushed before the
9615 underlying file descriptor is fsync'd. The return value is
9616 unspecified.
9617
e2d6569c 9618*** procedure: open-fdes PATH FLAGS [MODES]
6afcd3b2
GH
9619 Similar to `open' but returns a file descriptor instead of a port.
9620
e2d6569c 9621*** procedure: execle PATH ENV [ARG] ...
6afcd3b2
GH
9622 Similar to `execl', but the environment of the new process is
9623 specified by ENV, which must be a list of strings as returned by
9624 the `environ' procedure.
9625
9626 This procedure is currently implemented using the `execve' system
9627 call, but we call it `execle' because of its Scheme calling
9628 interface.
9629
e2d6569c 9630*** procedure: strerror ERRNO
ec4ab4fd
GH
9631 Returns the Unix error message corresponding to ERRNO, an integer.
9632
e2d6569c 9633*** procedure: primitive-exit [STATUS]
6afcd3b2
GH
9634 Terminate the current process without unwinding the Scheme stack.
9635 This is would typically be useful after a fork. The exit status
9636 is STATUS if supplied, otherwise zero.
9637
e2d6569c 9638*** procedure: times
6afcd3b2
GH
9639 Returns an object with information about real and processor time.
9640 The following procedures accept such an object as an argument and
9641 return a selected component:
9642
9643 `tms:clock'
9644 The current real time, expressed as time units relative to an
9645 arbitrary base.
9646
9647 `tms:utime'
9648 The CPU time units used by the calling process.
9649
9650 `tms:stime'
9651 The CPU time units used by the system on behalf of the
9652 calling process.
9653
9654 `tms:cutime'
9655 The CPU time units used by terminated child processes of the
9656 calling process, whose status has been collected (e.g., using
9657 `waitpid').
9658
9659 `tms:cstime'
9660 Similarly, the CPU times units used by the system on behalf of
9661 terminated child processes.
7ad3c1e7 9662
e2d6569c
JB
9663** Removed: list-length
9664** Removed: list-append, list-append!
9665** Removed: list-reverse, list-reverse!
9666
9667** array-map renamed to array-map!
9668
9669** serial-array-map renamed to serial-array-map!
9670
660f41fa
MD
9671** catch doesn't take #f as first argument any longer
9672
9673Previously, it was possible to pass #f instead of a key to `catch'.
9674That would cause `catch' to pass a jump buffer object to the procedure
9675passed as second argument. The procedure could then use this jump
9676buffer objekt as an argument to throw.
9677
9678This mechanism has been removed since its utility doesn't motivate the
9679extra complexity it introduces.
9680
332d00f6
JB
9681** The `#/' notation for lists now provokes a warning message from Guile.
9682This syntax will be removed from Guile in the near future.
9683
9684To disable the warning message, set the GUILE_HUSH environment
9685variable to any non-empty value.
9686
8cd57bd0
JB
9687** The newline character now prints as `#\newline', following the
9688normal Scheme notation, not `#\nl'.
9689
c484bf7f
JB
9690* Changes to the gh_ interface
9691
8986901b
JB
9692** The gh_enter function now takes care of loading the Guile startup files.
9693gh_enter works by calling scm_boot_guile; see the remarks below.
9694
5424b4f7
MD
9695** Function: void gh_write (SCM x)
9696
9697Write the printed representation of the scheme object x to the current
9698output port. Corresponds to the scheme level `write'.
9699
3a97e020
MD
9700** gh_list_length renamed to gh_length.
9701
8d6787b6
MG
9702** vector handling routines
9703
9704Several major changes. In particular, gh_vector() now resembles
9705(vector ...) (with a caveat -- see manual), and gh_make_vector() now
956328d2
MG
9706exists and behaves like (make-vector ...). gh_vset() and gh_vref()
9707have been renamed gh_vector_set_x() and gh_vector_ref(). Some missing
8d6787b6
MG
9708vector-related gh_ functions have been implemented.
9709
7fee59bd
MG
9710** pair and list routines
9711
9712Implemented several of the R4RS pair and list functions that were
9713missing.
9714
171422a9
MD
9715** gh_scm2doubles, gh_doubles2scm, gh_doubles2dvect
9716
9717New function. Converts double arrays back and forth between Scheme
9718and C.
9719
c484bf7f
JB
9720* Changes to the scm_ interface
9721
8986901b
JB
9722** The function scm_boot_guile now takes care of loading the startup files.
9723
9724Guile's primary initialization function, scm_boot_guile, now takes
9725care of loading `boot-9.scm', in the `ice-9' module, to initialize
9726Guile, define the module system, and put together some standard
9727bindings. It also loads `init.scm', which is intended to hold
9728site-specific initialization code.
9729
9730Since Guile cannot operate properly until boot-9.scm is loaded, there
9731is no reason to separate loading boot-9.scm from Guile's other
9732initialization processes.
9733
9734This job used to be done by scm_compile_shell_switches, which didn't
9735make much sense; in particular, it meant that people using Guile for
9736non-shell-like applications had to jump through hoops to get Guile
9737initialized properly.
9738
9739** The function scm_compile_shell_switches no longer loads the startup files.
9740Now, Guile always loads the startup files, whenever it is initialized;
9741see the notes above for scm_boot_guile and scm_load_startup_files.
9742
9743** Function: scm_load_startup_files
9744This new function takes care of loading Guile's initialization file
9745(`boot-9.scm'), and the site initialization file, `init.scm'. Since
9746this is always called by the Guile initialization process, it's
9747probably not too useful to call this yourself, but it's there anyway.
9748
87148d9e
JB
9749** The semantics of smob marking have changed slightly.
9750
9751The smob marking function (the `mark' member of the scm_smobfuns
9752structure) is no longer responsible for setting the mark bit on the
9753smob. The generic smob handling code in the garbage collector will
9754set this bit. The mark function need only ensure that any other
9755objects the smob refers to get marked.
9756
9757Note that this change means that the smob's GC8MARK bit is typically
9758already set upon entry to the mark function. Thus, marking functions
9759which look like this:
9760
9761 {
9762 if (SCM_GC8MARKP (ptr))
9763 return SCM_BOOL_F;
9764 SCM_SETGC8MARK (ptr);
9765 ... mark objects to which the smob refers ...
9766 }
9767
9768are now incorrect, since they will return early, and fail to mark any
9769other objects the smob refers to. Some code in the Guile library used
9770to work this way.
9771
1cf84ea5
JB
9772** The semantics of the I/O port functions in scm_ptobfuns have changed.
9773
9774If you have implemented your own I/O port type, by writing the
9775functions required by the scm_ptobfuns and then calling scm_newptob,
9776you will need to change your functions slightly.
9777
9778The functions in a scm_ptobfuns structure now expect the port itself
9779as their argument; they used to expect the `stream' member of the
9780port's scm_port_table structure. This allows functions in an
9781scm_ptobfuns structure to easily access the port's cell (and any flags
9782it its CAR), and the port's scm_port_table structure.
9783
9784Guile now passes the I/O port itself as the `port' argument in the
9785following scm_ptobfuns functions:
9786
9787 int (*free) (SCM port);
9788 int (*fputc) (int, SCM port);
9789 int (*fputs) (char *, SCM port);
9790 scm_sizet (*fwrite) SCM_P ((char *ptr,
9791 scm_sizet size,
9792 scm_sizet nitems,
9793 SCM port));
9794 int (*fflush) (SCM port);
9795 int (*fgetc) (SCM port);
9796 int (*fclose) (SCM port);
9797
9798The interfaces to the `mark', `print', `equalp', and `fgets' methods
9799are unchanged.
9800
9801If you have existing code which defines its own port types, it is easy
9802to convert your code to the new interface; simply apply SCM_STREAM to
9803the port argument to yield the value you code used to expect.
9804
9805Note that since both the port and the stream have the same type in the
9806C code --- they are both SCM values --- the C compiler will not remind
9807you if you forget to update your scm_ptobfuns functions.
9808
9809
933a7411
MD
9810** Function: int scm_internal_select (int fds,
9811 SELECT_TYPE *rfds,
9812 SELECT_TYPE *wfds,
9813 SELECT_TYPE *efds,
9814 struct timeval *timeout);
9815
9816This is a replacement for the `select' function provided by the OS.
9817It enables I/O blocking and sleeping to happen for one cooperative
9818thread without blocking other threads. It also avoids busy-loops in
9819these situations. It is intended that all I/O blocking and sleeping
9820will finally go through this function. Currently, this function is
9821only available on systems providing `gettimeofday' and `select'.
9822
5424b4f7
MD
9823** Function: SCM scm_internal_stack_catch (SCM tag,
9824 scm_catch_body_t body,
9825 void *body_data,
9826 scm_catch_handler_t handler,
9827 void *handler_data)
9828
9829A new sibling to the other two C level `catch' functions
9830scm_internal_catch and scm_internal_lazy_catch. Use it if you want
9831the stack to be saved automatically into the variable `the-last-stack'
9832(scm_the_last_stack_var) on error. This is necessary if you want to
9833use advanced error reporting, such as calling scm_display_error and
9834scm_display_backtrace. (They both take a stack object as argument.)
9835
df366c26
MD
9836** Function: SCM scm_spawn_thread (scm_catch_body_t body,
9837 void *body_data,
9838 scm_catch_handler_t handler,
9839 void *handler_data)
9840
9841Spawns a new thread. It does a job similar to
9842scm_call_with_new_thread but takes arguments more suitable when
9843spawning threads from application C code.
9844
88482b31
MD
9845** The hook scm_error_callback has been removed. It was originally
9846intended as a way for the user to install his own error handler. But
9847that method works badly since it intervenes between throw and catch,
9848thereby changing the semantics of expressions like (catch #t ...).
9849The correct way to do it is to use one of the C level catch functions
9850in throw.c: scm_internal_catch/lazy_catch/stack_catch.
9851
3a97e020
MD
9852** Removed functions:
9853
9854scm_obj_length, scm_list_length, scm_list_append, scm_list_append_x,
9855scm_list_reverse, scm_list_reverse_x
9856
9857** New macros: SCM_LISTn where n is one of the integers 0-9.
9858
9859These can be used for pretty list creation from C. The idea is taken
9860from Erick Gallesio's STk.
9861
298aa6e3
MD
9862** scm_array_map renamed to scm_array_map_x
9863
527da704
MD
9864** mbstrings are now removed
9865
9866This means that the type codes scm_tc7_mb_string and
9867scm_tc7_mb_substring has been removed.
9868
8cd57bd0
JB
9869** scm_gen_putc, scm_gen_puts, scm_gen_write, and scm_gen_getc have changed.
9870
9871Since we no longer support multi-byte strings, these I/O functions
9872have been simplified, and renamed. Here are their old names, and
9873their new names and arguments:
9874
9875scm_gen_putc -> void scm_putc (int c, SCM port);
9876scm_gen_puts -> void scm_puts (char *s, SCM port);
9877scm_gen_write -> void scm_lfwrite (char *ptr, scm_sizet size, SCM port);
9878scm_gen_getc -> void scm_getc (SCM port);
9879
9880
527da704
MD
9881** The macros SCM_TYP7D and SCM_TYP7SD has been removed.
9882
9883** The macro SCM_TYP7S has taken the role of the old SCM_TYP7D
9884
9885SCM_TYP7S now masks away the bit which distinguishes substrings from
9886strings.
9887
660f41fa
MD
9888** scm_catch_body_t: Backward incompatible change!
9889
9890Body functions to scm_internal_catch and friends do not any longer
9891take a second argument. This is because it is no longer possible to
9892pass a #f arg to catch.
9893
a8e05009
JB
9894** Calls to scm_protect_object and scm_unprotect now nest properly.
9895
9896The function scm_protect_object protects its argument from being freed
9897by the garbage collector. scm_unprotect_object removes that
9898protection.
9899
9900These functions now nest properly. That is, for every object O, there
9901is a counter which scm_protect_object(O) increments and
9902scm_unprotect_object(O) decrements, if the counter is greater than
9903zero. Every object's counter is zero when it is first created. If an
9904object's counter is greater than zero, the garbage collector will not
9905reclaim its storage.
9906
9907This allows you to use scm_protect_object in your code without
9908worrying that some other function you call will call
9909scm_unprotect_object, and allow it to be freed. Assuming that the
9910functions you call are well-behaved, and unprotect only those objects
9911they protect, you can follow the same rule and have confidence that
9912objects will be freed only at appropriate times.
9913
c484bf7f
JB
9914\f
9915Changes in Guile 1.2 (released Tuesday, June 24 1997):
cf78e9e8 9916
737c9113
JB
9917* Changes to the distribution
9918
832b09ed
JB
9919** Nightly snapshots are now available from ftp.red-bean.com.
9920The old server, ftp.cyclic.com, has been relinquished to its rightful
9921owner.
9922
9923Nightly snapshots of the Guile development sources are now available via
9924anonymous FTP from ftp.red-bean.com, as /pub/guile/guile-snap.tar.gz.
9925
9926Via the web, that's: ftp://ftp.red-bean.com/pub/guile/guile-snap.tar.gz
9927For getit, that's: ftp.red-bean.com:/pub/guile/guile-snap.tar.gz
9928
0fcab5ed
JB
9929** To run Guile without installing it, the procedure has changed a bit.
9930
9931If you used a separate build directory to compile Guile, you'll need
9932to include the build directory in SCHEME_LOAD_PATH, as well as the
9933source directory. See the `INSTALL' file for examples.
9934
737c9113
JB
9935* Changes to the procedure for linking libguile with your programs
9936
94982a4e
JB
9937** The standard Guile load path for Scheme code now includes
9938$(datadir)/guile (usually /usr/local/share/guile). This means that
9939you can install your own Scheme files there, and Guile will find them.
9940(Previous versions of Guile only checked a directory whose name
9941contained the Guile version number, so you had to re-install or move
9942your Scheme sources each time you installed a fresh version of Guile.)
9943
9944The load path also includes $(datadir)/guile/site; we recommend
9945putting individual Scheme files there. If you want to install a
9946package with multiple source files, create a directory for them under
9947$(datadir)/guile.
9948
9949** Guile 1.2 will now use the Rx regular expression library, if it is
9950installed on your system. When you are linking libguile into your own
9951programs, this means you will have to link against -lguile, -lqt (if
9952you configured Guile with thread support), and -lrx.
27590f82
JB
9953
9954If you are using autoconf to generate configuration scripts for your
9955application, the following lines should suffice to add the appropriate
9956libraries to your link command:
9957
9958### Find Rx, quickthreads and libguile.
9959AC_CHECK_LIB(rx, main)
9960AC_CHECK_LIB(qt, main)
9961AC_CHECK_LIB(guile, scm_shell)
9962
94982a4e
JB
9963The Guile 1.2 distribution does not contain sources for the Rx
9964library, as Guile 1.0 did. If you want to use Rx, you'll need to
9965retrieve it from a GNU FTP site and install it separately.
9966
b83b8bee
JB
9967* Changes to Scheme functions and syntax
9968
e035e7e6
MV
9969** The dynamic linking features of Guile are now enabled by default.
9970You can disable them by giving the `--disable-dynamic-linking' option
9971to configure.
9972
e035e7e6
MV
9973 (dynamic-link FILENAME)
9974
9975 Find the object file denoted by FILENAME (a string) and link it
9976 into the running Guile application. When everything works out,
9977 return a Scheme object suitable for representing the linked object
9978 file. Otherwise an error is thrown. How object files are
9979 searched is system dependent.
9980
9981 (dynamic-object? VAL)
9982
9983 Determine whether VAL represents a dynamically linked object file.
9984
9985 (dynamic-unlink DYNOBJ)
9986
9987 Unlink the indicated object file from the application. DYNOBJ
9988 should be one of the values returned by `dynamic-link'.
9989
9990 (dynamic-func FUNCTION DYNOBJ)
9991
9992 Search the C function indicated by FUNCTION (a string or symbol)
9993 in DYNOBJ and return some Scheme object that can later be used
9994 with `dynamic-call' to actually call this function. Right now,
9995 these Scheme objects are formed by casting the address of the
9996 function to `long' and converting this number to its Scheme
9997 representation.
9998
9999 (dynamic-call FUNCTION DYNOBJ)
10000
10001 Call the C function indicated by FUNCTION and DYNOBJ. The
10002 function is passed no arguments and its return value is ignored.
10003 When FUNCTION is something returned by `dynamic-func', call that
10004 function and ignore DYNOBJ. When FUNCTION is a string (or symbol,
10005 etc.), look it up in DYNOBJ; this is equivalent to
10006
10007 (dynamic-call (dynamic-func FUNCTION DYNOBJ) #f)
10008
10009 Interrupts are deferred while the C function is executing (with
10010 SCM_DEFER_INTS/SCM_ALLOW_INTS).
10011
10012 (dynamic-args-call FUNCTION DYNOBJ ARGS)
10013
10014 Call the C function indicated by FUNCTION and DYNOBJ, but pass it
10015 some arguments and return its return value. The C function is
10016 expected to take two arguments and return an `int', just like
10017 `main':
10018
10019 int c_func (int argc, char **argv);
10020
10021 ARGS must be a list of strings and is converted into an array of
10022 `char *'. The array is passed in ARGV and its size in ARGC. The
10023 return value is converted to a Scheme number and returned from the
10024 call to `dynamic-args-call'.
10025
0fcab5ed
JB
10026When dynamic linking is disabled or not supported on your system,
10027the above functions throw errors, but they are still available.
10028
e035e7e6
MV
10029Here is a small example that works on GNU/Linux:
10030
10031 (define libc-obj (dynamic-link "libc.so"))
10032 (dynamic-args-call 'rand libc-obj '())
10033
10034See the file `libguile/DYNAMIC-LINKING' for additional comments.
10035
27590f82 10036** The #/ syntax for module names is depreciated, and will be removed
6c0201ad 10037in a future version of Guile. Instead of
27590f82
JB
10038
10039 #/foo/bar/baz
10040
10041instead write
10042
10043 (foo bar baz)
10044
10045The latter syntax is more consistent with existing Lisp practice.
10046
5dade857
MV
10047** Guile now does fancier printing of structures. Structures are the
10048underlying implementation for records, which in turn are used to
10049implement modules, so all of these object now print differently and in
10050a more informative way.
10051
161029df
JB
10052The Scheme printer will examine the builtin variable *struct-printer*
10053whenever it needs to print a structure object. When this variable is
10054not `#f' it is deemed to be a procedure and will be applied to the
10055structure object and the output port. When *struct-printer* is `#f'
10056or the procedure return `#f' the structure object will be printed in
10057the boring #<struct 80458270> form.
5dade857
MV
10058
10059This hook is used by some routines in ice-9/boot-9.scm to implement
10060type specific printing routines. Please read the comments there about
10061"printing structs".
10062
10063One of the more specific uses of structs are records. The printing
10064procedure that could be passed to MAKE-RECORD-TYPE is now actually
10065called. It should behave like a *struct-printer* procedure (described
10066above).
10067
b83b8bee
JB
10068** Guile now supports a new R4RS-compliant syntax for keywords. A
10069token of the form #:NAME, where NAME has the same syntax as a Scheme
10070symbol, is the external representation of the keyword named NAME.
10071Keyword objects print using this syntax as well, so values containing
1e5afba0
JB
10072keyword objects can be read back into Guile. When used in an
10073expression, keywords are self-quoting objects.
b83b8bee
JB
10074
10075Guile suports this read syntax, and uses this print syntax, regardless
10076of the current setting of the `keyword' read option. The `keyword'
10077read option only controls whether Guile recognizes the `:NAME' syntax,
10078which is incompatible with R4RS. (R4RS says such token represent
10079symbols.)
737c9113
JB
10080
10081** Guile has regular expression support again. Guile 1.0 included
10082functions for matching regular expressions, based on the Rx library.
10083In Guile 1.1, the Guile/Rx interface was removed to simplify the
10084distribution, and thus Guile had no regular expression support. Guile
94982a4e
JB
100851.2 again supports the most commonly used functions, and supports all
10086of SCSH's regular expression functions.
2409cdfa 10087
94982a4e
JB
10088If your system does not include a POSIX regular expression library,
10089and you have not linked Guile with a third-party regexp library such as
10090Rx, these functions will not be available. You can tell whether your
10091Guile installation includes regular expression support by checking
10092whether the `*features*' list includes the `regex' symbol.
737c9113 10093
94982a4e 10094*** regexp functions
161029df 10095
94982a4e
JB
10096By default, Guile supports POSIX extended regular expressions. That
10097means that the characters `(', `)', `+' and `?' are special, and must
10098be escaped if you wish to match the literal characters.
e1a191a8 10099
94982a4e
JB
10100This regular expression interface was modeled after that implemented
10101by SCSH, the Scheme Shell. It is intended to be upwardly compatible
10102with SCSH regular expressions.
10103
10104**** Function: string-match PATTERN STR [START]
10105 Compile the string PATTERN into a regular expression and compare
10106 it with STR. The optional numeric argument START specifies the
10107 position of STR at which to begin matching.
10108
10109 `string-match' returns a "match structure" which describes what,
10110 if anything, was matched by the regular expression. *Note Match
10111 Structures::. If STR does not match PATTERN at all,
10112 `string-match' returns `#f'.
10113
10114 Each time `string-match' is called, it must compile its PATTERN
10115argument into a regular expression structure. This operation is
10116expensive, which makes `string-match' inefficient if the same regular
10117expression is used several times (for example, in a loop). For better
10118performance, you can compile a regular expression in advance and then
10119match strings against the compiled regexp.
10120
10121**** Function: make-regexp STR [FLAGS]
10122 Compile the regular expression described by STR, and return the
10123 compiled regexp structure. If STR does not describe a legal
10124 regular expression, `make-regexp' throws a
10125 `regular-expression-syntax' error.
10126
10127 FLAGS may be the bitwise-or of one or more of the following:
10128
10129**** Constant: regexp/extended
10130 Use POSIX Extended Regular Expression syntax when interpreting
10131 STR. If not set, POSIX Basic Regular Expression syntax is used.
10132 If the FLAGS argument is omitted, we assume regexp/extended.
10133
10134**** Constant: regexp/icase
10135 Do not differentiate case. Subsequent searches using the
10136 returned regular expression will be case insensitive.
10137
10138**** Constant: regexp/newline
10139 Match-any-character operators don't match a newline.
10140
10141 A non-matching list ([^...]) not containing a newline matches a
10142 newline.
10143
10144 Match-beginning-of-line operator (^) matches the empty string
10145 immediately after a newline, regardless of whether the FLAGS
10146 passed to regexp-exec contain regexp/notbol.
10147
10148 Match-end-of-line operator ($) matches the empty string
10149 immediately before a newline, regardless of whether the FLAGS
10150 passed to regexp-exec contain regexp/noteol.
10151
10152**** Function: regexp-exec REGEXP STR [START [FLAGS]]
10153 Match the compiled regular expression REGEXP against `str'. If
10154 the optional integer START argument is provided, begin matching
10155 from that position in the string. Return a match structure
10156 describing the results of the match, or `#f' if no match could be
10157 found.
10158
10159 FLAGS may be the bitwise-or of one or more of the following:
10160
10161**** Constant: regexp/notbol
10162 The match-beginning-of-line operator always fails to match (but
10163 see the compilation flag regexp/newline above) This flag may be
10164 used when different portions of a string are passed to
10165 regexp-exec and the beginning of the string should not be
10166 interpreted as the beginning of the line.
10167
10168**** Constant: regexp/noteol
10169 The match-end-of-line operator always fails to match (but see the
10170 compilation flag regexp/newline above)
10171
10172**** Function: regexp? OBJ
10173 Return `#t' if OBJ is a compiled regular expression, or `#f'
10174 otherwise.
10175
10176 Regular expressions are commonly used to find patterns in one string
10177and replace them with the contents of another string.
10178
10179**** Function: regexp-substitute PORT MATCH [ITEM...]
10180 Write to the output port PORT selected contents of the match
10181 structure MATCH. Each ITEM specifies what should be written, and
10182 may be one of the following arguments:
10183
10184 * A string. String arguments are written out verbatim.
10185
10186 * An integer. The submatch with that number is written.
10187
10188 * The symbol `pre'. The portion of the matched string preceding
10189 the regexp match is written.
10190
10191 * The symbol `post'. The portion of the matched string
10192 following the regexp match is written.
10193
10194 PORT may be `#f', in which case nothing is written; instead,
10195 `regexp-substitute' constructs a string from the specified ITEMs
10196 and returns that.
10197
10198**** Function: regexp-substitute/global PORT REGEXP TARGET [ITEM...]
10199 Similar to `regexp-substitute', but can be used to perform global
10200 substitutions on STR. Instead of taking a match structure as an
10201 argument, `regexp-substitute/global' takes two string arguments: a
10202 REGEXP string describing a regular expression, and a TARGET string
10203 which should be matched against this regular expression.
10204
10205 Each ITEM behaves as in REGEXP-SUBSTITUTE, with the following
10206 exceptions:
10207
10208 * A function may be supplied. When this function is called, it
10209 will be passed one argument: a match structure for a given
10210 regular expression match. It should return a string to be
10211 written out to PORT.
10212
10213 * The `post' symbol causes `regexp-substitute/global' to recurse
10214 on the unmatched portion of STR. This *must* be supplied in
10215 order to perform global search-and-replace on STR; if it is
10216 not present among the ITEMs, then `regexp-substitute/global'
10217 will return after processing a single match.
10218
10219*** Match Structures
10220
10221 A "match structure" is the object returned by `string-match' and
10222`regexp-exec'. It describes which portion of a string, if any, matched
10223the given regular expression. Match structures include: a reference to
10224the string that was checked for matches; the starting and ending
10225positions of the regexp match; and, if the regexp included any
10226parenthesized subexpressions, the starting and ending positions of each
10227submatch.
10228
10229 In each of the regexp match functions described below, the `match'
10230argument must be a match structure returned by a previous call to
10231`string-match' or `regexp-exec'. Most of these functions return some
10232information about the original target string that was matched against a
10233regular expression; we will call that string TARGET for easy reference.
10234
10235**** Function: regexp-match? OBJ
10236 Return `#t' if OBJ is a match structure returned by a previous
10237 call to `regexp-exec', or `#f' otherwise.
10238
10239**** Function: match:substring MATCH [N]
10240 Return the portion of TARGET matched by subexpression number N.
10241 Submatch 0 (the default) represents the entire regexp match. If
10242 the regular expression as a whole matched, but the subexpression
10243 number N did not match, return `#f'.
10244
10245**** Function: match:start MATCH [N]
10246 Return the starting position of submatch number N.
10247
10248**** Function: match:end MATCH [N]
10249 Return the ending position of submatch number N.
10250
10251**** Function: match:prefix MATCH
10252 Return the unmatched portion of TARGET preceding the regexp match.
10253
10254**** Function: match:suffix MATCH
10255 Return the unmatched portion of TARGET following the regexp match.
10256
10257**** Function: match:count MATCH
10258 Return the number of parenthesized subexpressions from MATCH.
10259 Note that the entire regular expression match itself counts as a
10260 subexpression, and failed submatches are included in the count.
10261
10262**** Function: match:string MATCH
10263 Return the original TARGET string.
10264
10265*** Backslash Escapes
10266
10267 Sometimes you will want a regexp to match characters like `*' or `$'
10268exactly. For example, to check whether a particular string represents
10269a menu entry from an Info node, it would be useful to match it against
10270a regexp like `^* [^:]*::'. However, this won't work; because the
10271asterisk is a metacharacter, it won't match the `*' at the beginning of
10272the string. In this case, we want to make the first asterisk un-magic.
10273
10274 You can do this by preceding the metacharacter with a backslash
10275character `\'. (This is also called "quoting" the metacharacter, and
10276is known as a "backslash escape".) When Guile sees a backslash in a
10277regular expression, it considers the following glyph to be an ordinary
10278character, no matter what special meaning it would ordinarily have.
10279Therefore, we can make the above example work by changing the regexp to
10280`^\* [^:]*::'. The `\*' sequence tells the regular expression engine
10281to match only a single asterisk in the target string.
10282
10283 Since the backslash is itself a metacharacter, you may force a
10284regexp to match a backslash in the target string by preceding the
10285backslash with itself. For example, to find variable references in a
10286TeX program, you might want to find occurrences of the string `\let\'
10287followed by any number of alphabetic characters. The regular expression
10288`\\let\\[A-Za-z]*' would do this: the double backslashes in the regexp
10289each match a single backslash in the target string.
10290
10291**** Function: regexp-quote STR
10292 Quote each special character found in STR with a backslash, and
10293 return the resulting string.
10294
10295 *Very important:* Using backslash escapes in Guile source code (as
10296in Emacs Lisp or C) can be tricky, because the backslash character has
10297special meaning for the Guile reader. For example, if Guile encounters
10298the character sequence `\n' in the middle of a string while processing
10299Scheme code, it replaces those characters with a newline character.
10300Similarly, the character sequence `\t' is replaced by a horizontal tab.
10301Several of these "escape sequences" are processed by the Guile reader
10302before your code is executed. Unrecognized escape sequences are
10303ignored: if the characters `\*' appear in a string, they will be
10304translated to the single character `*'.
10305
10306 This translation is obviously undesirable for regular expressions,
10307since we want to be able to include backslashes in a string in order to
10308escape regexp metacharacters. Therefore, to make sure that a backslash
10309is preserved in a string in your Guile program, you must use *two*
10310consecutive backslashes:
10311
10312 (define Info-menu-entry-pattern (make-regexp "^\\* [^:]*"))
10313
10314 The string in this example is preprocessed by the Guile reader before
10315any code is executed. The resulting argument to `make-regexp' is the
10316string `^\* [^:]*', which is what we really want.
10317
10318 This also means that in order to write a regular expression that
10319matches a single backslash character, the regular expression string in
10320the source code must include *four* backslashes. Each consecutive pair
10321of backslashes gets translated by the Guile reader to a single
10322backslash, and the resulting double-backslash is interpreted by the
10323regexp engine as matching a single backslash character. Hence:
10324
10325 (define tex-variable-pattern (make-regexp "\\\\let\\\\=[A-Za-z]*"))
10326
10327 The reason for the unwieldiness of this syntax is historical. Both
10328regular expression pattern matchers and Unix string processing systems
10329have traditionally used backslashes with the special meanings described
10330above. The POSIX regular expression specification and ANSI C standard
10331both require these semantics. Attempting to abandon either convention
10332would cause other kinds of compatibility problems, possibly more severe
10333ones. Therefore, without extending the Scheme reader to support
10334strings with different quoting conventions (an ungainly and confusing
10335extension when implemented in other languages), we must adhere to this
10336cumbersome escape syntax.
10337
7ad3c1e7
GH
10338* Changes to the gh_ interface
10339
10340* Changes to the scm_ interface
10341
10342* Changes to system call interfaces:
94982a4e 10343
7ad3c1e7 10344** The value returned by `raise' is now unspecified. It throws an exception
e1a191a8
GH
10345if an error occurs.
10346
94982a4e 10347*** A new procedure `sigaction' can be used to install signal handlers
115b09a5
GH
10348
10349(sigaction signum [action] [flags])
10350
10351signum is the signal number, which can be specified using the value
10352of SIGINT etc.
10353
10354If action is omitted, sigaction returns a pair: the CAR is the current
10355signal hander, which will be either an integer with the value SIG_DFL
10356(default action) or SIG_IGN (ignore), or the Scheme procedure which
10357handles the signal, or #f if a non-Scheme procedure handles the
10358signal. The CDR contains the current sigaction flags for the handler.
10359
10360If action is provided, it is installed as the new handler for signum.
10361action can be a Scheme procedure taking one argument, or the value of
10362SIG_DFL (default action) or SIG_IGN (ignore), or #f to restore
10363whatever signal handler was installed before sigaction was first used.
10364Flags can optionally be specified for the new handler (SA_RESTART is
10365always used if the system provides it, so need not be specified.) The
10366return value is a pair with information about the old handler as
10367described above.
10368
10369This interface does not provide access to the "signal blocking"
10370facility. Maybe this is not needed, since the thread support may
10371provide solutions to the problem of consistent access to data
10372structures.
e1a191a8 10373
94982a4e 10374*** A new procedure `flush-all-ports' is equivalent to running
89ea5b7c
GH
10375`force-output' on every port open for output.
10376
94982a4e
JB
10377** Guile now provides information on how it was built, via the new
10378global variable, %guile-build-info. This variable records the values
10379of the standard GNU makefile directory variables as an assocation
10380list, mapping variable names (symbols) onto directory paths (strings).
10381For example, to find out where the Guile link libraries were
10382installed, you can say:
10383
10384guile -c "(display (assq-ref %guile-build-info 'libdir)) (newline)"
10385
10386
10387* Changes to the scm_ interface
10388
10389** The new function scm_handle_by_message_noexit is just like the
10390existing scm_handle_by_message function, except that it doesn't call
10391exit to terminate the process. Instead, it prints a message and just
10392returns #f. This might be a more appropriate catch-all handler for
10393new dynamic roots and threads.
10394
cf78e9e8 10395\f
c484bf7f 10396Changes in Guile 1.1 (released Friday, May 16 1997):
f3b1485f
JB
10397
10398* Changes to the distribution.
10399
10400The Guile 1.0 distribution has been split up into several smaller
10401pieces:
10402guile-core --- the Guile interpreter itself.
10403guile-tcltk --- the interface between the Guile interpreter and
10404 Tcl/Tk; Tcl is an interpreter for a stringy language, and Tk
10405 is a toolkit for building graphical user interfaces.
10406guile-rgx-ctax --- the interface between Guile and the Rx regular
10407 expression matcher, and the translator for the Ctax
10408 programming language. These are packaged together because the
10409 Ctax translator uses Rx to parse Ctax source code.
10410
095936d2
JB
10411This NEWS file describes the changes made to guile-core since the 1.0
10412release.
10413
48d224d7
JB
10414We no longer distribute the documentation, since it was either out of
10415date, or incomplete. As soon as we have current documentation, we
10416will distribute it.
10417
0fcab5ed
JB
10418
10419
f3b1485f
JB
10420* Changes to the stand-alone interpreter
10421
48d224d7
JB
10422** guile now accepts command-line arguments compatible with SCSH, Olin
10423Shivers' Scheme Shell.
10424
10425In general, arguments are evaluated from left to right, but there are
10426exceptions. The following switches stop argument processing, and
10427stash all remaining command-line arguments as the value returned by
10428the (command-line) function.
10429 -s SCRIPT load Scheme source code from FILE, and exit
10430 -c EXPR evalute Scheme expression EXPR, and exit
10431 -- stop scanning arguments; run interactively
10432
10433The switches below are processed as they are encountered.
10434 -l FILE load Scheme source code from FILE
10435 -e FUNCTION after reading script, apply FUNCTION to
10436 command line arguments
10437 -ds do -s script at this point
10438 --emacs enable Emacs protocol (experimental)
10439 -h, --help display this help and exit
10440 -v, --version display version information and exit
10441 \ read arguments from following script lines
10442
10443So, for example, here is a Guile script named `ekko' (thanks, Olin)
10444which re-implements the traditional "echo" command:
10445
10446#!/usr/local/bin/guile -s
10447!#
10448(define (main args)
10449 (map (lambda (arg) (display arg) (display " "))
10450 (cdr args))
10451 (newline))
10452
10453(main (command-line))
10454
10455Suppose we invoke this script as follows:
10456
10457 ekko a speckled gecko
10458
10459Through the magic of Unix script processing (triggered by the `#!'
10460token at the top of the file), /usr/local/bin/guile receives the
10461following list of command-line arguments:
10462
10463 ("-s" "./ekko" "a" "speckled" "gecko")
10464
10465Unix inserts the name of the script after the argument specified on
10466the first line of the file (in this case, "-s"), and then follows that
10467with the arguments given to the script. Guile loads the script, which
10468defines the `main' function, and then applies it to the list of
10469remaining command-line arguments, ("a" "speckled" "gecko").
10470
095936d2
JB
10471In Unix, the first line of a script file must take the following form:
10472
10473#!INTERPRETER ARGUMENT
10474
10475where INTERPRETER is the absolute filename of the interpreter
10476executable, and ARGUMENT is a single command-line argument to pass to
10477the interpreter.
10478
10479You may only pass one argument to the interpreter, and its length is
10480limited. These restrictions can be annoying to work around, so Guile
10481provides a general mechanism (borrowed from, and compatible with,
10482SCSH) for circumventing them.
10483
10484If the ARGUMENT in a Guile script is a single backslash character,
10485`\', Guile will open the script file, parse arguments from its second
10486and subsequent lines, and replace the `\' with them. So, for example,
10487here is another implementation of the `ekko' script:
10488
10489#!/usr/local/bin/guile \
10490-e main -s
10491!#
10492(define (main args)
10493 (for-each (lambda (arg) (display arg) (display " "))
10494 (cdr args))
10495 (newline))
10496
10497If the user invokes this script as follows:
10498
10499 ekko a speckled gecko
10500
10501Unix expands this into
10502
10503 /usr/local/bin/guile \ ekko a speckled gecko
10504
10505When Guile sees the `\' argument, it replaces it with the arguments
10506read from the second line of the script, producing:
10507
10508 /usr/local/bin/guile -e main -s ekko a speckled gecko
10509
10510This tells Guile to load the `ekko' script, and apply the function
10511`main' to the argument list ("a" "speckled" "gecko").
10512
10513Here is how Guile parses the command-line arguments:
10514- Each space character terminates an argument. This means that two
10515 spaces in a row introduce an empty-string argument.
10516- The tab character is not permitted (unless you quote it with the
10517 backslash character, as described below), to avoid confusion.
10518- The newline character terminates the sequence of arguments, and will
10519 also terminate a final non-empty argument. (However, a newline
10520 following a space will not introduce a final empty-string argument;
10521 it only terminates the argument list.)
10522- The backslash character is the escape character. It escapes
10523 backslash, space, tab, and newline. The ANSI C escape sequences
10524 like \n and \t are also supported. These produce argument
10525 constituents; the two-character combination \n doesn't act like a
10526 terminating newline. The escape sequence \NNN for exactly three
10527 octal digits reads as the character whose ASCII code is NNN. As
10528 above, characters produced this way are argument constituents.
10529 Backslash followed by other characters is not allowed.
10530
48d224d7
JB
10531* Changes to the procedure for linking libguile with your programs
10532
10533** Guile now builds and installs a shared guile library, if your
10534system support shared libraries. (It still builds a static library on
10535all systems.) Guile automatically detects whether your system
10536supports shared libraries. To prevent Guile from buildisg shared
10537libraries, pass the `--disable-shared' flag to the configure script.
10538
10539Guile takes longer to compile when it builds shared libraries, because
10540it must compile every file twice --- once to produce position-
10541independent object code, and once to produce normal object code.
10542
10543** The libthreads library has been merged into libguile.
10544
10545To link a program against Guile, you now need only link against
10546-lguile and -lqt; -lthreads is no longer needed. If you are using
10547autoconf to generate configuration scripts for your application, the
10548following lines should suffice to add the appropriate libraries to
10549your link command:
10550
10551### Find quickthreads and libguile.
10552AC_CHECK_LIB(qt, main)
10553AC_CHECK_LIB(guile, scm_shell)
f3b1485f
JB
10554
10555* Changes to Scheme functions
10556
095936d2
JB
10557** Guile Scheme's special syntax for keyword objects is now optional,
10558and disabled by default.
10559
10560The syntax variation from R4RS made it difficult to port some
10561interesting packages to Guile. The routines which accepted keyword
10562arguments (mostly in the module system) have been modified to also
10563accept symbols whose names begin with `:'.
10564
10565To change the keyword syntax, you must first import the (ice-9 debug)
10566module:
10567 (use-modules (ice-9 debug))
10568
10569Then you can enable the keyword syntax as follows:
10570 (read-set! keywords 'prefix)
10571
10572To disable keyword syntax, do this:
10573 (read-set! keywords #f)
10574
10575** Many more primitive functions accept shared substrings as
10576arguments. In the past, these functions required normal, mutable
10577strings as arguments, although they never made use of this
10578restriction.
10579
10580** The uniform array functions now operate on byte vectors. These
10581functions are `array-fill!', `serial-array-copy!', `array-copy!',
10582`serial-array-map', `array-map', `array-for-each', and
10583`array-index-map!'.
10584
10585** The new functions `trace' and `untrace' implement simple debugging
10586support for Scheme functions.
10587
10588The `trace' function accepts any number of procedures as arguments,
10589and tells the Guile interpreter to display each procedure's name and
10590arguments each time the procedure is invoked. When invoked with no
10591arguments, `trace' returns the list of procedures currently being
10592traced.
10593
10594The `untrace' function accepts any number of procedures as arguments,
10595and tells the Guile interpreter not to trace them any more. When
10596invoked with no arguments, `untrace' untraces all curretly traced
10597procedures.
10598
10599The tracing in Guile has an advantage over most other systems: we
10600don't create new procedure objects, but mark the procedure objects
10601themselves. This means that anonymous and internal procedures can be
10602traced.
10603
10604** The function `assert-repl-prompt' has been renamed to
10605`set-repl-prompt!'. It takes one argument, PROMPT.
10606- If PROMPT is #f, the Guile read-eval-print loop will not prompt.
10607- If PROMPT is a string, we use it as a prompt.
10608- If PROMPT is a procedure accepting no arguments, we call it, and
10609 display the result as a prompt.
10610- Otherwise, we display "> ".
10611
10612** The new function `eval-string' reads Scheme expressions from a
10613string and evaluates them, returning the value of the last expression
10614in the string. If the string contains no expressions, it returns an
10615unspecified value.
10616
10617** The new function `thunk?' returns true iff its argument is a
10618procedure of zero arguments.
10619
10620** `defined?' is now a builtin function, instead of syntax. This
10621means that its argument should be quoted. It returns #t iff its
10622argument is bound in the current module.
10623
10624** The new syntax `use-modules' allows you to add new modules to your
10625environment without re-typing a complete `define-module' form. It
10626accepts any number of module names as arguments, and imports their
10627public bindings into the current module.
10628
10629** The new function (module-defined? NAME MODULE) returns true iff
10630NAME, a symbol, is defined in MODULE, a module object.
10631
10632** The new function `builtin-bindings' creates and returns a hash
10633table containing copies of all the root module's bindings.
10634
10635** The new function `builtin-weak-bindings' does the same as
10636`builtin-bindings', but creates a doubly-weak hash table.
10637
10638** The `equal?' function now considers variable objects to be
10639equivalent if they have the same name and the same value.
10640
10641** The new function `command-line' returns the command-line arguments
10642given to Guile, as a list of strings.
10643
10644When using guile as a script interpreter, `command-line' returns the
10645script's arguments; those processed by the interpreter (like `-s' or
10646`-c') are omitted. (In other words, you get the normal, expected
10647behavior.) Any application that uses scm_shell to process its
10648command-line arguments gets this behavior as well.
10649
10650** The new function `load-user-init' looks for a file called `.guile'
10651in the user's home directory, and loads it if it exists. This is
10652mostly for use by the code generated by scm_compile_shell_switches,
10653but we thought it might also be useful in other circumstances.
10654
10655** The new function `log10' returns the base-10 logarithm of its
10656argument.
10657
10658** Changes to I/O functions
10659
6c0201ad 10660*** The functions `read', `primitive-load', `read-and-eval!', and
095936d2
JB
10661`primitive-load-path' no longer take optional arguments controlling
10662case insensitivity and a `#' parser.
10663
10664Case sensitivity is now controlled by a read option called
10665`case-insensitive'. The user can add new `#' syntaxes with the
10666`read-hash-extend' function (see below).
10667
10668*** The new function `read-hash-extend' allows the user to change the
10669syntax of Guile Scheme in a somewhat controlled way.
10670
10671(read-hash-extend CHAR PROC)
10672 When parsing S-expressions, if we read a `#' character followed by
10673 the character CHAR, use PROC to parse an object from the stream.
10674 If PROC is #f, remove any parsing procedure registered for CHAR.
10675
10676 The reader applies PROC to two arguments: CHAR and an input port.
10677
6c0201ad 10678*** The new functions read-delimited and read-delimited! provide a
095936d2
JB
10679general mechanism for doing delimited input on streams.
10680
10681(read-delimited DELIMS [PORT HANDLE-DELIM])
10682 Read until we encounter one of the characters in DELIMS (a string),
10683 or end-of-file. PORT is the input port to read from; it defaults to
10684 the current input port. The HANDLE-DELIM parameter determines how
10685 the terminating character is handled; it should be one of the
10686 following symbols:
10687
10688 'trim omit delimiter from result
10689 'peek leave delimiter character in input stream
10690 'concat append delimiter character to returned value
10691 'split return a pair: (RESULT . TERMINATOR)
10692
10693 HANDLE-DELIM defaults to 'peek.
10694
10695(read-delimited! DELIMS BUF [PORT HANDLE-DELIM START END])
10696 A side-effecting variant of `read-delimited'.
10697
10698 The data is written into the string BUF at the indices in the
10699 half-open interval [START, END); the default interval is the whole
10700 string: START = 0 and END = (string-length BUF). The values of
10701 START and END must specify a well-defined interval in BUF, i.e.
10702 0 <= START <= END <= (string-length BUF).
10703
10704 It returns NBYTES, the number of bytes read. If the buffer filled
10705 up without a delimiter character being found, it returns #f. If the
10706 port is at EOF when the read starts, it returns the EOF object.
10707
10708 If an integer is returned (i.e., the read is successfully terminated
10709 by reading a delimiter character), then the HANDLE-DELIM parameter
10710 determines how to handle the terminating character. It is described
10711 above, and defaults to 'peek.
10712
10713(The descriptions of these functions were borrowed from the SCSH
10714manual, by Olin Shivers and Brian Carlstrom.)
10715
10716*** The `%read-delimited!' function is the primitive used to implement
10717`read-delimited' and `read-delimited!'.
10718
10719(%read-delimited! DELIMS BUF GOBBLE? [PORT START END])
10720
10721This returns a pair of values: (TERMINATOR . NUM-READ).
10722- TERMINATOR describes why the read was terminated. If it is a
10723 character or the eof object, then that is the value that terminated
10724 the read. If it is #f, the function filled the buffer without finding
10725 a delimiting character.
10726- NUM-READ is the number of characters read into BUF.
10727
10728If the read is successfully terminated by reading a delimiter
10729character, then the gobble? parameter determines what to do with the
10730terminating character. If true, the character is removed from the
10731input stream; if false, the character is left in the input stream
10732where a subsequent read operation will retrieve it. In either case,
10733the character is also the first value returned by the procedure call.
10734
10735(The descriptions of this function was borrowed from the SCSH manual,
10736by Olin Shivers and Brian Carlstrom.)
10737
10738*** The `read-line' and `read-line!' functions have changed; they now
10739trim the terminator by default; previously they appended it to the
10740returned string. For the old behavior, use (read-line PORT 'concat).
10741
10742*** The functions `uniform-array-read!' and `uniform-array-write!' now
10743take new optional START and END arguments, specifying the region of
10744the array to read and write.
10745
f348c807
JB
10746*** The `ungetc-char-ready?' function has been removed. We feel it's
10747inappropriate for an interface to expose implementation details this
10748way.
095936d2
JB
10749
10750** Changes to the Unix library and system call interface
10751
10752*** The new fcntl function provides access to the Unix `fcntl' system
10753call.
10754
10755(fcntl PORT COMMAND VALUE)
10756 Apply COMMAND to PORT's file descriptor, with VALUE as an argument.
10757 Values for COMMAND are:
10758
10759 F_DUPFD duplicate a file descriptor
10760 F_GETFD read the descriptor's close-on-exec flag
10761 F_SETFD set the descriptor's close-on-exec flag to VALUE
10762 F_GETFL read the descriptor's flags, as set on open
10763 F_SETFL set the descriptor's flags, as set on open to VALUE
10764 F_GETOWN return the process ID of a socket's owner, for SIGIO
10765 F_SETOWN set the process that owns a socket to VALUE, for SIGIO
10766 FD_CLOEXEC not sure what this is
10767
10768For details, see the documentation for the fcntl system call.
10769
10770*** The arguments to `select' have changed, for compatibility with
10771SCSH. The TIMEOUT parameter may now be non-integral, yielding the
10772expected behavior. The MILLISECONDS parameter has been changed to
10773MICROSECONDS, to more closely resemble the underlying system call.
10774The RVEC, WVEC, and EVEC arguments can now be vectors; the type of the
10775corresponding return set will be the same.
10776
10777*** The arguments to the `mknod' system call have changed. They are
10778now:
10779
10780(mknod PATH TYPE PERMS DEV)
10781 Create a new file (`node') in the file system. PATH is the name of
10782 the file to create. TYPE is the kind of file to create; it should
10783 be 'fifo, 'block-special, or 'char-special. PERMS specifies the
10784 permission bits to give the newly created file. If TYPE is
10785 'block-special or 'char-special, DEV specifies which device the
10786 special file refers to; its interpretation depends on the kind of
10787 special file being created.
10788
10789*** The `fork' function has been renamed to `primitive-fork', to avoid
10790clashing with various SCSH forks.
10791
10792*** The `recv' and `recvfrom' functions have been renamed to `recv!'
10793and `recvfrom!'. They no longer accept a size for a second argument;
10794you must pass a string to hold the received value. They no longer
10795return the buffer. Instead, `recv' returns the length of the message
10796received, and `recvfrom' returns a pair containing the packet's length
6c0201ad 10797and originating address.
095936d2
JB
10798
10799*** The file descriptor datatype has been removed, as have the
10800`read-fd', `write-fd', `close', `lseek', and `dup' functions.
10801We plan to replace these functions with a SCSH-compatible interface.
10802
10803*** The `create' function has been removed; it's just a special case
10804of `open'.
10805
10806*** There are new functions to break down process termination status
10807values. In the descriptions below, STATUS is a value returned by
10808`waitpid'.
10809
10810(status:exit-val STATUS)
10811 If the child process exited normally, this function returns the exit
10812 code for the child process (i.e., the value passed to exit, or
10813 returned from main). If the child process did not exit normally,
10814 this function returns #f.
10815
10816(status:stop-sig STATUS)
10817 If the child process was suspended by a signal, this function
10818 returns the signal that suspended the child. Otherwise, it returns
10819 #f.
10820
10821(status:term-sig STATUS)
10822 If the child process terminated abnormally, this function returns
10823 the signal that terminated the child. Otherwise, this function
10824 returns false.
10825
10826POSIX promises that exactly one of these functions will return true on
10827a valid STATUS value.
10828
10829These functions are compatible with SCSH.
10830
10831*** There are new accessors and setters for the broken-out time vectors
48d224d7
JB
10832returned by `localtime', `gmtime', and that ilk. They are:
10833
10834 Component Accessor Setter
10835 ========================= ============ ============
10836 seconds tm:sec set-tm:sec
10837 minutes tm:min set-tm:min
10838 hours tm:hour set-tm:hour
10839 day of the month tm:mday set-tm:mday
10840 month tm:mon set-tm:mon
10841 year tm:year set-tm:year
10842 day of the week tm:wday set-tm:wday
10843 day in the year tm:yday set-tm:yday
10844 daylight saving time tm:isdst set-tm:isdst
10845 GMT offset, seconds tm:gmtoff set-tm:gmtoff
10846 name of time zone tm:zone set-tm:zone
10847
095936d2
JB
10848*** There are new accessors for the vectors returned by `uname',
10849describing the host system:
48d224d7
JB
10850
10851 Component Accessor
10852 ============================================== ================
10853 name of the operating system implementation utsname:sysname
10854 network name of this machine utsname:nodename
10855 release level of the operating system utsname:release
10856 version level of the operating system utsname:version
10857 machine hardware platform utsname:machine
10858
095936d2
JB
10859*** There are new accessors for the vectors returned by `getpw',
10860`getpwnam', `getpwuid', and `getpwent', describing entries from the
10861system's user database:
10862
10863 Component Accessor
10864 ====================== =================
10865 user name passwd:name
10866 user password passwd:passwd
10867 user id passwd:uid
10868 group id passwd:gid
10869 real name passwd:gecos
10870 home directory passwd:dir
10871 shell program passwd:shell
10872
10873*** There are new accessors for the vectors returned by `getgr',
10874`getgrnam', `getgrgid', and `getgrent', describing entries from the
10875system's group database:
10876
10877 Component Accessor
10878 ======================= ============
10879 group name group:name
10880 group password group:passwd
10881 group id group:gid
10882 group members group:mem
10883
10884*** There are new accessors for the vectors returned by `gethost',
10885`gethostbyaddr', `gethostbyname', and `gethostent', describing
10886internet hosts:
10887
10888 Component Accessor
10889 ========================= ===============
10890 official name of host hostent:name
10891 alias list hostent:aliases
10892 host address type hostent:addrtype
10893 length of address hostent:length
10894 list of addresses hostent:addr-list
10895
10896*** There are new accessors for the vectors returned by `getnet',
10897`getnetbyaddr', `getnetbyname', and `getnetent', describing internet
10898networks:
10899
10900 Component Accessor
10901 ========================= ===============
10902 official name of net netent:name
10903 alias list netent:aliases
10904 net number type netent:addrtype
10905 net number netent:net
10906
10907*** There are new accessors for the vectors returned by `getproto',
10908`getprotobyname', `getprotobynumber', and `getprotoent', describing
10909internet protocols:
10910
10911 Component Accessor
10912 ========================= ===============
10913 official protocol name protoent:name
10914 alias list protoent:aliases
10915 protocol number protoent:proto
10916
10917*** There are new accessors for the vectors returned by `getserv',
10918`getservbyname', `getservbyport', and `getservent', describing
10919internet protocols:
10920
10921 Component Accessor
10922 ========================= ===============
6c0201ad 10923 official service name servent:name
095936d2 10924 alias list servent:aliases
6c0201ad
TTN
10925 port number servent:port
10926 protocol to use servent:proto
095936d2
JB
10927
10928*** There are new accessors for the sockaddr structures returned by
10929`accept', `getsockname', `getpeername', `recvfrom!':
10930
10931 Component Accessor
10932 ======================================== ===============
6c0201ad 10933 address format (`family') sockaddr:fam
095936d2
JB
10934 path, for file domain addresses sockaddr:path
10935 address, for internet domain addresses sockaddr:addr
10936 TCP or UDP port, for internet sockaddr:port
10937
10938*** The `getpwent', `getgrent', `gethostent', `getnetent',
10939`getprotoent', and `getservent' functions now return #f at the end of
10940the user database. (They used to throw an exception.)
10941
10942Note that calling MUMBLEent function is equivalent to calling the
10943corresponding MUMBLE function with no arguments.
10944
10945*** The `setpwent', `setgrent', `sethostent', `setnetent',
10946`setprotoent', and `setservent' routines now take no arguments.
10947
10948*** The `gethost', `getproto', `getnet', and `getserv' functions now
10949provide more useful information when they throw an exception.
10950
10951*** The `lnaof' function has been renamed to `inet-lnaof'.
10952
10953*** Guile now claims to have the `current-time' feature.
10954
10955*** The `mktime' function now takes an optional second argument ZONE,
10956giving the time zone to use for the conversion. ZONE should be a
10957string, in the same format as expected for the "TZ" environment variable.
10958
10959*** The `strptime' function now returns a pair (TIME . COUNT), where
10960TIME is the parsed time as a vector, and COUNT is the number of
10961characters from the string left unparsed. This function used to
10962return the remaining characters as a string.
10963
10964*** The `gettimeofday' function has replaced the old `time+ticks' function.
10965The return value is now (SECONDS . MICROSECONDS); the fractional
10966component is no longer expressed in "ticks".
10967
10968*** The `ticks/sec' constant has been removed, in light of the above change.
6685dc83 10969
ea00ecba
MG
10970* Changes to the gh_ interface
10971
10972** gh_eval_str() now returns an SCM object which is the result of the
10973evaluation
10974
aaef0d2a
MG
10975** gh_scm2str() now copies the Scheme data to a caller-provided C
10976array
10977
10978** gh_scm2newstr() now makes a C array, copies the Scheme data to it,
10979and returns the array
10980
10981** gh_scm2str0() is gone: there is no need to distinguish
10982null-terminated from non-null-terminated, since gh_scm2newstr() allows
10983the user to interpret the data both ways.
10984
f3b1485f
JB
10985* Changes to the scm_ interface
10986
095936d2
JB
10987** The new function scm_symbol_value0 provides an easy way to get a
10988symbol's value from C code:
10989
10990SCM scm_symbol_value0 (char *NAME)
10991 Return the value of the symbol named by the null-terminated string
10992 NAME in the current module. If the symbol named NAME is unbound in
10993 the current module, return SCM_UNDEFINED.
10994
10995** The new function scm_sysintern0 creates new top-level variables,
10996without assigning them a value.
10997
10998SCM scm_sysintern0 (char *NAME)
10999 Create a new Scheme top-level variable named NAME. NAME is a
11000 null-terminated string. Return the variable's value cell.
11001
11002** The function scm_internal_catch is the guts of catch. It handles
11003all the mechanics of setting up a catch target, invoking the catch
11004body, and perhaps invoking the handler if the body does a throw.
11005
11006The function is designed to be usable from C code, but is general
11007enough to implement all the semantics Guile Scheme expects from throw.
11008
11009TAG is the catch tag. Typically, this is a symbol, but this function
11010doesn't actually care about that.
11011
11012BODY is a pointer to a C function which runs the body of the catch;
11013this is the code you can throw from. We call it like this:
11014 BODY (BODY_DATA, JMPBUF)
11015where:
11016 BODY_DATA is just the BODY_DATA argument we received; we pass it
11017 through to BODY as its first argument. The caller can make
11018 BODY_DATA point to anything useful that BODY might need.
11019 JMPBUF is the Scheme jmpbuf object corresponding to this catch,
11020 which we have just created and initialized.
11021
11022HANDLER is a pointer to a C function to deal with a throw to TAG,
11023should one occur. We call it like this:
11024 HANDLER (HANDLER_DATA, THROWN_TAG, THROW_ARGS)
11025where
11026 HANDLER_DATA is the HANDLER_DATA argument we recevied; it's the
11027 same idea as BODY_DATA above.
11028 THROWN_TAG is the tag that the user threw to; usually this is
11029 TAG, but it could be something else if TAG was #t (i.e., a
11030 catch-all), or the user threw to a jmpbuf.
11031 THROW_ARGS is the list of arguments the user passed to the THROW
11032 function.
11033
11034BODY_DATA is just a pointer we pass through to BODY. HANDLER_DATA
11035is just a pointer we pass through to HANDLER. We don't actually
11036use either of those pointers otherwise ourselves. The idea is
11037that, if our caller wants to communicate something to BODY or
11038HANDLER, it can pass a pointer to it as MUMBLE_DATA, which BODY and
11039HANDLER can then use. Think of it as a way to make BODY and
11040HANDLER closures, not just functions; MUMBLE_DATA points to the
11041enclosed variables.
11042
11043Of course, it's up to the caller to make sure that any data a
11044MUMBLE_DATA needs is protected from GC. A common way to do this is
11045to make MUMBLE_DATA a pointer to data stored in an automatic
11046structure variable; since the collector must scan the stack for
11047references anyway, this assures that any references in MUMBLE_DATA
11048will be found.
11049
11050** The new function scm_internal_lazy_catch is exactly like
11051scm_internal_catch, except:
11052
11053- It does not unwind the stack (this is the major difference).
11054- If handler returns, its value is returned from the throw.
11055- BODY always receives #f as its JMPBUF argument (since there's no
11056 jmpbuf associated with a lazy catch, because we don't unwind the
11057 stack.)
11058
11059** scm_body_thunk is a new body function you can pass to
11060scm_internal_catch if you want the body to be like Scheme's `catch'
11061--- a thunk, or a function of one argument if the tag is #f.
11062
11063BODY_DATA is a pointer to a scm_body_thunk_data structure, which
11064contains the Scheme procedure to invoke as the body, and the tag
11065we're catching. If the tag is #f, then we pass JMPBUF (created by
11066scm_internal_catch) to the body procedure; otherwise, the body gets
11067no arguments.
11068
11069** scm_handle_by_proc is a new handler function you can pass to
11070scm_internal_catch if you want the handler to act like Scheme's catch
11071--- call a procedure with the tag and the throw arguments.
11072
11073If the user does a throw to this catch, this function runs a handler
11074procedure written in Scheme. HANDLER_DATA is a pointer to an SCM
11075variable holding the Scheme procedure object to invoke. It ought to
11076be a pointer to an automatic variable (i.e., one living on the stack),
11077or the procedure object should be otherwise protected from GC.
11078
11079** scm_handle_by_message is a new handler function to use with
11080`scm_internal_catch' if you want Guile to print a message and die.
11081It's useful for dealing with throws to uncaught keys at the top level.
11082
11083HANDLER_DATA, if non-zero, is assumed to be a char * pointing to a
11084message header to print; if zero, we use "guile" instead. That
11085text is followed by a colon, then the message described by ARGS.
11086
11087** The return type of scm_boot_guile is now void; the function does
11088not return a value, and indeed, never returns at all.
11089
f3b1485f
JB
11090** The new function scm_shell makes it easy for user applications to
11091process command-line arguments in a way that is compatible with the
11092stand-alone guile interpreter (which is in turn compatible with SCSH,
11093the Scheme shell).
11094
11095To use the scm_shell function, first initialize any guile modules
11096linked into your application, and then call scm_shell with the values
7ed46dc8 11097of ARGC and ARGV your `main' function received. scm_shell will add
f3b1485f
JB
11098any SCSH-style meta-arguments from the top of the script file to the
11099argument vector, and then process the command-line arguments. This
11100generally means loading a script file or starting up an interactive
11101command interpreter. For details, see "Changes to the stand-alone
11102interpreter" above.
11103
095936d2 11104** The new functions scm_get_meta_args and scm_count_argv help you
6c0201ad 11105implement the SCSH-style meta-argument, `\'.
095936d2
JB
11106
11107char **scm_get_meta_args (int ARGC, char **ARGV)
11108 If the second element of ARGV is a string consisting of a single
11109 backslash character (i.e. "\\" in Scheme notation), open the file
11110 named by the following argument, parse arguments from it, and return
11111 the spliced command line. The returned array is terminated by a
11112 null pointer.
6c0201ad 11113
095936d2
JB
11114 For details of argument parsing, see above, under "guile now accepts
11115 command-line arguments compatible with SCSH..."
11116
11117int scm_count_argv (char **ARGV)
11118 Count the arguments in ARGV, assuming it is terminated by a null
11119 pointer.
11120
11121For an example of how these functions might be used, see the source
11122code for the function scm_shell in libguile/script.c.
11123
11124You will usually want to use scm_shell instead of calling this
11125function yourself.
11126
11127** The new function scm_compile_shell_switches turns an array of
11128command-line arguments into Scheme code to carry out the actions they
11129describe. Given ARGC and ARGV, it returns a Scheme expression to
11130evaluate, and calls scm_set_program_arguments to make any remaining
11131command-line arguments available to the Scheme code. For example,
11132given the following arguments:
11133
11134 -e main -s ekko a speckled gecko
11135
11136scm_set_program_arguments will return the following expression:
11137
11138 (begin (load "ekko") (main (command-line)) (quit))
11139
11140You will usually want to use scm_shell instead of calling this
11141function yourself.
11142
11143** The function scm_shell_usage prints a usage message appropriate for
11144an interpreter that uses scm_compile_shell_switches to handle its
11145command-line arguments.
11146
11147void scm_shell_usage (int FATAL, char *MESSAGE)
11148 Print a usage message to the standard error output. If MESSAGE is
11149 non-zero, write it before the usage message, followed by a newline.
11150 If FATAL is non-zero, exit the process, using FATAL as the
11151 termination status. (If you want to be compatible with Guile,
11152 always use 1 as the exit status when terminating due to command-line
11153 usage problems.)
11154
11155You will usually want to use scm_shell instead of calling this
11156function yourself.
48d224d7
JB
11157
11158** scm_eval_0str now returns SCM_UNSPECIFIED if the string contains no
095936d2
JB
11159expressions. It used to return SCM_EOL. Earth-shattering.
11160
11161** The macros for declaring scheme objects in C code have been
11162rearranged slightly. They are now:
11163
11164SCM_SYMBOL (C_NAME, SCHEME_NAME)
11165 Declare a static SCM variable named C_NAME, and initialize it to
11166 point to the Scheme symbol whose name is SCHEME_NAME. C_NAME should
11167 be a C identifier, and SCHEME_NAME should be a C string.
11168
11169SCM_GLOBAL_SYMBOL (C_NAME, SCHEME_NAME)
11170 Just like SCM_SYMBOL, but make C_NAME globally visible.
11171
11172SCM_VCELL (C_NAME, SCHEME_NAME)
11173 Create a global variable at the Scheme level named SCHEME_NAME.
11174 Declare a static SCM variable named C_NAME, and initialize it to
11175 point to the Scheme variable's value cell.
11176
11177SCM_GLOBAL_VCELL (C_NAME, SCHEME_NAME)
11178 Just like SCM_VCELL, but make C_NAME globally visible.
11179
11180The `guile-snarf' script writes initialization code for these macros
11181to its standard output, given C source code as input.
11182
11183The SCM_GLOBAL macro is gone.
11184
11185** The scm_read_line and scm_read_line_x functions have been replaced
11186by Scheme code based on the %read-delimited! procedure (known to C
11187code as scm_read_delimited_x). See its description above for more
11188information.
48d224d7 11189
095936d2
JB
11190** The function scm_sys_open has been renamed to scm_open. It now
11191returns a port instead of an FD object.
ea00ecba 11192
095936d2
JB
11193* The dynamic linking support has changed. For more information, see
11194libguile/DYNAMIC-LINKING.
ea00ecba 11195
f7b47737
JB
11196\f
11197Guile 1.0b3
3065a62a 11198
f3b1485f
JB
11199User-visible changes from Thursday, September 5, 1996 until Guile 1.0
11200(Sun 5 Jan 1997):
3065a62a 11201
4b521edb 11202* Changes to the 'guile' program:
3065a62a 11203
4b521edb
JB
11204** Guile now loads some new files when it starts up. Guile first
11205searches the load path for init.scm, and loads it if found. Then, if
11206Guile is not being used to execute a script, and the user's home
11207directory contains a file named `.guile', Guile loads that.
c6486f8a 11208
4b521edb 11209** You can now use Guile as a shell script interpreter.
3065a62a
JB
11210
11211To paraphrase the SCSH manual:
11212
11213 When Unix tries to execute an executable file whose first two
11214 characters are the `#!', it treats the file not as machine code to
11215 be directly executed by the native processor, but as source code
11216 to be executed by some interpreter. The interpreter to use is
11217 specified immediately after the #! sequence on the first line of
11218 the source file. The kernel reads in the name of the interpreter,
11219 and executes that instead. It passes the interpreter the source
11220 filename as its first argument, with the original arguments
11221 following. Consult the Unix man page for the `exec' system call
11222 for more information.
11223
1a1945be
JB
11224Now you can use Guile as an interpreter, using a mechanism which is a
11225compatible subset of that provided by SCSH.
11226
3065a62a
JB
11227Guile now recognizes a '-s' command line switch, whose argument is the
11228name of a file of Scheme code to load. It also treats the two
11229characters `#!' as the start of a comment, terminated by `!#'. Thus,
11230to make a file of Scheme code directly executable by Unix, insert the
11231following two lines at the top of the file:
11232
11233#!/usr/local/bin/guile -s
11234!#
11235
11236Guile treats the argument of the `-s' command-line switch as the name
11237of a file of Scheme code to load, and treats the sequence `#!' as the
11238start of a block comment, terminated by `!#'.
11239
11240For example, here's a version of 'echo' written in Scheme:
11241
11242#!/usr/local/bin/guile -s
11243!#
11244(let loop ((args (cdr (program-arguments))))
11245 (if (pair? args)
11246 (begin
11247 (display (car args))
11248 (if (pair? (cdr args))
11249 (display " "))
11250 (loop (cdr args)))))
11251(newline)
11252
11253Why does `#!' start a block comment terminated by `!#', instead of the
11254end of the line? That is the notation SCSH uses, and although we
11255don't yet support the other SCSH features that motivate that choice,
11256we would like to be backward-compatible with any existing Guile
3763761c
JB
11257scripts once we do. Furthermore, if the path to Guile on your system
11258is too long for your kernel, you can start the script with this
11259horrible hack:
11260
11261#!/bin/sh
11262exec /really/long/path/to/guile -s "$0" ${1+"$@"}
11263!#
3065a62a
JB
11264
11265Note that some very old Unix systems don't support the `#!' syntax.
11266
c6486f8a 11267
4b521edb 11268** You can now run Guile without installing it.
6685dc83
JB
11269
11270Previous versions of the interactive Guile interpreter (`guile')
11271couldn't start up unless Guile's Scheme library had been installed;
11272they used the value of the environment variable `SCHEME_LOAD_PATH'
11273later on in the startup process, but not to find the startup code
11274itself. Now Guile uses `SCHEME_LOAD_PATH' in all searches for Scheme
11275code.
11276
11277To run Guile without installing it, build it in the normal way, and
11278then set the environment variable `SCHEME_LOAD_PATH' to a
11279colon-separated list of directories, including the top-level directory
11280of the Guile sources. For example, if you unpacked Guile so that the
11281full filename of this NEWS file is /home/jimb/guile-1.0b3/NEWS, then
11282you might say
11283
11284 export SCHEME_LOAD_PATH=/home/jimb/my-scheme:/home/jimb/guile-1.0b3
11285
c6486f8a 11286
4b521edb
JB
11287** Guile's read-eval-print loop no longer prints #<unspecified>
11288results. If the user wants to see this, she can evaluate the
11289expression (assert-repl-print-unspecified #t), perhaps in her startup
48d224d7 11290file.
6685dc83 11291
4b521edb
JB
11292** Guile no longer shows backtraces by default when an error occurs;
11293however, it does display a message saying how to get one, and how to
11294request that they be displayed by default. After an error, evaluate
11295 (backtrace)
11296to see a backtrace, and
11297 (debug-enable 'backtrace)
11298to see them by default.
6685dc83 11299
6685dc83 11300
d9fb83d9 11301
4b521edb
JB
11302* Changes to Guile Scheme:
11303
11304** Guile now distinguishes between #f and the empty list.
11305
11306This is for compatibility with the IEEE standard, the (possibly)
11307upcoming Revised^5 Report on Scheme, and many extant Scheme
11308implementations.
11309
11310Guile used to have #f and '() denote the same object, to make Scheme's
11311type system more compatible with Emacs Lisp's. However, the change
11312caused too much trouble for Scheme programmers, and we found another
11313way to reconcile Emacs Lisp with Scheme that didn't require this.
11314
11315
11316** Guile's delq, delv, delete functions, and their destructive
c6486f8a
JB
11317counterparts, delq!, delv!, and delete!, now remove all matching
11318elements from the list, not just the first. This matches the behavior
11319of the corresponding Emacs Lisp functions, and (I believe) the Maclisp
11320functions which inspired them.
11321
11322I recognize that this change may break code in subtle ways, but it
11323seems best to make the change before the FSF's first Guile release,
11324rather than after.
11325
11326
4b521edb 11327** The compiled-library-path function has been deleted from libguile.
6685dc83 11328
4b521edb 11329** The facilities for loading Scheme source files have changed.
c6486f8a 11330
4b521edb 11331*** The variable %load-path now tells Guile which directories to search
6685dc83
JB
11332for Scheme code. Its value is a list of strings, each of which names
11333a directory.
11334
4b521edb
JB
11335*** The variable %load-extensions now tells Guile which extensions to
11336try appending to a filename when searching the load path. Its value
11337is a list of strings. Its default value is ("" ".scm").
11338
11339*** (%search-load-path FILENAME) searches the directories listed in the
11340value of the %load-path variable for a Scheme file named FILENAME,
11341with all the extensions listed in %load-extensions. If it finds a
11342match, then it returns its full filename. If FILENAME is absolute, it
11343returns it unchanged. Otherwise, it returns #f.
6685dc83 11344
4b521edb
JB
11345%search-load-path will not return matches that refer to directories.
11346
11347*** (primitive-load FILENAME :optional CASE-INSENSITIVE-P SHARP)
11348uses %seach-load-path to find a file named FILENAME, and loads it if
11349it finds it. If it can't read FILENAME for any reason, it throws an
11350error.
6685dc83
JB
11351
11352The arguments CASE-INSENSITIVE-P and SHARP are interpreted as by the
4b521edb
JB
11353`read' function.
11354
11355*** load uses the same searching semantics as primitive-load.
11356
11357*** The functions %try-load, try-load-with-path, %load, load-with-path,
11358basic-try-load-with-path, basic-load-with-path, try-load-module-with-
11359path, and load-module-with-path have been deleted. The functions
11360above should serve their purposes.
11361
11362*** If the value of the variable %load-hook is a procedure,
11363`primitive-load' applies its value to the name of the file being
11364loaded (without the load path directory name prepended). If its value
11365is #f, it is ignored. Otherwise, an error occurs.
11366
11367This is mostly useful for printing load notification messages.
11368
11369
11370** The function `eval!' is no longer accessible from the scheme level.
11371We can't allow operations which introduce glocs into the scheme level,
11372because Guile's type system can't handle these as data. Use `eval' or
11373`read-and-eval!' (see below) as replacement.
11374
11375** The new function read-and-eval! reads an expression from PORT,
11376evaluates it, and returns the result. This is more efficient than
11377simply calling `read' and `eval', since it is not necessary to make a
11378copy of the expression for the evaluator to munge.
11379
11380Its optional arguments CASE_INSENSITIVE_P and SHARP are interpreted as
11381for the `read' function.
11382
11383
11384** The function `int?' has been removed; its definition was identical
11385to that of `integer?'.
11386
11387** The functions `<?', `<?', `<=?', `=?', `>?', and `>=?'. Code should
11388use the R4RS names for these functions.
11389
11390** The function object-properties no longer returns the hash handle;
11391it simply returns the object's property list.
11392
11393** Many functions have been changed to throw errors, instead of
11394returning #f on failure. The point of providing exception handling in
11395the language is to simplify the logic of user code, but this is less
11396useful if Guile's primitives don't throw exceptions.
11397
11398** The function `fileno' has been renamed from `%fileno'.
11399
11400** The function primitive-mode->fdes returns #t or #f now, not 1 or 0.
11401
11402
11403* Changes to Guile's C interface:
11404
11405** The library's initialization procedure has been simplified.
11406scm_boot_guile now has the prototype:
11407
11408void scm_boot_guile (int ARGC,
11409 char **ARGV,
11410 void (*main_func) (),
11411 void *closure);
11412
11413scm_boot_guile calls MAIN_FUNC, passing it CLOSURE, ARGC, and ARGV.
11414MAIN_FUNC should do all the work of the program (initializing other
11415packages, reading user input, etc.) before returning. When MAIN_FUNC
11416returns, call exit (0); this function never returns. If you want some
11417other exit value, MAIN_FUNC may call exit itself.
11418
11419scm_boot_guile arranges for program-arguments to return the strings
11420given by ARGC and ARGV. If MAIN_FUNC modifies ARGC/ARGV, should call
11421scm_set_program_arguments with the final list, so Scheme code will
11422know which arguments have been processed.
11423
11424scm_boot_guile establishes a catch-all catch handler which prints an
11425error message and exits the process. This means that Guile exits in a
11426coherent way when system errors occur and the user isn't prepared to
11427handle it. If the user doesn't like this behavior, they can establish
11428their own universal catcher in MAIN_FUNC to shadow this one.
11429
11430Why must the caller do all the real work from MAIN_FUNC? The garbage
11431collector assumes that all local variables of type SCM will be above
11432scm_boot_guile's stack frame on the stack. If you try to manipulate
11433SCM values after this function returns, it's the luck of the draw
11434whether the GC will be able to find the objects you allocate. So,
11435scm_boot_guile function exits, rather than returning, to discourage
11436people from making that mistake.
11437
11438The IN, OUT, and ERR arguments were removed; there are other
11439convenient ways to override these when desired.
11440
11441The RESULT argument was deleted; this function should never return.
11442
11443The BOOT_CMD argument was deleted; the MAIN_FUNC argument is more
11444general.
11445
11446
11447** Guile's header files should no longer conflict with your system's
11448header files.
11449
11450In order to compile code which #included <libguile.h>, previous
11451versions of Guile required you to add a directory containing all the
11452Guile header files to your #include path. This was a problem, since
11453Guile's header files have names which conflict with many systems'
11454header files.
11455
11456Now only <libguile.h> need appear in your #include path; you must
11457refer to all Guile's other header files as <libguile/mumble.h>.
11458Guile's installation procedure puts libguile.h in $(includedir), and
11459the rest in $(includedir)/libguile.
11460
11461
11462** Two new C functions, scm_protect_object and scm_unprotect_object,
11463have been added to the Guile library.
11464
11465scm_protect_object (OBJ) protects OBJ from the garbage collector.
11466OBJ will not be freed, even if all other references are dropped,
11467until someone does scm_unprotect_object (OBJ). Both functions
11468return OBJ.
11469
11470Note that calls to scm_protect_object do not nest. You can call
11471scm_protect_object any number of times on a given object, and the
11472next call to scm_unprotect_object will unprotect it completely.
11473
11474Basically, scm_protect_object and scm_unprotect_object just
11475maintain a list of references to things. Since the GC knows about
11476this list, all objects it mentions stay alive. scm_protect_object
11477adds its argument to the list; scm_unprotect_object remove its
11478argument from the list.
11479
11480
11481** scm_eval_0str now returns the value of the last expression
11482evaluated.
11483
11484** The new function scm_read_0str reads an s-expression from a
11485null-terminated string, and returns it.
11486
11487** The new function `scm_stdio_to_port' converts a STDIO file pointer
11488to a Scheme port object.
11489
11490** The new function `scm_set_program_arguments' allows C code to set
e80c8fea 11491the value returned by the Scheme `program-arguments' function.
6685dc83 11492
6685dc83 11493\f
1a1945be
JB
11494Older changes:
11495
11496* Guile no longer includes sophisticated Tcl/Tk support.
11497
11498The old Tcl/Tk support was unsatisfying to us, because it required the
11499user to link against the Tcl library, as well as Tk and Guile. The
11500interface was also un-lispy, in that it preserved Tcl/Tk's practice of
11501referring to widgets by names, rather than exporting widgets to Scheme
11502code as a special datatype.
11503
11504In the Usenix Tk Developer's Workshop held in July 1996, the Tcl/Tk
11505maintainers described some very interesting changes in progress to the
11506Tcl/Tk internals, which would facilitate clean interfaces between lone
11507Tk and other interpreters --- even for garbage-collected languages
11508like Scheme. They expected the new Tk to be publicly available in the
11509fall of 1996.
11510
11511Since it seems that Guile might soon have a new, cleaner interface to
11512lone Tk, and that the old Guile/Tk glue code would probably need to be
11513completely rewritten, we (Jim Blandy and Richard Stallman) have
11514decided not to support the old code. We'll spend the time instead on
11515a good interface to the newer Tk, as soon as it is available.
5c54da76 11516
8512dea6 11517Until then, gtcltk-lib provides trivial, low-maintenance functionality.
deb95d71 11518
5c54da76
JB
11519\f
11520Copyright information:
11521
4f416616 11522Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2006 Free Software Foundation, Inc.
5c54da76
JB
11523
11524 Permission is granted to anyone to make or distribute verbatim copies
11525 of this document as received, in any medium, provided that the
11526 copyright notice and this permission notice are preserved,
11527 thus giving the recipient permission to redistribute in turn.
11528
11529 Permission is granted to distribute modified versions
11530 of this document, or of portions of it,
11531 under the above conditions, provided also that they
11532 carry prominent notices stating who last changed them.
11533
48d224d7
JB
11534\f
11535Local variables:
11536mode: outline
11537paragraph-separate: "[ \f]*$"
11538end: