Add implementation of SRFI 27
[bpt/guile.git] / NEWS
CommitLineData
b2cbe8d8 1Guile NEWS --- history of user-visible changes.
4a457691 2Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 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
4f969117
AW
8Note: During the 1.9 series, we will keep an incremental NEWS for the
9latest prerelease, and a full NEWS corresponding to 1.8 -> 2.0.
ef283979 10
46088b26 11
77b13912
AR
12Changes in 1.9.12 (since the 1.9.11 prerelease):
13
56ec46a7
AR
14** Support for SRFI-27
15
16SRFI-27 "Sources of Random Bits" is now available.
17
66ad445d
AW
18** Many R6RS bugfixes
19
20`(rnrs bytevectors)' and `(rnrs io ports)' now have version information,
21like the rest of the modules. The `(rnrs unicode)' module is now
22re-exported by `(rnrs)'. Top-level `import' forms may have more than one
23clause. Warnings about duplicate bindings have been fixed, along with
24some typos in the modules. There were a number of other bugfixes as well.
25
26For the current list of known R6RS incompatibilities, see "R6RS
27Incompatibilities" in the manual.
28
29** Documentation for standard R6RS libraries
30
31See "R6RS Standard Libraries" in the manual, for more details.
32
33** Support for `letrec*'
34
46088b26
AW
35Guile now supports `letrec*', a recursive lexical binding operator in
36which the identifiers are bound in order. See "Local Bindings" in the
37manual, for more details.
66ad445d
AW
38
39** Internal definitions now expand to `letrec*'
40
41Following the R6RS, internal definitions now expand to letrec* instead
42of letrec. The following program is invalid for R5RS, but valid for
43R6RS:
44
45 (define (foo)
46 (define bar 10)
47 (define baz (+ bar 20))
48 baz)
49
50 ;; R5RS and Guile <= 1.8:
51 (foo) => Unbound variable: bar
52 ;; R6RS and Guile >= 2.0:
53 (foo) => 30
54
55This change should not affect correct R5RS programs, or programs written
56in earlier Guile dialects.
57
58** Recursive debugging REPL on error
59
60When Guile sees an error, instead of dropping into a special debugging
61prompt, it will enter a recursive REPL in the dynamic context of the
62error. See "Error Handling" in the manual, for more information.
63
64A recursive REPL is the same as any other REPL, except that it
65has been augmented with debugging information, so that one can inspect
66the context of the error. The debugger has been integrated with the REPL
67via a set of debugging meta-commands.
68
69For example, one may access a backtrace with `,backtrace' (or
70`,bt'). See "Interactive Debugging" in the manual, for more
71information.
72
1d3aa2ba
LC
73** New `error-message' meta-command at the REPL
74
75The new `error-message' meta-command displays the message associated
76with the error that started the current debugging REPL. See "Debug
77Commands" in the manual.
78
66ad445d
AW
79** Readline tab completion for arguments
80
81When readline is enabled, tab completion works for arguments too, not
82just for the operator position.
83
84** Various REPL robustness fixes
85
86The REPL no longer enters the debugger when an error occurs at read-time
87and compile-time, or when executing meta-commands. Additionally, the
88REPL is more strict about the ports that it uses, saving the current
89input and output ports at startup and using those ports when entering
90recursive prompts. This allows debugging of an error within
91e.g. `call-with-input-port'.
92
93Finally, Ctrl-d can now be used to exit a recursive REPL, dropping the
94user back to the parent REPL.
95
96** Better procedure name and source location propagation
97
98There was a bug in 1.9.11 which would leave most procedures un-named;
99this and other previous deficiencies have been fixed.
100
101** New macro: `current-source-location'
102
1d3aa2ba 103The macro returns the current source location (to be documented).
66ad445d 104
1d3aa2ba 105** `module-filename' field and accessor
66ad445d
AW
106
107Modules now record the file in which they are defined. This field may be
108accessed with the new `module-filename' procedure.
109
1d3aa2ba 110** Deprecate the old `scm-style-repl'
66ad445d
AW
111
112The following bindings from boot-9 are now found in `(ice-9
113scm-style-repl)': `scm-style-repl', `error-catching-loop',
114`error-catching-repl', `bad-throw', `scm-repl-silent'
115`assert-repl-silence', `repl-print-unspecified',
116`assert-repl-print-unspecified', `scm-repl-verbose',
117`assert-repl-verbosity', `scm-repl-prompt', `set-repl-prompt!', `repl',
118`default-pre-unwind-handler', `handle-system-error',
119
120The following bindings have been deprecated, with no replacement:
121`pre-unwind-handler-dispatch'.
122
123The following bindings have been totally removed:
124`before-signal-stack'.
125
126Deprecated forwarding shims have been installed so that users that
127expect these bindings in the main namespace will still work, but receive
128a deprecation warning.
129
1d3aa2ba
LC
130** Passing a number as the destination of `format' is deprecated
131
132The `format' procedure in `(ice-9 format)' now emits a deprecation
133warning if a number is passed as its first argument.
134
66ad445d
AW
135** Miscellaneous other deprecations
136
137`apply-to-args', `has-suffix?', `scheme-file-suffix'
138`get-option', `for-next-option', `display-usage-report',
139`transform-usage-lambda', `collect', `set-batch-mode?!'
140
141** All core defmacros reimplemented hygienically
142
143All macros present in the default environment are now implemented with
144syntax-case. This should not have practical ramifications, beyond those
145listed below in "Lexical bindings introduced by hygienic macros may not
146be referenced by nonhygienic macros".
147
18e90860 148** Random generator state may be serialized to a datum
77b13912 149
18e90860 150`random-state->datum' will serialize a random state to a datum, which
66ad445d
AW
151may be written out, read back in later, and revivified using
152`datum->random-state'. See "Random" in the manual, for more details.
153
154** New primitive: `tmpfile'.
155
156See "File System" in the manual.
157
158** Modules load within a known environment
159
160It takes a few procedure calls to define a module, and those procedure
161calls need to be in scope. Now we ensure that the current module when
162loading a module is one that has the needed bindings, instead of relying
163on chance.
164
165** Remove encoding of versions into the file system
166
167It used to be that, when loading a module, if the user specified a
93003b16 168version, Guile would grovel about in the file system to find the
66ad445d
AW
169module. This process was slow and not robust. This support has been
170removed: modules are once more always loaded via `primitive-load-path'.
171
93003b16 172Module versions in the file system may be added again in the future, in
66ad445d
AW
173an extensible way. Contact bug-guile@gnu.org with patches.
174
175** Alex Shinn's pattern matcher for (ice-9 match).
176
177Guile's copy of Andrew K. Wright's `match' library has been replaced by
1d3aa2ba
LC
178a compatible hygienic implementation by Alex Shinn. It is now
179documented, see "Pattern Matching" in the manual.
66ad445d
AW
180
181Compared to Andrew K. Wright's `match', the new `match' lacks
182`match-define', `match:error-control', `match:set-error-control',
183`match:error', `match:set-error', and all structure-related procedures.
184
185** Better debugging for psyntax
186
187We now build psyntax-pp.go directly from psyntax.scm, which allows us to
188preserve the original source locations and variable names. Git users
1d3aa2ba 189will also be pleased to note that psyntax-pp.scm is no longer
66ad445d
AW
190automatically regenerated from a normal `make' invocation.
191
192** AM_SILENT_RULES
193
194Guile's build is visually quieter, due to the use of Automake 1.11's
195AM_SILENT_RULES. Build as `make V=1' to see all of the output.
196
197** Better REPL options interface
198
199The set of REPL options is now fixed and typechecked -- you can't
200mistakenly set an option that doesn't exist, or set an value with an
201incorrect type. The following options have been added: `prompt',
202`compile-options', and `value-history'.
203
204The new `repl-default-option-set!' procedure from `(system repl common)'
205can set default options for future REPLs. `repl-default-prompt-set!' is
206a convenience procedure to set default prompts.
207
208** `*unspecified*' is identifier syntax
209
210`*unspecified*' is no longer a variable, so it is optimized properly by
211the compiler, and is not `set!'-able.
212
213** `set-batch-mode?!' replaced by `ensure-batch-mode!'
214
215"Batch mode" is a flag used to tell a program that it is not running
216interactively. One usually turns it on after a fork. It may not be
217turned off. `ensure-batch-mode!' deprecates the old `set-batch-mode?!',
218because it is a better interface, as it can only turn on batch mode, not
219turn it off.
220
66ad445d
AW
221** Support for settable identifier syntax
222
223Following the R6RS, "variable transformers" are settable
224identifier-syntax. See "Identifier macros" in the manual, for more
225information.
226
227** Deprecate `save-stack', `the-last-stack'
228
229It used to be that the way to debug programs in Guile was to capture the
230stack at the time of error, drop back to the REPL, then debug that
231stack. But this approach didn't compose, was tricky to get right in the
232presence of threads, and was not very powerful.
233
234So `save-stack', `stack-saved?', and `the-last-stack' have been moved to
235`(ice-9 save-stack)', with deprecated bindings left in the root module.
236
237** Compilation warnings at the REPL
238
239By default, Guile now prints compile-time warnings for code entered at
240the REPL. Current warnings are for unbound variables and mismatched
241arities.
242
243** syntax-case treats `_' as a placeholder
244
245Following R6RS, a `_' in a syntax-rules or syntax-case pattern matches
246anything, and binds no pattern variables. Unlike the R6RS, Guile also
247permits `_' to be in the literals list for a pattern.
248
249** Remove old Emacs interface
250
251Guile had an unused `--emacs' command line argument that was supposed to
252help when running Guile inside Emacs. This option has been removed, and
253the helper functions `named-module-use!' and `load-emacs-interface' have
254been deprecated.
255
256** `top-repl' has its own module
257
258The `top-repl' binding, called with Guile is run interactively, is now
259is its own module, `(ice-9 top-repl)'. A deprecated forwarding shim was
260left in the default environment.
261
262** Value history in the REPL on by default
263
264By default, the REPL will save computed values in variables like `$1',
265`$2', and the like. There are programmatic and interactive interfaces to
266control this. See "Value History" in the manual, for more information.
267
268** New threads are in `(guile-user)' by default, not `(guile)'
269
270It used to be that a new thread entering Guile would do so in the
271`(guile)' module, unless this was the first time Guile was initialized,
272in which case it was `(guile-user)'. This has been fixed to have all
273new threads unknown to Guile default to `(guile-user)'.
274
275** Backtrace improvements
276
277It used to be that backtraces showed a couple of extra frames, from the
278implementation of prompts. This has been fixed. Also, backtraces now
279print column numbers in addition to line numbers, if possible.
280
281** `display-error' takes a frame
282
283The `display-error' / `scm_display_error' helper now takes a frame as an
284argument instead of a stack. Stacks are still supported in deprecated
285builds. Additionally, `display-error' will again source location
286information for the error.
287
288** Better error reporting from the VM
289
290If a value of the wrong type is passed to `car', `cdr', `set-car!',
291`set-cdr!', `apply', a struct accessor, or a bytevector accessors, the
292error from the VM now indicates which procedure failed, instead of
293lumping them all into the non-helpful "VM error". In addition, unbound
294variable reporting is now more helpful.
295
296** No more `(ice-9 debug)'
297
298This module had some debugging helpers that are no longer applicable to
299the current debugging model. Importing this module will produce a
300deprecation warning. Users should contact bug-guile for support.
301
302** No more `(system vm debug)'
303
304This module is replaced by the recursive debugging REPL.
305
306** File ports handle binary mode and coding declarations
307
308Binary file ports are supported again, by opening files in the
309ISO-8859-1 encoding. If an encoding is not specified for textual ports,
310Guile now grovels the file for a "coding:" directive, and uses that if
311possible. See the documentation for `open-file', for more information.
312
313** R6RS character hex escapes on by default
314
315However, R6RS character escapes within strings are incompatible with
316older Guile escape sequences, so they still need the reader option
317turned on. See "Reader Options" in the manual, for more information.
318
319** Fix random number generator on 64-bit platforms
320
321There was a nasty bug on 64-bit platforms in which asking for a random
322integer with a range between 2**32 and 2**64 caused a segfault. After
323many embarrassing iterations, this was fixed.
324
1d3aa2ba 325** Add `vhash-fold*' in `(ice-9 vlist)'
66ad445d
AW
326
327See "VLists" in the manual, for more information.
328
329** Timestamps on autocompiled files checked for freshness, not equality
330
331It used to be that to load a `.go' file instead of a `.scm' file, we
332required that the timestamp of the `.go' file be equal to that of the
333`.scm'. This has been relaxed to accept newer `.go' files, to integrate
334better with `make' tools.
335
1d3aa2ba
LC
336** Use of nanosecond-resolution timestamps
337
338The auto-compilation logic now compares the source and compiled file
339timestamps using nano-second resolution, when available.
340
341** Simplifications and callback support added to the `(system foreign)'.
66ad445d
AW
342
343Guile's foreign function interface was simplified a great
4f969117
AW
344deal. Interested users should see "Foreign Function Interface" in the
345manual, for full details.
66ad445d 346
1d3aa2ba
LC
347In addition, the new procedure `procedure->pointer' makes it possible to
348use Scheme procedures as "callbacks" to C functions.
349
66ad445d
AW
350** User Scheme code may be placed in a version-specific path
351
352Before, there was only one way to install user Scheme code to a
353version-specific Guile directory: install to Guile's own path,
354e.g. /usr/share/guile/2.0. The site directory,
355e.g. /usr/share/guile/site, was unversioned. This has been changed to
356add a version-specific site directory, e.g. /usr/share/guile/site/2.0,
357searched before the global site directory.
8a302245 358
1d3aa2ba
LC
359** Docstrings for `syntax-rules' macros
360
361The `syntax-rules' form now accepts a docstring between the literals and
362the first clause.
363
364** SRFI-1 partly rewritten in Scheme
365
366Some of the SRFI-1 procedures that were written in C "for efficiency"
367have been rewritten in Scheme.
368
acf04ab4
AW
369** And of course, the usual collection of bugfixes
370
19fef497
AW
371Interested users should see the ChangeLog for more information.
372
acf04ab4 373
7b96f3dd 374\f
ef283979 375Changes in 1.9.x (since the 1.8.x series):
96b73e84
AW
376
377* New modules (see the manual for details)
378
379** `(srfi srfi-18)', more sophisticated multithreading support
380** `(ice-9 i18n)', internationalization support
0f13fcde 381** `(rnrs bytevectors)', the R6RS bytevector API
93617170 382** `(rnrs io ports)', a subset of the R6RS I/O port API
96b73e84 383** `(system xref)', a cross-referencing facility (FIXME undocumented)
dbd9532e 384** `(ice-9 vlist)', lists with constant-time random access; hash lists
fb53c347 385** `(system foreign)', foreign function interface
18e90860
AW
386** `(sxml match)', a pattern matcher for SXML
387** `(srfi srfi-9 gnu)', extensions to the SRFI-9 record library
388** `(system vm coverage)', a line-by-line code coverage library
66ad445d 389
cf8ec359
AW
390** Imported statprof, SSAX, and texinfo modules from Guile-Lib
391
392The statprof statistical profiler, the SSAX XML toolkit, and the texinfo
393toolkit from Guile-Lib have been imported into Guile proper. See
394"Standard Library" in the manual for more details.
395
139fa149
AW
396** Integration of lalr-scm, a parser generator
397
398Guile has included Dominique Boucher's fine `lalr-scm' parser generator
399as `(system base lalr)'. See "LALR(1) Parsing" in the manual, for more
400information.
401
96b73e84
AW
402* Changes to the stand-alone interpreter
403
404** Guile now can compile Scheme to bytecode for a custom virtual machine.
405
406Compiled code loads much faster than Scheme source code, and runs around
4073 or 4 times as fast, generating much less garbage in the process.
fa1804e9 408
29b98fb2 409** Evaluating Scheme code does not use the C stack.
fa1804e9 410
29b98fb2
AW
411Besides when compiling Guile itself, Guile no longer uses a recursive C
412function as an evaluator. This obviates the need to check the C stack
413pointer for overflow. Continuations still capture the C stack, however.
fa1804e9 414
96b73e84
AW
415** New environment variables: GUILE_LOAD_COMPILED_PATH,
416 GUILE_SYSTEM_LOAD_COMPILED_PATH
fa1804e9 417
96b73e84
AW
418GUILE_LOAD_COMPILED_PATH is for compiled files what GUILE_LOAD_PATH is
419for source files. It is a different path, however, because compiled
420files are architecture-specific. GUILE_SYSTEM_LOAD_COMPILED_PATH is like
421GUILE_SYSTEM_PATH.
422
423** New read-eval-print loop (REPL) implementation
424
425Running Guile with no arguments drops the user into the new REPL. While
426it is self-documenting to an extent, the new REPL has not yet been
427documented in the manual. This will be fixed before 2.0.
428
6bf927ab
LC
429** New reader options: `square-brackets' and `r6rs-hex-escapes'
430
431The reader supports a new option (changeable via `read-options'),
432`square-brackets', which instructs it to interpret square brackets as
29b98fb2 433parentheses. This option is on by default.
6bf927ab
LC
434
435When the new `r6rs-hex-escapes' reader option is enabled, the reader
436will recognize string escape sequences as defined in R6RS.
437
cf8ec359
AW
438** Function profiling and tracing at the REPL
439
440The `,profile FORM' REPL meta-command can now be used to statistically
441profile execution of a form, to see which functions are taking the most
442time. See `,help profile' for more information.
443
444Similarly, `,trace FORM' traces all function applications that occur
445during the execution of `FORM'. See `,help trace' for more information.
446
447** New debugger
448
449By default, if an exception is raised at the REPL and not caught by user
450code, Guile will drop the user into a debugger. The user may request a
451backtrace, inspect frames, or continue raising the exception. Full
452documentation is available from within the debugger.
453
96b73e84
AW
454** New `guile-tools' commands: `compile', `disassemble'
455
93617170 456Pass the `--help' command-line option to these commands for more
96b73e84
AW
457information.
458
b0217d17
AW
459** Guile now adds its install prefix to the LTDL_LIBRARY_PATH
460
461Users may now install Guile to nonstandard prefixes and just run
462`/path/to/bin/guile', instead of also having to set LTDL_LIBRARY_PATH to
463include `/path/to/lib'.
464
465** Guile's Emacs integration is now more keyboard-friendly
466
467Backtraces may now be disclosed with the keyboard in addition to the
468mouse.
469
cf8ec359
AW
470** Load path change: search in version-specific paths before site paths
471
472When looking for a module, Guile now searches first in Guile's
473version-specific path (the library path), *then* in the site dir. This
474allows Guile's copy of SSAX to override any Guile-Lib copy the user has
475installed. Also it should cut the number of `stat' system calls by half,
476in the common case.
477
139fa149
AW
478** Interactive Guile follows GNU conventions
479
480As recommended by the GPL, Guile now shows a brief copyright and
481warranty disclaimer on startup, along with pointers to more information.
cf8ec359 482
96b73e84
AW
483* Changes to Scheme functions and syntax
484
18e90860
AW
485** Support for R6RS libraries
486
487The `library' and `import' forms from the latest Scheme report have been
488added to Guile, in such a way that R6RS libraries share a namespace with
489Guile modules. R6RS modules may import Guile modules, and are available
490for Guile modules to import via use-modules and all the rest. See "R6RS
491Libraries" in the manual for more information.
492
493** Implementations of R6RS libraries
494
495Guile now has implementations for all of the libraries defined in the
496R6RS. Thanks to Julian Graham for this excellent hack. See "R6RS
497Standard Libraries" in the manual for a full list of libraries.
498
499** Partial R6RS compatibility
500
501Guile now has enough support for R6RS to run a reasonably large subset
502of R6RS programs.
503
504Guile is not fully R6RS compatible. Many incompatibilities are simply
505bugs, though some parts of Guile will remain R6RS-incompatible for the
506foreseeable future. See "R6RS Incompatibilities" in the manual, for more
507information.
508
509Please contact bug-guile@gnu.org if you have found an issue not
510mentioned in that compatibility list.
511
4a457691
AW
512** New implementation of `primitive-eval'
513
514Guile's `primitive-eval' is now implemented in Scheme. Actually there is
515still a C evaluator, used when building a fresh Guile to interpret the
516compiler, so we can compile eval.scm. Thereafter all calls to
517primitive-eval are implemented by VM-compiled code.
518
519This allows all of Guile's procedures, be they interpreted or compiled,
520to execute on the same stack, unifying multiple-value return semantics,
521providing for proper tail recursion between interpreted and compiled
522code, and simplifying debugging.
523
524As part of this change, the evaluator no longer mutates the internal
525representation of the code being evaluated in a thread-unsafe manner.
526
527There are two negative aspects of this change, however. First, Guile
528takes a lot longer to compile now. Also, there is less debugging
529information available for debugging interpreted code. We hope to improve
530both of these situations.
531
532There are many changes to the internal C evalator interface, but all
533public interfaces should be the same. See the ChangeLog for details. If
534we have inadvertantly changed an interface that you were using, please
535contact bug-guile@gnu.org.
536
96b73e84
AW
537** Procedure removed: `the-environment'
538
539This procedure was part of the interpreter's execution model, and does
540not apply to the compiler.
fa1804e9 541
4a457691
AW
542** No more `local-eval'
543
544`local-eval' used to exist so that one could evaluate code in the
545lexical context of a function. Since there is no way to get the lexical
546environment any more, as that concept has no meaning for the compiler,
547and a different meaning for the interpreter, we have removed the
548function.
549
550If you think you need `local-eval', you should probably implement your
551own metacircular evaluator. It will probably be as fast as Guile's
552anyway.
553
139fa149 554** Scheme source files will now be compiled automatically.
fa1804e9
AW
555
556If a compiled .go file corresponding to a .scm file is not found or is
557not fresh, the .scm file will be compiled on the fly, and the resulting
558.go file stored away. An advisory note will be printed on the console.
559
560Note that this mechanism depends on preservation of the .scm and .go
561modification times; if the .scm or .go files are moved after
562installation, care should be taken to preserve their original
563timestamps.
564
19fef497
AW
565Autocompiled files will be stored in the $XDG_CACHE_HOME/guile/ccache
566directory, where $XDG_CACHE_HOME defaults to ~/.cache. This directory
567will be created if needed.
fa1804e9
AW
568
569To inhibit autocompilation, set the GUILE_AUTO_COMPILE environment
570variable to 0, or pass --no-autocompile on the Guile command line.
571
96b73e84 572** New POSIX procedures: `getrlimit' and `setrlimit'
fa1804e9 573
96b73e84
AW
574Note however that the interface of these functions is likely to change
575in the next prerelease.
fa1804e9 576
4a457691
AW
577** New POSIX procedure: `getsid'
578
579Scheme binding for the `getsid' C library call.
580
dbd9532e
LC
581** New POSIX procedure: `getaddrinfo'
582
583Scheme binding for the `getaddrinfo' C library function.
584
96b73e84 585** New procedure in `(oops goops)': `method-formals'
fa1804e9 586
96b73e84
AW
587** New procedures in (ice-9 session): `add-value-help-handler!',
588 `remove-value-help-handler!', `add-name-help-handler!'
29b98fb2 589 `remove-name-help-handler!', `procedure-arguments'
fa1804e9 590
96b73e84
AW
591The value and name help handlers provide some minimal extensibility to
592the help interface. Guile-lib's `(texinfo reflection)' uses them, for
593example, to make stexinfo help documentation available. See those
594procedures' docstrings for more information.
595
596`procedure-arguments' describes the arguments that a procedure can take,
597combining arity and formals. For example:
598
599 (procedure-arguments resolve-interface)
600 => ((required . (name)) (rest . args))
fa1804e9 601
96b73e84
AW
602Additionally, `module-commentary' is now publically exported from
603`(ice-9 session).
604
cf8ec359 605** Removed: `procedure->memoizing-macro', `procedure->syntax'
96b73e84 606
cf8ec359
AW
607These procedures created primitive fexprs for the old evaluator, and are
608no longer supported. If you feel that you need these functions, you
609probably need to write your own metacircular evaluator (which will
610probably be as fast as Guile's, anyway).
96b73e84
AW
611
612** New language: ECMAScript
613
614Guile now ships with one other high-level language supported,
615ECMAScript. The goal is to support all of version 3.1 of the standard,
616but not all of the libraries are there yet. This support is not yet
617documented; ask on the mailing list if you are interested.
618
19fef497
AW
619** New language: Brainfuck
620
621Brainfuck is a toy language that closely models Turing machines. Guile's
622brainfuck compiler is meant to be an example of implementing other
623languages. See the manual for details, or
624http://en.wikipedia.org/wiki/Brainfuck for more information about the
625Brainfuck language itself.
626
4a457691
AW
627** New language: Elisp
628
629Guile now has an experimental Emacs Lisp compiler and runtime. You can
630now switch to Elisp at the repl: `,language elisp'. All kudos to Daniel
631Kraft, and all bugs to bug-guile@gnu.org.
632
139fa149
AW
633** Better documentation infrastructure for macros
634
635It is now possible to introspect on the type of a macro, e.g.
636syntax-rules, identifier-syntax, etc, and extract information about that
637macro, such as the syntax-rules patterns or the defmacro arguments.
638`(texinfo reflection)' takes advantage of this to give better macro
639documentation.
640
139fa149
AW
641** Support for arbitrary procedure metadata
642
643Building on its support for docstrings, Guile now supports multiple
644docstrings, adding them to the tail of a compiled procedure's
645properties. For example:
646
647 (define (foo)
648 "one"
649 "two"
650 3)
29b98fb2 651 (procedure-properties foo)
139fa149
AW
652 => ((name . foo) (documentation . "one") (documentation . "two"))
653
654Also, vectors of pairs are now treated as additional metadata entries:
655
656 (define (bar)
657 #((quz . #f) (docstring . "xyzzy"))
658 3)
29b98fb2 659 (procedure-properties bar)
139fa149
AW
660 => ((name . bar) (quz . #f) (docstring . "xyzzy"))
661
662This allows arbitrary literals to be embedded as metadata in a compiled
663procedure.
664
96b73e84
AW
665** The psyntax expander now knows how to interpret the @ and @@ special
666 forms.
667
668** The psyntax expander is now hygienic with respect to modules.
669
670Free variables in a macro are scoped in the module that the macro was
671defined in, not in the module the macro is used in. For example, code
672like this works now:
673
674 (define-module (foo) #:export (bar))
675 (define (helper x) ...)
676 (define-syntax bar
677 (syntax-rules () ((_ x) (helper x))))
678
679 (define-module (baz) #:use-module (foo))
680 (bar qux)
681
682It used to be you had to export `helper' from `(foo)' as well.
683Thankfully, this has been fixed.
684
cf8ec359
AW
685** Complete support for version information in Guile's `module' form
686
687Guile modules now have a `#:version' field. They may be loaded by
688version as well. See "R6RS Version References", "General Information
689about Modules", "Using Guile Modules", and "Creating Guile Modules" in
690the manual for more information.
96b73e84 691
cf8ec359
AW
692** Support for renaming bindings on module export
693
694Wherever Guile accepts a symbol as an argument to specify a binding to
695export, it now also accepts a pair of symbols, indicating that a binding
696should be renamed on export. See "Creating Guile Modules" in the manual
697for more information.
96b73e84 698
18e90860
AW
699** New procedure: `module-export-all!'
700
701This procedure exports all current and future bindings from a module.
702Use as `(module-export-all! (current-module))'.
703
96b73e84
AW
704** `eval-case' has been deprecated, and replaced by `eval-when'.
705
29b98fb2
AW
706The semantics of `eval-when' are easier to understand. See "Eval When"
707in the manual, for more information.
96b73e84
AW
708
709** Guile is now more strict about prohibiting definitions in expression
710 contexts.
711
712Although previous versions of Guile accepted it, the following
713expression is not valid, in R5RS or R6RS:
714
715 (if test (define foo 'bar) (define foo 'baz))
716
717In this specific case, it would be better to do:
718
719 (define foo (if test 'bar 'baz))
720
721It is certainly possible to circumvent this resriction with e.g.
722`(module-define! (current-module) 'foo 'baz)'. We would appreciate
723feedback about this change (a consequence of using psyntax as the
724default expander), and may choose to revisit this situation before 2.0
725in response to user feedback.
726
18e90860
AW
727** Macro expansion produces structures instead of s-expressions
728
729In the olden days, macroexpanding an s-expression would yield another
730s-expression. Though the lexical variables were renamed, expansions of
731core forms like `if' and `begin' were still non-hygienic, as they relied
732on the toplevel definitions of `if' et al being the conventional ones.
733
734The solution is to expand to structures instead of s-expressions. There
735is an `if' structure, a `begin' structure, a `toplevel-ref' structure,
736etc. The expander already did this for compilation, producing Tree-IL
737directly; it has been changed now to do so when expanding for the
738evaluator as well.
739
96b73e84
AW
740** Defmacros must now produce valid Scheme expressions.
741
742It used to be that defmacros could unquote in Scheme values, as a way of
743supporting partial evaluation, and avoiding some hygiene issues. For
744example:
745
746 (define (helper x) ...)
747 (define-macro (foo bar)
748 `(,helper ,bar))
749
750Assuming this macro is in the `(baz)' module, the direct translation of
751this code would be:
752
753 (define (helper x) ...)
754 (define-macro (foo bar)
755 `((@@ (baz) helper) ,bar))
756
757Of course, one could just use a hygienic macro instead:
758
759 (define-syntax foo
760 (syntax-rules ()
761 ((_ bar) (helper bar))))
762
763** Guile's psyntax now supports docstrings and internal definitions.
764
765The following Scheme is not strictly legal:
766
767 (define (foo)
768 "bar"
769 (define (baz) ...)
770 (baz))
771
772However its intent is fairly clear. Guile interprets "bar" to be the
773docstring of `foo', and the definition of `baz' is still in definition
774context.
775
776** Macros need to be defined before their first use.
777
778It used to be that with lazy memoization, this might work:
779
780 (define (foo x)
781 (ref x))
782 (define-macro (ref x) x)
783 (foo 1) => 1
784
785But now, the body of `foo' is interpreted to mean a call to the toplevel
786`ref' function, instead of a macro expansion. The solution is to define
787macros before code that uses them.
788
789** Functions needed by macros at expand-time need to be present at
790 expand-time.
791
792For example, this code will work at the REPL:
793
794 (define (double-helper x) (* x x))
795 (define-macro (double-literal x) (double-helper x))
796 (double-literal 2) => 4
797
798But it will not work when a file is compiled, because the definition of
799`double-helper' is not present at expand-time. The solution is to wrap
800the definition of `double-helper' in `eval-when':
801
802 (eval-when (load compile eval)
803 (define (double-helper x) (* x x)))
804 (define-macro (double-literal x) (double-helper x))
805 (double-literal 2) => 4
806
29b98fb2 807See the documentation for eval-when for more information.
96b73e84 808
29b98fb2 809** `macroexpand' produces structures, not S-expressions.
96b73e84 810
29b98fb2
AW
811Given the need to maintain referential transparency, both lexically and
812modular, the result of expanding Scheme expressions is no longer itself
813an s-expression. If you want a human-readable approximation of the
814result of `macroexpand', call `tree-il->scheme' from `(language
815tree-il)'.
96b73e84 816
29b98fb2 817** Removed function: `macroexpand-1'
96b73e84 818
29b98fb2
AW
819It is unclear how to implement `macroexpand-1' with syntax-case, though
820PLT Scheme does prove that it is possible.
fa1804e9
AW
821
822** New reader macros: #' #` #, #,@
823
824These macros translate, respectively, to `syntax', `quasisyntax',
825`unsyntax', and `unsyntax-splicing'. See the R6RS for more information.
826These reader macros may be overridden by `read-hash-extend'.
827
828** Incompatible change to #'
829
830Guile did have a #' hash-extension, by default, which just returned the
831subsequent datum: #'foo => foo. In the unlikely event that anyone
832actually used this, this behavior may be reinstated via the
833`read-hash-extend' mechanism.
834
835** Scheme expresssions may be commented out with #;
836
93617170
LC
837#; comments out an entire expression. See SRFI-62 or the R6RS for more
838information.
fa1804e9 839
b0abbaa7
AW
840** Prompts: Delimited, composable continuations
841
842Guile now has prompts as part of its primitive language. See "Prompts"
843in the manual, for more information.
844
845Expressions entered in at the REPL, or from the command line, are
846surrounded by a prompt with the default prompt tag.
847
93617170 848** `make-stack' with a tail-called procedural narrowing argument no longer
fa1804e9
AW
849 works (with compiled procedures)
850
851It used to be the case that a captured stack could be narrowed to select
852calls only up to or from a certain procedure, even if that procedure
853already tail-called another procedure. This was because the debug
854information from the original procedure was kept on the stack.
855
856Now with the new compiler, the stack only contains active frames from
857the current continuation. A narrow to a procedure that is not in the
858stack will result in an empty stack. To fix this, narrow to a procedure
859that is active in the current continuation, or narrow to a specific
860number of stack frames.
861
29b98fb2 862** Backtraces through compiled procedures only show procedures that are
fa1804e9
AW
863 active in the current continuation
864
865Similarly to the previous issue, backtraces in compiled code may be
866different from backtraces in interpreted code. There are no semantic
867differences, however. Please mail bug-guile@gnu.org if you see any
868deficiencies with Guile's backtraces.
869
870** syntax-rules and syntax-case macros now propagate source information
871 through to the expanded code
872
873This should result in better backtraces.
874
875** The currying behavior of `define' has been removed.
876
877Before, `(define ((f a) b) (* a b))' would translate to
878
879 (define f (lambda (a) (lambda (b) (* a b))))
880
93617170 881Now a syntax error is signaled, as this syntax is not supported by
29b98fb2
AW
882default. Use the `(ice-9 curried-definitions)' module to get back the
883old behavior.
fa1804e9 884
4a457691
AW
885** New procedure, `define!'
886
887`define!' is a procedure that takes two arguments, a symbol and a value,
888and binds the value to the symbol in the current module. It's useful to
889programmatically make definitions in the current module, and is slightly
890less verbose than `module-define!'.
891
fa1804e9
AW
892** All modules have names now
893
894Before, you could have anonymous modules: modules without names. Now,
895because of hygiene and macros, all modules have names. If a module was
896created without a name, the first time `module-name' is called on it, a
897fresh name will be lazily generated for it.
898
18e90860
AW
899** The module namespace is now separate from the value namespace
900
901It was a little-known implementation detail of Guile's module system
902that it was built on a single hierarchical namespace of values -- that
903if there was a module named `(foo bar)', then in the module named
904`(foo)' there was a binding from `bar' to the `(foo bar)' module.
905
906This was a neat trick, but presented a number of problems. One problem
907was that the bindings in a module were not apparent from the module
908itself; perhaps the `(foo)' module had a private binding for `bar', and
909then an external contributor defined `(foo bar)'. In the end there can
910be only one binding, so one of the two will see the wrong thing, and
911produce an obtuse error of unclear provenance.
912
913Also, the public interface of a module was also bound in the value
914namespace, as `%module-public-interface'. This was a hack from the early
915days of Guile's modules.
916
917Both of these warts have been fixed by the addition of fields in the
918`module' data type. Access to modules and their interfaces from the
919value namespace has been deprecated, and all accessors use the new
920record accessors appropriately.
921
922When Guile is built with support for deprecated code, as is the default,
923the value namespace is still searched for modules and public interfaces,
924and a deprecation warning is raised as appropriate.
925
926Finally, to support lazy loading of modules as one used to be able to do
927with module binder procedures, Guile now has submodule binders, called
928if a given submodule is not found. See boot-9.scm for more information.
929
930** New procedures: module-ref-submodule, module-define-submodule,
931 nested-ref-module, nested-define-module!, local-ref-module,
932 local-define-module
933
934These new accessors are like their bare variants, but operate on
935namespaces instead of values.
936
937** The (app modules) module tree is officially deprecated
938
939It used to be that one could access a module named `(foo bar)' via
940`(nested-ref the-root-module '(app modules foo bar))'. The `(app
941modules)' bit was a never-used and never-documented abstraction, and has
942been deprecated. See the following mail for a full discussion:
943
944 http://lists.gnu.org/archive/html/guile-devel/2010-04/msg00168.html
945
946The `%app' binding is also deprecated.
947
fa1804e9
AW
948** Many syntax errors have different texts now
949
950Syntax errors still throw to the `syntax-error' key, but the arguments
951are often different now. Perhaps in the future, Guile will switch to
93617170 952using standard SRFI-35 conditions.
fa1804e9
AW
953
954** Returning multiple values to compiled code will silently truncate the
955 values to the expected number
956
957For example, the interpreter would raise an error evaluating the form,
958`(+ (values 1 2) (values 3 4))', because it would see the operands as
959being two compound "values" objects, to which `+' does not apply.
960
961The compiler, on the other hand, receives multiple values on the stack,
962not as a compound object. Given that it must check the number of values
963anyway, if too many values are provided for a continuation, it chooses
964to truncate those values, effectively evaluating `(+ 1 3)' instead.
965
966The idea is that the semantics that the compiler implements is more
967intuitive, and the use of the interpreter will fade out with time.
968This behavior is allowed both by the R5RS and the R6RS.
969
970** Multiple values in compiled code are not represented by compound
971 objects
972
973This change may manifest itself in the following situation:
974
975 (let ((val (foo))) (do-something) val)
976
977In the interpreter, if `foo' returns multiple values, multiple values
978are produced from the `let' expression. In the compiler, those values
979are truncated to the first value, and that first value is returned. In
980the compiler, if `foo' returns no values, an error will be raised, while
981the interpreter would proceed.
982
983Both of these behaviors are allowed by R5RS and R6RS. The compiler's
984behavior is more correct, however. If you wish to preserve a potentially
985multiply-valued return, you will need to set up a multiple-value
986continuation, using `call-with-values'.
987
988** Defmacros are now implemented in terms of syntax-case.
989
990The practical ramification of this is that the `defmacro?' predicate has
991been removed, along with `defmacro-transformer', `macro-table',
992`xformer-table', `assert-defmacro?!', `set-defmacro-transformer!' and
993`defmacro:transformer'. This is because defmacros are simply macros. If
994any of these procedures provided useful facilities to you, we encourage
995you to contact the Guile developers.
996
139fa149
AW
997** Hygienic macros documented as the primary syntactic extension mechanism.
998
999The macro documentation was finally fleshed out with some documentation
29b98fb2
AW
1000on `syntax-rules' and `syntax-case' macros, and other parts of the macro
1001expansion process. See "Macros" in the manual, for details.
139fa149 1002
fa1804e9
AW
1003** psyntax is now the default expander
1004
1005Scheme code is now expanded by default by the psyntax hygienic macro
1006expander. Expansion is performed completely before compilation or
1007interpretation.
1008
1009Notably, syntax errors will be signalled before interpretation begins.
1010In the past, many syntax errors were only detected at runtime if the
1011code in question was memoized.
1012
1013As part of its expansion, psyntax renames all lexically-bound
1014identifiers. Original identifier names are preserved and given to the
1015compiler, but the interpreter will see the renamed variables, e.g.,
1016`x432' instead of `x'.
1017
1018Note that the psyntax that Guile uses is a fork, as Guile already had
1019modules before incompatible modules were added to psyntax -- about 10
1020years ago! Thus there are surely a number of bugs that have been fixed
1021in psyntax since then. If you find one, please notify bug-guile@gnu.org.
1022
1023** syntax-rules and syntax-case are available by default.
1024
1025There is no longer any need to import the `(ice-9 syncase)' module
1026(which is now deprecated). The expander may be invoked directly via
29b98fb2 1027`macroexpand', though it is normally searched for via the current module
fa1804e9
AW
1028transformer.
1029
1030Also, the helper routines for syntax-case are available in the default
1031environment as well: `syntax->datum', `datum->syntax',
1032`bound-identifier=?', `free-identifier=?', `generate-temporaries',
1033`identifier?', and `syntax-violation'. See the R6RS for documentation.
1034
4a457691
AW
1035** Tail patterns in syntax-case
1036
1037Guile has pulled in some more recent changes from the psyntax portable
1038syntax expander, to implement support for "tail patterns". Such patterns
1039are supported by syntax-rules and syntax-case. This allows a syntax-case
1040match clause to have ellipses, then a pattern at the end. For example:
1041
1042 (define-syntax case
1043 (syntax-rules (else)
1044 ((_ val match-clause ... (else e e* ...))
1045 [...])))
1046
1047Note how there is MATCH-CLAUSE, which is ellipsized, then there is a
1048tail pattern for the else clause. Thanks to Andreas Rottmann for the
1049patch, and Kent Dybvig for the code.
1050
fa1804e9
AW
1051** Lexical bindings introduced by hygienic macros may not be referenced
1052 by nonhygienic macros.
1053
1054If a lexical binding is introduced by a hygienic macro, it may not be
1055referenced by a nonhygienic macro. For example, this works:
1056
1057 (let ()
1058 (define-macro (bind-x val body)
1059 `(let ((x ,val)) ,body))
1060 (define-macro (ref x)
1061 x)
1062 (bind-x 10 (ref x)))
1063
1064But this does not:
1065
1066 (let ()
1067 (define-syntax bind-x
1068 (syntax-rules ()
1069 ((_ val body) (let ((x val)) body))))
1070 (define-macro (ref x)
1071 x)
1072 (bind-x 10 (ref x)))
1073
1074It is not normal to run into this situation with existing code. However,
1075as code is ported over from defmacros to syntax-case, it is possible to
66ad445d
AW
1076run into situations like this. For example, if you have a defmacro that
1077generates a `while' expression, the `break' bound by the `while' may not
1078be visible within other parts of your defmacro. The solution is to port
1079from defmacros to syntax-rules or syntax-case.
fa1804e9
AW
1080
1081** Macros may no longer be referenced as first-class values.
1082
1083In the past, you could evaluate e.g. `if', and get its macro value. Now,
1084expanding this form raises a syntax error.
1085
1086Macros still /exist/ as first-class values, but they must be
1087/referenced/ via the module system, e.g. `(module-ref (current-module)
1088'if)'.
1089
29b98fb2
AW
1090** Macros may now have docstrings.
1091
1092`object-documentation' from `(ice-9 documentation)' may be used to
1093retrieve the docstring, once you have a macro value -- but see the above
1094note about first-class macros. Docstrings are associated with the syntax
1095transformer procedures.
fa1804e9 1096
e614d375
AW
1097** `case-lambda' is now available in the default environment.
1098
1099The binding in the default environment is equivalent to the one from the
1100`(srfi srfi-16)' module. Use the srfi-16 module explicitly if you wish
1101to maintain compatibility with Guile 1.8 and earlier.
1102
29b98fb2 1103** Procedures may now have more than one arity.
5bb408cc
AW
1104
1105This can be the case, for example, in case-lambda procedures. The
1106arities of compiled procedures may be accessed via procedures from the
1107`(system vm program)' module; see "Compiled Procedures", "Optional
1108Arguments", and "Case-lambda" in the manual.
1109
18e90860
AW
1110** Deprecate arity access via (procedure-properties proc 'arity)
1111
1112Instead of accessing a procedure's arity as a property, use the new
1113`procedure-minimum-arity' function, which gives the most permissive
1114arity that the the function has, in the same format as the old arity
1115accessor.
1116
e614d375
AW
1117** `lambda*' and `define*' are now available in the default environment
1118
1119As with `case-lambda', `(ice-9 optargs)' continues to be supported, for
1120compatibility purposes. No semantic change has been made (we hope).
1121Optional and keyword arguments now dispatch via special VM operations,
1122without the need to cons rest arguments, making them very fast.
1123
cf8ec359
AW
1124** New function, `truncated-print', with `format' support
1125
1126`(ice-9 pretty-print)' now exports `truncated-print', a printer that
1127will ensure that the output stays within a certain width, truncating the
1128output in what is hopefully an intelligent manner. See the manual for
1129more details.
1130
1131There is a new `format' specifier, `~@y', for doing a truncated
1132print (as opposed to `~y', which does a pretty-print). See the `format'
1133documentation for more details.
1134
1135** SRFI-4 vectors reimplemented in terms of R6RS bytevectors
1136
1137Guile now implements SRFI-4 vectors using bytevectors. Often when you
1138have a numeric vector, you end up wanting to write its bytes somewhere,
1139or have access to the underlying bytes, or read in bytes from somewhere
1140else. Bytevectors are very good at this sort of thing. But the SRFI-4
1141APIs are nicer to use when doing number-crunching, because they are
1142addressed by element and not by byte.
1143
1144So as a compromise, Guile allows all bytevector functions to operate on
1145numeric vectors. They address the underlying bytes in the native
1146endianness, as one would expect.
1147
1148Following the same reasoning, that it's just bytes underneath, Guile
1149also allows uniform vectors of a given type to be accessed as if they
1150were of any type. One can fill a u32vector, and access its elements with
1151u8vector-ref. One can use f64vector-ref on bytevectors. It's all the
1152same to Guile.
1153
1154In this way, uniform numeric vectors may be written to and read from
1155input/output ports using the procedures that operate on bytevectors.
1156
1157Calls to SRFI-4 accessors (ref and set functions) from Scheme are now
1158inlined to the VM instructions for bytevector access.
1159
1160See "SRFI-4" in the manual, for more information.
1161
1162** Nonstandard SRFI-4 procedures now available from `(srfi srfi-4 gnu)'
1163
1164Guile's `(srfi srfi-4)' now only exports those srfi-4 procedures that
1165are part of the standard. Complex uniform vectors and the
1166`any->FOOvector' family are now available only from `(srfi srfi-4 gnu)'.
1167
1168Guile's default environment imports `(srfi srfi-4)', and probably should
1169import `(srfi srfi-4 gnu)' as well.
1170
1171See "SRFI-4 Extensions" in the manual, for more information.
1172
e614d375
AW
1173** New syntax: include-from-path.
1174
1175`include-from-path' is like `include', except it looks for its file in
1176the load path. It can be used to compile other files into a file.
1177
1178** New syntax: quasisyntax.
1179
1180`quasisyntax' is to `syntax' as `quasiquote' is to `quote'. See the R6RS
1181documentation for more information. Thanks to Andre van Tonder for the
1182implementation.
1183
108e18b1
AW
1184** Unicode characters
1185
1186Unicode characters may be entered in octal format via e.g. `#\454', or
1187created via (integer->char 300). A hex external representation will
1188probably be introduced at some point.
1189
1190** Unicode strings
1191
1192Internally, strings are now represented either in the `latin-1'
1193encoding, one byte per character, or in UTF-32, with four bytes per
1194character. Strings manage their own allocation, switching if needed.
1195
99e31c32
AW
1196Extended characters may be written in a literal string using the
1197hexadecimal escapes `\xXX', `\uXXXX', or `\UXXXXXX', for 8-bit, 16-bit,
1198or 24-bit codepoints, respectively, or entered directly in the native
1199encoding of the port on which the string is read.
1200
56664c08
AW
1201** Unicode symbols
1202
1203One may now use U+03BB (GREEK SMALL LETTER LAMBDA) as an identifier.
1204
99e31c32
AW
1205** Support for non-ASCII source code files
1206
1207The default reader now handles source code files for some of the
1208non-ASCII character encodings, such as UTF-8. A non-ASCII source file
1209should have an encoding declaration near the top of the file. Also,
1210there is a new function, `file-encoding', that scans a port for a coding
1211declaration. See the section of the manual entitled, "Character Encoding
1212of Source Files".
1213
1214The pre-1.9.3 reader handled 8-bit clean but otherwise unspecified source
1215code. This use is now discouraged.
1216
1217** Support for locale transcoding when reading from and writing to ports
1218
1219Ports now have an associated character encoding, and port read and write
1220operations do conversion to and from locales automatically. Ports also
1221have an associated strategy for how to deal with locale conversion
1222failures.
1223
1224See the documentation in the manual for the four new support functions,
1225`set-port-encoding!', `port-encoding', `set-port-conversion-strategy!',
1226and `port-conversion-strategy'.
1227
1228** String and SRFI-13 functions can operate on Unicode strings
1229
1230** Unicode support for SRFI-14 character sets
1231
1232The default character sets are no longer locale dependent and contain
1233characters from the whole Unicode range. There is a new predefined
1234character set, `char-set:designated', which contains all assigned
1235Unicode characters. There is a new debugging function, `%char-set-dump'.
1236
1237** Character functions operate on Unicode characters
1238
1239`char-upcase' and `char-downcase' use default Unicode casing rules.
1240Character comparisons such as `char<?' and `char-ci<?' now sort based on
1241Unicode code points.
108e18b1
AW
1242
1243** Global variables `scm_charnames' and `scm_charnums' are removed
1244
1245These variables contained the names of control characters and were
1246used when writing characters. While these were global, they were
1247never intended to be public API. They have been replaced with private
1248functions.
1249
1250** EBCDIC support is removed
1251
1252There was an EBCDIC compile flag that altered some of the character
1253processing. It appeared that full EBCDIC support was never completed
1254and was unmaintained.
1255
6bf927ab 1256** Compile-time warnings
b0217d17
AW
1257
1258Guile can warn about potentially unbound free variables. Pass the
1259-Wunbound-variable on the `guile-tools compile' command line, or add
1260`#:warnings '(unbound-variable)' to your `compile' or `compile-file'
1261invocation.
1262
6cf43047
AW
1263Guile can also warn when you pass the wrong number of arguments to a
1264procedure, with -Warity-mismatch, or `arity-mismatch' in the
1265`#:warnings' as above.
1266
6bf927ab
LC
1267Other warnings include `-Wunused-variable' and `-Wunused-toplevel', to
1268warn about unused local or global (top-level) variables.
1269
93617170
LC
1270** A new `memoize-symbol' evaluator trap has been added.
1271
1272This trap can be used for efficiently implementing a Scheme code
1273coverage.
fa1804e9 1274
96b73e84 1275** Duplicate bindings among used modules are resolved lazily.
93617170 1276
96b73e84 1277This slightly improves program startup times.
fa1804e9 1278
96b73e84 1279** New thread cancellation and thread cleanup API
93617170 1280
96b73e84 1281See `cancel-thread', `set-thread-cleanup!', and `thread-cleanup'.
fa1804e9 1282
4a457691
AW
1283** GOOPS dispatch in scheme
1284
1285As an implementation detail, GOOPS dispatch is no longer implemented by
1286special evaluator bytecodes, but rather directly via a Scheme function
1287associated with an applicable struct. There is some VM support for the
1288underlying primitives, like `class-of'.
1289
1290This change will in the future allow users to customize generic function
1291dispatch without incurring a performance penalty, and allow us to
1292implement method combinations.
1293
4a457691
AW
1294** Applicable struct support
1295
1296One may now make structs from Scheme that may be applied as procedures.
1297To do so, make a struct whose vtable is `<applicable-struct-vtable>'.
1298That struct will be the vtable of your applicable structs; instances of
1299that new struct are assumed to have the procedure in their first slot.
1300`<applicable-struct-vtable>' is like Common Lisp's
1301`funcallable-standard-class'. Likewise there is
1302`<applicable-struct-with-setter-vtable>', which looks for the setter in
1303the second slot. This needs to be better documented.
1304
29b98fb2
AW
1305** GOOPS cleanups.
1306
1307GOOPS had a number of concepts that were relevant to the days of Tcl,
1308but not any more: operators and entities, mainly. These objects were
1309never documented, and it is unlikely that they were ever used. Operators
1310were a kind of generic specific to the Tcl support. Entities were
1311replaced by applicable structs, mentioned above.
1312
4a457691
AW
1313** New struct slot allocation: "hidden"
1314
1315A hidden slot is readable and writable, but will not be initialized by a
1316call to make-struct. For example in your layout you would say "ph"
1317instead of "pw". Hidden slots are useful for adding new slots to a
1318vtable without breaking existing invocations to make-struct.
1319
1320** eqv? not a generic
1321
1322One used to be able to extend `eqv?' as a primitive-generic, but no
1323more. Because `eqv?' is in the expansion of `case' (via `memv'), which
1324should be able to compile to static dispatch tables, it doesn't make
1325sense to allow extensions that would subvert this optimization.
1326
e614d375
AW
1327** `inet-ntop' and `inet-pton' are always available.
1328
1329Guile now use a portable implementation of `inet_pton'/`inet_ntop', so
1330there is no more need to use `inet-aton'/`inet-ntoa'. The latter
1331functions are deprecated.
1332
5bb408cc
AW
1333** Fast bit operations.
1334
1335The bit-twiddling operations `ash', `logand', `logior', and `logxor' now
1336have dedicated bytecodes. Guile is not just for symbolic computation,
1337it's for number crunching too.
1338
4a457691
AW
1339** Faster SRFI-9 record access
1340
1341SRFI-9 records are now implemented directly on top of Guile's structs,
1342and their accessors are defined in such a way that normal call-sites
1343inline to special VM opcodes, while still allowing for the general case
1344(e.g. passing a record accessor to `apply').
1345
e614d375
AW
1346** R6RS block comment support
1347
1348Guile now supports R6RS nested block comments. The start of a comment is
1349marked with `#|', and the end with `|#'.
1350
1351** `guile-2' cond-expand feature
1352
1353To test if your code is running under Guile 2.0 (or its alpha releases),
1354test for the `guile-2' cond-expand feature. Like this:
1355
1356 (cond-expand (guile-2 (eval-when (compile)
1357 ;; This must be evaluated at compile time.
1358 (fluid-set! current-reader my-reader)))
1359 (guile
1360 ;; Earlier versions of Guile do not have a
1361 ;; separate compilation phase.
1362 (fluid-set! current-reader my-reader)))
1363
96b73e84 1364** Fix bad interaction between `false-if-exception' and stack-call.
fa1804e9 1365
96b73e84
AW
1366Exceptions thrown by `false-if-exception' were erronously causing the
1367stack to be saved, causing later errors to show the incorrectly-saved
1368backtrace. This has been fixed.
fa1804e9 1369
96b73e84 1370** New global variables: %load-compiled-path, %load-compiled-extensions
fa1804e9 1371
96b73e84 1372These are analogous to %load-path and %load-extensions.
fa1804e9 1373
18e90860
AW
1374** New fluid: `%file-port-name-canonicalization'
1375
1376This fluid parameterizes the file names that are associated with file
1377ports. If %file-port-name-canonicalization is 'absolute, then file names
1378are canonicalized to be absolute paths. If it is 'relative, then the
1379name is canonicalized, but any prefix corresponding to a member of
1380`%load-path' is stripped off. Otherwise the names are passed through
1381unchanged.
1382
1383In addition, the `compile-file' and `compile-and-load' procedures bind
1384%file-port-name-canonicalization to their `#:canonicalization' keyword
1385argument, which defaults to 'relative. In this way, one might compile
1386"../module/ice-9/boot-9.scm", but the path that gets residualized into
1387the .go is "ice-9/boot-9.scm".
1388
96b73e84 1389** New procedure, `make-promise'
fa1804e9 1390
96b73e84 1391`(make-promise (lambda () foo))' is equivalent to `(delay foo)'.
fa1804e9 1392
108e18b1
AW
1393** `defined?' may accept a module as its second argument
1394
1395Previously it only accepted internal structures from the evaluator.
1396
96b73e84 1397** New entry into %guile-build-info: `ccachedir'
fa1804e9 1398
96b73e84 1399** Fix bug in `module-bound?'.
fa1804e9 1400
96b73e84
AW
1401`module-bound?' was returning true if a module did have a local
1402variable, but one that was unbound, but another imported module bound
1403the variable. This was an error, and was fixed.
fa1804e9 1404
96b73e84 1405** `(ice-9 syncase)' has been deprecated.
fa1804e9 1406
96b73e84
AW
1407As syntax-case is available by default, importing `(ice-9 syncase)' has
1408no effect, and will trigger a deprecation warning.
fa1804e9 1409
b0217d17
AW
1410** New readline history functions
1411
1412The (ice-9 readline) module now provides add-history, read-history,
1413write-history and clear-history, which wrap the corresponding GNU
1414History library functions.
1415
86d88a22
AW
1416** Removed deprecated uniform array procedures:
1417 dimensions->uniform-array, list->uniform-array, array-prototype
1418
1419Instead, use make-typed-array, list->typed-array, or array-type,
1420respectively.
1421
b0abbaa7
AW
1422** Deprecated: `lazy-catch'
1423
1424`lazy-catch' was a form that captured the stack at the point of a
1425`throw', but the dynamic state at the point of the `catch'. It was a bit
1426crazy. Please change to use `catch', possibly with a throw-handler, or
1427`with-throw-handler'.
1428
18e90860
AW
1429** Deprecated `@bind' syntax
1430
1431`@bind' was part of an older implementation of the Emacs Lisp language,
1432and is no longer used.
1433
87e00370
LC
1434** Last but not least, the `λ' macro can be used in lieu of `lambda'
1435
96b73e84 1436* Changes to the C interface
fa1804e9 1437
7b96f3dd
LC
1438** Guile now uses libgc, the Boehm-Demers-Weiser garbage collector
1439
1440The semantics of `scm_gc_malloc ()' have been changed, in a
1441backward-compatible way. A new allocation routine,
1442`scm_gc_malloc_pointerless ()', was added.
1443
1444Libgc is a conservative GC, which we hope will make interaction with C
1445code easier and less error-prone.
1446
4a457691
AW
1447** New type definitions for `scm_t_intptr' and friends.
1448
1449`SCM_T_UINTPTR_MAX', `SCM_T_INTPTR_MIN', `SCM_T_INTPTR_MAX',
1450`SIZEOF_SCM_T_BITS', `scm_t_intptr' and `scm_t_uintptr' are now
1451available to C. Have fun!
1452
96b73e84 1453** The GH interface (deprecated in version 1.6, 2001) was removed.
fa1804e9 1454
96b73e84 1455** Internal `scm_i_' functions now have "hidden" linkage with GCC/ELF
fa1804e9 1456
96b73e84
AW
1457This makes these internal functions technically not callable from
1458application code.
fa1804e9 1459
96b73e84
AW
1460** Functions for handling `scm_option' now no longer require an argument
1461indicating length of the `scm_t_option' array.
fa1804e9 1462
4a457691
AW
1463** Procedures-with-setters are now implemented using applicable structs
1464
1465From a user's perspective this doesn't mean very much. But if, for some
1466odd reason, you used the SCM_PROCEDURE_WITH_SETTER_P, SCM_PROCEDURE, or
1467SCM_SETTER macros, know that they're deprecated now. Also, scm_tc7_pws
1468is gone.
1469
1470** Remove old evaluator closures
1471
1472There used to be ranges of typecodes allocated to interpreted data
1473structures, but that it no longer the case, given that interpreted
1474procedure are now just regular VM closures. As a result, there is a
1475newly free tc3, and a number of removed macros. See the ChangeLog for
1476details.
1477
cf8ec359 1478** Primitive procedures are now VM trampoline procedures
4a457691
AW
1479
1480It used to be that there were something like 12 different typecodes
1481allocated to primitive procedures, each with its own calling convention.
1482Now there is only one, the gsubr. This may affect user code if you were
1483defining a procedure using scm_c_make_subr rather scm_c_make_gsubr. The
1484solution is to switch to use scm_c_make_gsubr. This solution works well
1485both with the old 1.8 and and with the current 1.9 branch.
1486
cf8ec359
AW
1487Guile's old evaluator used to have special cases for applying "gsubrs",
1488primitive procedures with specified numbers of required, optional, and
1489rest arguments. Now, however, Guile represents gsubrs as normal VM
1490procedures, with appropriate bytecode to parse out the correct number of
1491arguments, including optional and rest arguments, and then with a
1492special bytecode to apply the gsubr.
1493
1494This allows primitive procedures to appear on the VM stack, allowing
1495them to be accurately counted in profiles. Also they now have more
1496debugging information attached to them -- their number of arguments, for
1497example. In addition, the VM can completely inline the application
1498mechanics, allowing for faster primitive calls.
1499
1500However there are some changes on the C level. There is no more
1501`scm_tc7_gsubr' or `scm_tcs_subrs' typecode for primitive procedures, as
1502they are just VM procedures. Likewise the macros `SCM_GSUBR_TYPE',
1503`SCM_GSUBR_MAKTYPE', `SCM_GSUBR_REQ', `SCM_GSUBR_OPT', and
1504`SCM_GSUBR_REST' are gone, as are `SCM_SUBR_META_INFO', `SCM_SUBR_PROPS'
1505`SCM_SET_SUBR_GENERIC_LOC', and `SCM_SUBR_ARITY_TO_TYPE'.
1506
1507Perhaps more significantly, `scm_c_make_subr',
1508`scm_c_make_subr_with_generic', `scm_c_define_subr', and
1509`scm_c_define_subr_with_generic'. They all operated on subr typecodes,
1510and there are no more subr typecodes. Use the scm_c_make_gsubr family
1511instead.
1512
1513Normal users of gsubrs should not be affected, though, as the
1514scm_c_make_gsubr family still is the correct way to create primitive
1515procedures.
1516
1517** Remove deprecated array C interfaces
1518
1519Removed the deprecated array functions `scm_i_arrayp',
1520`scm_i_array_ndim', `scm_i_array_mem', `scm_i_array_v',
1521`scm_i_array_base', `scm_i_array_dims', and the deprecated macros
1522`SCM_ARRAYP', `SCM_ARRAY_NDIM', `SCM_ARRAY_CONTP', `SCM_ARRAY_MEM',
1523`SCM_ARRAY_V', `SCM_ARRAY_BASE', and `SCM_ARRAY_DIMS'.
1524
1525** Remove unused snarf macros
1526
1527`SCM_DEFINE1', `SCM_PRIMITIVE_GENERIC_1', `SCM_PROC1, and `SCM_GPROC1'
1528are no more. Use SCM_DEFINE or SCM_PRIMITIVE_GENERIC instead.
1529
cf8ec359
AW
1530** New functions: `scm_call_n', `scm_c_run_hookn'
1531
1532`scm_call_n' applies to apply a function to an array of arguments.
1533`scm_c_run_hookn' runs a hook with an array of arguments.
1534
4a457691
AW
1535** Some SMOB types changed to have static typecodes
1536
1537Fluids, dynamic states, and hash tables used to be SMOB objects, but now
1538they have statically allocated tc7 typecodes.
1539
1540** Preparations for changing SMOB representation
1541
1542If things go right, we'll be changing the SMOB representation soon. To
1543that end, we did a lot of cleanups to calls to e.g. SCM_CELL_WORD_2(x) when
1544the code meant SCM_SMOB_DATA_2(x); user code will need similar changes
1545in the future. Code accessing SMOBs using SCM_CELL macros was never
1546correct, but until now things still worked. Users should be aware of
1547such changes.
fa1804e9 1548
cf8ec359
AW
1549** Changed invocation mechanics of applicable SMOBs
1550
1551Guile's old evaluator used to have special cases for applying SMOB
1552objects. Now, with the VM, when Guile sees a SMOB, it looks up a VM
1553trampoline procedure for it, and use the normal mechanics to apply the
1554trampoline. This simplifies procedure application in the normal,
1555non-SMOB case.
1556
1557The upshot is that the mechanics used to apply a SMOB are different from
15581.8. Descriptors no longer have `apply_0', `apply_1', `apply_2', and
1559`apply_3' functions, and the macros SCM_SMOB_APPLY_0 and friends are now
1560deprecated. Just use the scm_call_0 family of procedures.
1561
96b73e84 1562** New C function: scm_module_public_interface
a4f1c77d 1563
96b73e84 1564This procedure corresponds to Scheme's `module-public-interface'.
24d6fae8 1565
4a457691
AW
1566** Undeprecate `scm_the_root_module ()'
1567
1568It's useful to be able to get the root module from C without doing a
1569full module lookup.
1570
e614d375
AW
1571** Inline vector allocation
1572
1573Instead of having vectors point out into the heap for their data, their
1574data is now allocated inline to the vector object itself. The same is
1575true for bytevectors, by default, though there is an indirection
1576available which should allow for making a bytevector from an existing
1577memory region.
1578
4a457691
AW
1579** New struct constructors that don't involve making lists
1580
1581`scm_c_make_struct' and `scm_c_make_structv' are new varargs and array
1582constructors, respectively, for structs. You might find them useful.
1583
1584** Stack refactor
1585
1586In Guile 1.8, there were debugging frames on the C stack. Now there is
1587no more need to explicitly mark the stack in this way, because Guile has
1588a VM stack that it knows how to walk, which simplifies the C API
1589considerably. See the ChangeLog for details; the relevant interface is
1590in libguile/stacks.h. The Scheme API has not been changed significantly.
1591
e614d375
AW
1592** Removal of Guile's primitive object system.
1593
1594There were a number of pieces in `objects.[ch]' that tried to be a
1595minimal object system, but were never documented, and were quickly
1596obseleted by GOOPS' merge into Guile proper. So `scm_make_class_object',
1597`scm_make_subclass_object', `scm_metaclass_standard', and like symbols
1598from objects.h are no more. In the very unlikely case in which these
1599were useful to you, we urge you to contact guile-devel.
1600
1601** No future.
1602
1603Actually the future is still in the state that it was, is, and ever
1604shall be, Amen, except that `futures.c' and `futures.h' are no longer a
1605part of it. These files were experimental, never compiled, and would be
1606better implemented in Scheme anyway. In the future, that is.
1607
4a457691
AW
1608** Deprecate trampolines
1609
1610There used to be C functions `scm_trampoline_0', `scm_trampoline_1', and
1611so on. The point was to do some precomputation on the type of the
1612procedure, then return a specialized "call" procedure. However this
1613optimization wasn't actually an optimization, so it is now deprecated.
1614Just use `scm_call_0', etc instead.
1615
18e90860
AW
1616** Deprecated `scm_badargsp'
1617
1618This function is unused in Guile, but was part of its API.
1619
5bb408cc
AW
1620** Better support for Lisp `nil'.
1621
1622The bit representation of `nil' has been tweaked so that it is now very
1623efficient to check e.g. if a value is equal to Scheme's end-of-list or
1624Lisp's nil. Additionally there are a heap of new, specific predicates
b390b008 1625like scm_is_null_or_nil.
5bb408cc 1626
139fa149
AW
1627** Better integration of Lisp `nil'.
1628
1629`scm_is_boolean', `scm_is_false', and `scm_is_null' all return true now
1630for Lisp's `nil'. This shouldn't affect any Scheme code at this point,
1631but when we start to integrate more with Emacs, it is possible that we
1632break code that assumes that, for example, `(not x)' implies that `x' is
1633`eq?' to `#f'. This is not a common assumption. Refactoring affected
1634code to rely on properties instead of identities will improve code
1635correctness. See "Nil" in the manual, for more details.
1636
e614d375
AW
1637** Support for static allocation of strings, symbols, and subrs.
1638
1639Calls to snarfing CPP macros like SCM_DEFINE macro will now allocate
1640much of their associated data as static variables, reducing Guile's
1641memory footprint.
1642
93617170
LC
1643** `scm_stat' has an additional argument, `exception_on_error'
1644** `scm_primitive_load_path' has an additional argument `exception_on_not_found'
24d6fae8 1645
f1ce9199
LC
1646** `scm_set_port_seek' and `scm_set_port_truncate' use the `scm_t_off' type
1647
1648Previously they would use the `off_t' type, which is fragile since its
1649definition depends on the application's value for `_FILE_OFFSET_BITS'.
1650
ba4c43dc
LC
1651** The `long_long' C type, deprecated in 1.8, has been removed
1652
86d88a22
AW
1653** Removed deprecated uniform array procedures: scm_make_uve,
1654 scm_array_prototype, scm_list_to_uniform_array,
1655 scm_dimensions_to_uniform_array, scm_make_ra, scm_shap2ra, scm_cvref,
1656 scm_ra_set_contp, scm_aind, scm_raprin1
1657
1658These functions have been deprecated since early 2005.
1659
a4f1c77d 1660* Changes to the distribution
6caac03c 1661
53befeb7
NJ
1662** Guile's license is now LGPLv3+
1663
1664In other words the GNU Lesser General Public License, version 3 or
1665later (at the discretion of each person that chooses to redistribute
1666part of Guile).
1667
56664c08
AW
1668** GOOPS documentation folded into Guile reference manual
1669
1670GOOPS, Guile's object system, used to be documented in separate manuals.
1671This content is now included in Guile's manual directly.
1672
96b73e84 1673** `guile-config' will be deprecated in favor of `pkg-config'
8a9faebc 1674
96b73e84 1675`guile-config' has been rewritten to get its information from
93617170 1676`pkg-config', so this should be a transparent change. Note however that
96b73e84
AW
1677guile.m4 has yet to be modified to call pkg-config instead of
1678guile-config.
2e77f720 1679
54dd0ca5
LC
1680** Guile now provides `guile-2.0.pc' instead of `guile-1.8.pc'
1681
1682Programs that use `pkg-config' to find Guile or one of its Autoconf
1683macros should now require `guile-2.0' instead of `guile-1.8'.
1684
96b73e84 1685** New installation directory: $(pkglibdir)/1.9/ccache
62560650 1686
96b73e84
AW
1687If $(libdir) is /usr/lib, for example, Guile will install its .go files
1688to /usr/lib/guile/1.9/ccache. These files are architecture-specific.
89bc270d 1689
b0abbaa7
AW
1690** Parallel installability fixes
1691
1692Guile now installs its header files to a effective-version-specific
1693directory, and includes the effective version (e.g. 2.0) in the library
1694name (e.g. libguile-2.0.so).
1695
1696This change should be transparent to users, who should detect Guile via
1697the guile.m4 macro, or the guile-2.0.pc pkg-config file. It will allow
1698parallel installs for multiple versions of Guile development
1699environments.
1700
b0217d17
AW
1701** Dynamically loadable extensions may be placed in a Guile-specific path
1702
1703Before, Guile only searched the system library paths for extensions
1704(e.g. /usr/lib), which meant that the names of Guile extensions had to
1705be globally unique. Installing them to a Guile-specific extensions
66ad445d 1706directory is cleaner. Use `pkg-config --variable=extensiondir
b0217d17
AW
1707guile-2.0' to get the location of the extensions directory.
1708
7b96f3dd
LC
1709** New dependency: libgc
1710
1711See http://www.hpl.hp.com/personal/Hans_Boehm/gc/, for more information.
1712
1713** New dependency: GNU libunistring
32e29e24 1714
108e18b1 1715See http://www.gnu.org/software/libunistring/, for more information. Our
7b96f3dd 1716Unicode support uses routines from libunistring.
32e29e24 1717
dbd9532e
LC
1718** New dependency: libffi
1719
1720See http://sourceware.org/libffi/, for more information.
1721
a4f1c77d 1722
dc686d7b 1723\f
9957b1c7
LC
1724Changes in 1.8.8 (since 1.8.7)
1725
1726* Bugs fixed
1727
1728** Fix possible buffer overruns when parsing numbers
c15d8e6a 1729** Avoid clash with system setjmp/longjmp on IA64
1ff4da65 1730** Fix `wrong type arg' exceptions with IPv6 addresses
9957b1c7
LC
1731
1732\f
dc686d7b
NJ
1733Changes in 1.8.7 (since 1.8.6)
1734
922d417b
JG
1735* New modules (see the manual for details)
1736
1737** `(srfi srfi-98)', an interface to access environment variables
1738
dc686d7b
NJ
1739* Bugs fixed
1740
f5851b89 1741** Fix compilation with `--disable-deprecated'
dc686d7b 1742** Fix %fast-slot-ref/set!, to avoid possible segmentation fault
cbee5075 1743** Fix MinGW build problem caused by HAVE_STRUCT_TIMESPEC confusion
ab878b0f 1744** Fix build problem when scm_t_timespec is different from struct timespec
95a040cd 1745** Fix build when compiled with -Wundef -Werror
1bcf7993 1746** More build fixes for `alphaev56-dec-osf5.1b' (Tru64)
5374ec9c 1747** Build fixes for `powerpc-ibm-aix5.3.0.0' (AIX 5.3)
5c006c3f
LC
1748** With GCC, always compile with `-mieee' on `alpha*' and `sh*'
1749** Better diagnose broken `(strftime "%z" ...)' in `time.test' (bug #24130)
fc76c08d 1750** Fix parsing of SRFI-88/postfix keywords longer than 128 characters
40f89215 1751** Fix reading of complex numbers where both parts are inexact decimals
d41668fa 1752
ad5f5ada
NJ
1753** Allow @ macro to work with (ice-9 syncase)
1754
1755Previously, use of the @ macro in a module whose code is being
1756transformed by (ice-9 syncase) would cause an "Invalid syntax" error.
1757Now it works as you would expect (giving the value of the specified
1758module binding).
1759
05588a1a
LC
1760** Have `scm_take_locale_symbol ()' return an interned symbol (bug #25865)
1761
d41668fa 1762\f
8c40b75d
LC
1763Changes in 1.8.6 (since 1.8.5)
1764
071bb6a8
LC
1765* New features (see the manual for details)
1766
1767** New convenience function `scm_c_symbol_length ()'
1768
091baf9e
NJ
1769** Single stepping through code from Emacs
1770
1771When you use GDS to evaluate Scheme code from Emacs, you can now use
1772`C-u' to indicate that you want to single step through that code. See
1773`Evaluating Scheme Code' in the manual for more details.
1774
9e4db0ef
LC
1775** New "guile(1)" man page!
1776
242ebeaf
LC
1777* Changes to the distribution
1778
1779** Automake's `AM_MAINTAINER_MODE' is no longer used
1780
1781Thus, the `--enable-maintainer-mode' configure option is no longer
1782available: Guile is now always configured in "maintainer mode".
1783
e0063477
LC
1784** `ChangeLog' files are no longer updated
1785
1786Instead, changes are detailed in the version control system's logs. See
1787the top-level `ChangeLog' files for details.
1788
1789
8c40b75d
LC
1790* Bugs fixed
1791
fd2b17b9 1792** `symbol->string' now returns a read-only string, as per R5RS
c6333102 1793** Fix incorrect handling of the FLAGS argument of `fold-matches'
589d9eb8 1794** `guile-config link' now prints `-L$libdir' before `-lguile'
4a1db3a9 1795** Fix memory corruption involving GOOPS' `class-redefinition'
191e7165 1796** Fix possible deadlock in `mutex-lock'
95c6523b 1797** Fix build issue on Tru64 and ia64-hp-hpux11.23 (`SCM_UNPACK' macro)
4696a666 1798** Fix build issue on mips, mipsel, powerpc and ia64 (stack direction)
450be18d 1799** Fix build issue on hppa2.0w-hp-hpux11.11 (`dirent64' and `readdir64_r')
88cefbc7 1800** Fix build issue on i386-unknown-freebsd7.0 ("break strict-aliasing rules")
76dae881 1801** Fix misleading output from `(help rationalize)'
5ea8e76e 1802** Fix build failure on Debian hppa architecture (bad stack growth detection)
1dd79792 1803** Fix `gcd' when called with a single, negative argument.
d8b6e191 1804** Fix `Stack overflow' errors seen when building on some platforms
ccf1ca4a
LC
1805** Fix bug when `scm_with_guile ()' was called several times from the
1806 same thread
76350432
LC
1807** The handler of SRFI-34 `with-exception-handler' is now invoked in the
1808 dynamic environment of the call to `raise'
cb823e63 1809** Fix potential deadlock in `make-struct'
691343ea 1810** Fix compilation problem with libltdl from Libtool 2.2.x
3ae3166b 1811** Fix sloppy bound checking in `string-{ref,set!}' with the empty string
6eadcdab 1812
8c40b75d 1813\f
5305df84
LC
1814Changes in 1.8.5 (since 1.8.4)
1815
4b824aae
LC
1816* Infrastructure changes
1817
1818** Guile repository switched from CVS to Git
1819
1820The new repository can be accessed using
1821"git-clone git://git.sv.gnu.org/guile.git", or can be browsed on-line at
1822http://git.sv.gnu.org/gitweb/?p=guile.git . See `README' for details.
1823
92826dd0
LC
1824** Add support for `pkg-config'
1825
1826See "Autoconf Support" in the manual for details.
1827
189681f5
LC
1828* New modules (see the manual for details)
1829
1830** `(srfi srfi-88)'
1831
ef4cbc08
LC
1832* New features (see the manual for details)
1833
1834** New `postfix' read option, for SRFI-88 keyword syntax
f5c2af4b 1835** Some I/O primitives have been inlined, which improves I/O performance
b20ef3a6 1836** New object-based traps infrastructure
ef4cbc08 1837
b20ef3a6
NJ
1838This is a GOOPS-based infrastructure that builds on Guile's low-level
1839evaluator trap calls and facilitates the development of debugging
1840features like single-stepping, breakpoints, tracing and profiling.
1841See the `Traps' node of the manual for details.
1842
1843** New support for working on Guile code from within Emacs
1844
1845Guile now incorporates the `GDS' library (previously distributed
1846separately) for working on Guile code from within Emacs. See the
1847`Using Guile In Emacs' node of the manual for details.
1848
5305df84
LC
1849* Bugs fixed
1850
e27d2495
LC
1851** `scm_add_slot ()' no longer segfaults (fixes bug #22369)
1852** Fixed `(ice-9 match)' for patterns like `((_ ...) ...)'
1853
1854Previously, expressions like `(match '((foo) (bar)) (((_ ...) ...) #t))'
1855would trigger an unbound variable error for `match:andmap'.
1856
62c5382b
LC
1857** `(oop goops describe)' now properly provides the `describe' feature
1858** Fixed `args-fold' from `(srfi srfi-37)'
1859
1860Previously, parsing short option names of argument-less options would
1861lead to a stack overflow.
1862
816e3edf 1863** `(srfi srfi-35)' is now visible through `cond-expand'
61b6542a 1864** Fixed type-checking for the second argument of `eval'
0fb11ae4 1865** Fixed type-checking for SRFI-1 `partition'
f1c212b1
LC
1866** Fixed `struct-ref' and `struct-set!' on "light structs"
1867** Honor struct field access rights in GOOPS
be10cba8 1868** Changed the storage strategy of source properties, which fixes a deadlock
979eade6 1869** Allow compilation of Guile-using programs in C99 mode with GCC 4.3 and later
bfb64eb4 1870** Fixed build issue for GNU/Linux on IA64
fa80e280 1871** Fixed build issues on NetBSD 1.6
a2c25234 1872** Fixed build issue on Solaris 2.10 x86_64
3f520967 1873** Fixed build issue with DEC/Compaq/HP's compiler
c2ad98ad
LC
1874** Fixed `scm_from_complex_double' build issue on FreeBSD
1875** Fixed `alloca' build issue on FreeBSD 6
a7286720 1876** Removed use of non-portable makefile constructs
535b3592 1877** Fixed shadowing of libc's <random.h> on Tru64, which broke compilation
eedcb08a 1878** Make sure all tests honor `$TMPDIR'
5305df84
LC
1879
1880\f
d41668fa
LC
1881Changes in 1.8.4 (since 1.8.3)
1882
1883* Bugs fixed
1884
1885** CR (ASCII 0x0d) is (again) recognized as a token delimiter by the reader
6e14de7d
NJ
1886** Fixed a segmentation fault which occurred when displaying the
1887backtrace of a stack with a promise object (made by `delay') in it.
7d1fc872 1888** Make `accept' leave guile mode while blocking
693758d5 1889** `scm_c_read ()' and `scm_c_write ()' now type-check their port argument
378cc645 1890** Fixed a build problem on AIX (use of func_data identifier)
15bd90ea
NJ
1891** Fixed a segmentation fault which occurred when hashx-ref or hashx-set! was
1892called with an associator proc that returns neither a pair nor #f.
3ac8359a 1893** Secondary threads now always return a valid module for (current-module).
d05bcb2e
NJ
1894** Avoid MacOS build problems caused by incorrect combination of "64"
1895system and library calls.
9a6fac59 1896** `guile-snarf' now honors `$TMPDIR'
25a640ca 1897** `guile-config compile' now reports CPPFLAGS used at compile-time
7f74cf9a 1898** Fixed build with Sun Studio (Solaris 9)
4a19ed04
NJ
1899** Fixed wrong-type-arg errors when creating zero length SRFI-4
1900uniform vectors on AIX.
86a597f8 1901** Fixed a deadlock that occurs upon GC with multiple threads.
4b26c03e 1902** Fixed compile problem with GCC on Solaris and AIX (use of _Complex_I)
d4a00708 1903** Fixed autotool-derived build problems on AIX 6.1.
9a6fac59 1904** Fixed NetBSD/alpha support
b226295a 1905** Fixed MacOS build problem caused by use of rl_get_keymap(_name)
7d1fc872
LC
1906
1907* New modules (see the manual for details)
1908
1909** `(srfi srfi-69)'
d41668fa 1910
b226295a
NJ
1911* Documentation fixes and improvements
1912
1913** Removed premature breakpoint documentation
1914
1915The features described are not available in the series of 1.8.x
1916releases, so the documentation was misleading and has been removed.
1917
1918** More about Guile's default *random-state* variable
1919
1920** GOOPS: more about how to use `next-method'
1921
d3cf93bc
NJ
1922* Changes to the distribution
1923
1924** Corrected a few files that referred incorrectly to the old GPL + special exception licence
1925
1926In fact Guile since 1.8.0 has been licensed with the GNU Lesser
1927General Public License, and the few incorrect files have now been
1928fixed to agree with the rest of the Guile distribution.
1929
5e42b8e7
NJ
1930** Removed unnecessary extra copies of COPYING*
1931
1932The distribution now contains a single COPYING.LESSER at its top level.
1933
a4f1c77d 1934\f
d4c38221
LC
1935Changes in 1.8.3 (since 1.8.2)
1936
1937* New modules (see the manual for details)
1938
f50ca8da 1939** `(srfi srfi-35)'
d4c38221
LC
1940** `(srfi srfi-37)'
1941
e08f3f7a
LC
1942* Bugs fixed
1943
dc061a74 1944** The `(ice-9 slib)' module now works as expected
e08f3f7a 1945** Expressions like "(set! 'x #t)" no longer yield a crash
d7c0c26d 1946** Warnings about duplicate bindings now go to stderr
1ac5fb45 1947** A memory leak in `make-socket-address' was fixed
f43f3620 1948** Alignment issues (e.g., on SPARC) in network routines were fixed
29776e85 1949** A threading issue that showed up at least on NetBSD was fixed
66302618 1950** Build problems on Solaris and IRIX fixed
e08f3f7a 1951
1fdd8ffa
LC
1952* Implementation improvements
1953
7ff6c169 1954** The reader is now faster, which reduces startup time
1fdd8ffa
LC
1955** Procedures returned by `record-accessor' and `record-modifier' are faster
1956
d4c38221 1957\f
45c0ff10
KR
1958Changes in 1.8.2 (since 1.8.1):
1959
1960* New procedures (see the manual for details)
1961
1962** set-program-arguments
b3aa4626 1963** make-vtable
45c0ff10 1964
9320e933
LC
1965* Incompatible changes
1966
1967** The body of a top-level `define' no longer sees the binding being created
1968
1969In a top-level `define', the binding being created is no longer visible
1970from the `define' body. This breaks code like
1971"(define foo (begin (set! foo 1) (+ foo 1)))", where `foo' is now
1972unbound in the body. However, such code was not R5RS-compliant anyway,
1973per Section 5.2.1.
1974
45c0ff10
KR
1975* Bugs fixed
1976
1977** Fractions were not `equal?' if stored in unreduced form.
1978(A subtle problem, since printing a value reduced it, making it work.)
1979** srfi-60 `copy-bit' failed on 64-bit systems
1980** "guile --use-srfi" option at the REPL can replace core functions
1981(Programs run with that option were ok, but in the interactive REPL
1982the core bindings got priority, preventing SRFI replacements or
1983extensions.)
1984** `regexp-exec' doesn't abort() on #\nul in the input or bad flags arg
df449722 1985** `kill' on mingw throws an error for a PID other than oneself
45c0ff10
KR
1986** Procedure names are attached to procedure-with-setters
1987** Array read syntax works with negative lower bound
1988** `array-in-bounds?' fix if an array has different lower bounds on each index
1989** `*' returns exact 0 for "(* inexact 0)"
1990This follows what it always did for "(* 0 inexact)".
c122500a 1991** SRFI-19: Value returned by `(current-time time-process)' was incorrect
0867f7ba 1992** SRFI-19: `date->julian-day' did not account for timezone offset
a1ef7406 1993** `ttyname' no longer crashes when passed a non-tty argument
27782696 1994** `inet-ntop' no longer crashes on SPARC when passed an `AF_INET' address
0867f7ba 1995** Small memory leaks have been fixed in `make-fluid' and `add-history'
b1f57ea4 1996** GOOPS: Fixed a bug in `method-more-specific?'
45c0ff10 1997** Build problems on Solaris fixed
df449722
LC
1998** Build problems on HP-UX IA64 fixed
1999** Build problems on MinGW fixed
45c0ff10
KR
2000
2001\f
a4f1c77d
KR
2002Changes in 1.8.1 (since 1.8.0):
2003
8ab3d8a0 2004* LFS functions are now used to access 64-bit files on 32-bit systems.
a4f1c77d 2005
8ab3d8a0 2006* New procedures (see the manual for details)
4f416616 2007
8ab3d8a0
KR
2008** primitive-_exit - [Scheme] the-root-module
2009** scm_primitive__exit - [C]
2010** make-completion-function - [Scheme] (ice-9 readline)
2011** scm_c_locale_stringn_to_number - [C]
2012** scm_srfi1_append_reverse [C]
2013** scm_srfi1_append_reverse_x [C]
2014** scm_log - [C]
2015** scm_log10 - [C]
2016** scm_exp - [C]
2017** scm_sqrt - [C]
2018
2019* Bugs fixed
2020
2021** Build problems have been fixed on MacOS, SunOS, and QNX.
af4f8612 2022
b3aa4626
KR
2023** `strftime' fix sign of %z timezone offset.
2024
534cd148 2025** A one-dimensional array can now be 'equal?' to a vector.
8ab3d8a0 2026
ad97642e 2027** Structures, records, and SRFI-9 records can now be compared with `equal?'.
af4f8612 2028
8ab3d8a0
KR
2029** SRFI-14 standard char sets are recomputed upon a successful `setlocale'.
2030
2031** `record-accessor' and `record-modifier' now have strict type checks.
2032
2033Record accessor and modifier procedures now throw an error if the
2034record type of the record they're given is not the type expected.
2035(Previously accessors returned #f and modifiers silently did nothing).
2036
2037** It is now OK to use both autoload and use-modules on a given module.
2038
2039** `apply' checks the number of arguments more carefully on "0 or 1" funcs.
2040
2041Previously there was no checking on primatives like make-vector that
2042accept "one or two" arguments. Now there is.
2043
2044** The srfi-1 assoc function now calls its equality predicate properly.
2045
2046Previously srfi-1 assoc would call the equality predicate with the key
2047last. According to the SRFI, the key should be first.
2048
2049** A bug in n-par-for-each and n-for-each-par-map has been fixed.
2050
2051** The array-set! procedure no longer segfaults when given a bit vector.
2052
2053** Bugs in make-shared-array have been fixed.
2054
2055** string<? and friends now follow char<? etc order on 8-bit chars.
2056
2057** The format procedure now handles inf and nan values for ~f correctly.
2058
2059** exact->inexact should no longer overflow when given certain large fractions.
2060
2061** srfi-9 accessor and modifier procedures now have strict record type checks.
a4f1c77d 2062
8ab3d8a0 2063This matches the srfi-9 specification.
a4f1c77d 2064
8ab3d8a0 2065** (ice-9 ftw) procedures won't ignore different files with same inode number.
a4f1c77d 2066
8ab3d8a0
KR
2067Previously the (ice-9 ftw) procedures would ignore any file that had
2068the same inode number as a file they had already seen, even if that
2069file was on a different device.
4f416616
KR
2070
2071\f
8ab3d8a0 2072Changes in 1.8.0 (changes since the 1.6.x series):
ee0c7345 2073
4e250ded
MV
2074* Changes to the distribution
2075
eff2965e
MV
2076** Guile is now licensed with the GNU Lesser General Public License.
2077
77e51fd6
MV
2078** The manual is now licensed with the GNU Free Documentation License.
2079
e2d0a649
RB
2080** Guile now requires GNU MP (http://swox.com/gmp).
2081
2082Guile now uses the GNU MP library for arbitrary precision arithmetic.
e2d0a649 2083
5ebbe4ef
RB
2084** Guile now has separate private and public configuration headers.
2085
b0d10ba6
MV
2086That is, things like HAVE_STRING_H no longer leak from Guile's
2087headers.
5ebbe4ef
RB
2088
2089** Guile now provides and uses an "effective" version number.
b2cbe8d8
RB
2090
2091Guile now provides scm_effective_version and effective-version
2092functions which return the "effective" version number. This is just
2093the normal full version string without the final micro-version number,
a4f1c77d 2094so the current effective-version is "1.8". The effective version
b2cbe8d8
RB
2095should remain unchanged during a stable series, and should be used for
2096items like the versioned share directory name
a4f1c77d 2097i.e. /usr/share/guile/1.8.
b2cbe8d8
RB
2098
2099Providing an unchanging version number during a stable release for
2100things like the versioned share directory can be particularly
2101important for Guile "add-on" packages, since it provides a directory
2102that they can install to that won't be changed out from under them
2103with each micro release during a stable series.
2104
8d54e73a 2105** Thread implementation has changed.
f0b4d944
MV
2106
2107When you configure "--with-threads=null", you will get the usual
2108threading API (call-with-new-thread, make-mutex, etc), but you can't
429d88d4
MV
2109actually create new threads. Also, "--with-threads=no" is now
2110equivalent to "--with-threads=null". This means that the thread API
2111is always present, although you might not be able to create new
2112threads.
f0b4d944 2113
8d54e73a
MV
2114When you configure "--with-threads=pthreads" or "--with-threads=yes",
2115you will get threads that are implemented with the portable POSIX
2116threads. These threads can run concurrently (unlike the previous
2117"coop" thread implementation), but need to cooperate for things like
a558cc63 2118the GC.
f0b4d944 2119
8d54e73a
MV
2120The default is "pthreads", unless your platform doesn't have pthreads,
2121in which case "null" threads are used.
2902a459 2122
a6d75e53
MV
2123See the manual for details, nodes "Initialization", "Multi-Threading",
2124"Blocking", and others.
a558cc63 2125
f74bdbd3
MV
2126** There is the new notion of 'discouraged' features.
2127
2128This is a milder form of deprecation.
2129
2130Things that are discouraged should not be used in new code, but it is
2131OK to leave them in old code for now. When a discouraged feature is
2132used, no warning message is printed like there is for 'deprecated'
2133features. Also, things that are merely discouraged are nevertheless
2134implemented efficiently, while deprecated features can be very slow.
2135
2136You can omit discouraged features from libguile by configuring it with
2137the '--disable-discouraged' option.
2138
2139** Deprecation warnings can be controlled at run-time.
2140
2141(debug-enable 'warn-deprecated) switches them on and (debug-disable
2142'warn-deprecated) switches them off.
2143
0f24e75b 2144** Support for SRFI 61, extended cond syntax for multiple values has
a81d0de1
MV
2145 been added.
2146
2147This SRFI is always available.
2148
f7fb2f39 2149** Support for require-extension, SRFI-55, has been added.
9a5fc8c2 2150
f7fb2f39
RB
2151The SRFI-55 special form `require-extension' has been added. It is
2152available at startup, and provides a portable way to load Scheme
2153extensions. SRFI-55 only requires support for one type of extension,
2154"srfi"; so a set of SRFIs may be loaded via (require-extension (srfi 1
215513 14)).
2156
2157** New module (srfi srfi-26) provides support for `cut' and `cute'.
2158
2159The (srfi srfi-26) module is an implementation of SRFI-26 which
2160provides the `cut' and `cute' syntax. These may be used to specialize
2161parameters without currying.
9a5fc8c2 2162
f5d54eb7
RB
2163** New module (srfi srfi-31)
2164
2165This is an implementation of SRFI-31 which provides a special form
2166`rec' for recursive evaluation.
2167
7b1574ed
MV
2168** The modules (srfi srfi-13), (srfi srfi-14) and (srfi srfi-4) have
2169 been merged with the core, making their functionality always
2170 available.
c5080b51 2171
ce7c0293
MV
2172The modules are still available, tho, and you could use them together
2173with a renaming import, for example.
c5080b51 2174
6191ccec 2175** Guile no longer includes its own version of libltdl.
4e250ded 2176
6191ccec 2177The official version is good enough now.
4e250ded 2178
ae7ded56
MV
2179** The --enable-htmldoc option has been removed from 'configure'.
2180
2181Support for translating the documentation into HTML is now always
2182provided. Use 'make html'.
2183
0f24e75b
MV
2184** New module (ice-9 serialize):
2185
2186(serialize FORM1 ...) and (parallelize FORM1 ...) are useful when you
2187don't trust the thread safety of most of your program, but where you
2188have some section(s) of code which you consider can run in parallel to
2189other sections. See ice-9/serialize.scm for more information.
2190
c34e5780
MV
2191** The configure option '--disable-arrays' has been removed.
2192
2193Support for arrays and uniform numeric arrays is now always included
2194in Guile.
2195
328dc9a3 2196* Changes to the stand-alone interpreter
f12ef3fd 2197
3ece39d6
MV
2198** New command line option `-L'.
2199
2200This option adds a directory to the front of the load path.
2201
f12ef3fd
MV
2202** New command line option `--no-debug'.
2203
2204Specifying `--no-debug' on the command line will keep the debugging
2205evaluator turned off, even for interactive sessions.
2206
2207** User-init file ~/.guile is now loaded with the debugging evaluator.
2208
2209Previously, the normal evaluator would have been used. Using the
2210debugging evaluator gives better error messages.
2211
aff7e166
MV
2212** The '-e' option now 'read's its argument.
2213
2214This is to allow the new '(@ MODULE-NAME VARIABLE-NAME)' construct to
2215be used with '-e'. For example, you can now write a script like
2216
2217 #! /bin/sh
2218 exec guile -e '(@ (demo) main)' -s "$0" "$@"
2219 !#
2220
2221 (define-module (demo)
2222 :export (main))
2223
2224 (define (main args)
2225 (format #t "Demo: ~a~%" args))
2226
2227
f12ef3fd
MV
2228* Changes to Scheme functions and syntax
2229
930888e8
MV
2230** Guardians have changed back to their original semantics
2231
2232Guardians now behave like described in the paper by Dybvig et al. In
2233particular, they no longer make guarantees about the order in which
2234they return objects, and they can no longer be greedy.
2235
2236They no longer drop cyclic data structures.
2237
2238The C function scm_make_guardian has been changed incompatibly and no
2239longer takes the 'greedy_p' argument.
2240
87bdbdbc
MV
2241** New function hashx-remove!
2242
2243This function completes the set of 'hashx' functions.
2244
a558cc63
MV
2245** The concept of dynamic roots has been factored into continuation
2246 barriers and dynamic states.
2247
2248Each thread has a current dynamic state that carries the values of the
2249fluids. You can create and copy dynamic states and use them as the
2250second argument for 'eval'. See "Fluids and Dynamic States" in the
2251manual.
2252
2253To restrict the influence that captured continuations can have on the
2254control flow, you can errect continuation barriers. See "Continuation
2255Barriers" in the manual.
2256
2257The function call-with-dynamic-root now essentially temporarily
2258installs a new dynamic state and errects a continuation barrier.
2259
a2b6a0e7
MV
2260** The default load path no longer includes "." at the end.
2261
2262Automatically loading modules from the current directory should not
2263happen by default. If you want to allow it in a more controlled
2264manner, set the environment variable GUILE_LOAD_PATH or the Scheme
2265variable %load-path.
2266
7b1574ed
MV
2267** The uniform vector and array support has been overhauled.
2268
2269It now complies with SRFI-4 and the weird prototype based uniform
2270array creation has been deprecated. See the manual for more details.
2271
d233b123
MV
2272Some non-compatible changes have been made:
2273 - characters can no longer be stored into byte arrays.
0f24e75b
MV
2274 - strings and bit vectors are no longer considered to be uniform numeric
2275 vectors.
3167d5e4
MV
2276 - array-rank throws an error for non-arrays instead of returning zero.
2277 - array-ref does no longer accept non-arrays when no indices are given.
d233b123
MV
2278
2279There is the new notion of 'generalized vectors' and corresponding
2280procedures like 'generalized-vector-ref'. Generalized vectors include
c34e5780 2281strings, bitvectors, ordinary vectors, and uniform numeric vectors.
d233b123 2282
a558cc63
MV
2283Arrays use generalized vectors as their storage, so that you still
2284have arrays of characters, bits, etc. However, uniform-array-read!
2285and uniform-array-write can no longer read/write strings and
2286bitvectors.
bb9f50ae 2287
ce7c0293
MV
2288** There is now support for copy-on-write substrings, mutation-sharing
2289 substrings and read-only strings.
3ff9283d 2290
ce7c0293
MV
2291Three new procedures are related to this: substring/shared,
2292substring/copy, and substring/read-only. See the manual for more
2293information.
2294
6a1d27ea
MV
2295** Backtraces will now highlight the value that caused the error.
2296
2297By default, these values are enclosed in "{...}", such as in this
2298example:
2299
2300 guile> (car 'a)
2301
2302 Backtrace:
2303 In current input:
2304 1: 0* [car {a}]
2305
2306 <unnamed port>:1:1: In procedure car in expression (car (quote a)):
2307 <unnamed port>:1:1: Wrong type (expecting pair): a
2308 ABORT: (wrong-type-arg)
2309
2310The prefix and suffix used for highlighting can be set via the two new
2311printer options 'highlight-prefix' and 'highlight-suffix'. For
2312example, putting this into ~/.guile will output the bad value in bold
2313on an ANSI terminal:
2314
2315 (print-set! highlight-prefix "\x1b[1m")
2316 (print-set! highlight-suffix "\x1b[22m")
2317
2318
8dbafacd
MV
2319** 'gettext' support for internationalization has been added.
2320
2321See the manual for details.
2322
aff7e166
MV
2323** New syntax '@' and '@@':
2324
2325You can now directly refer to variables exported from a module by
2326writing
2327
2328 (@ MODULE-NAME VARIABLE-NAME)
2329
2330For example (@ (ice-9 pretty-print) pretty-print) will directly access
2331the pretty-print variable exported from the (ice-9 pretty-print)
2332module. You don't need to 'use' that module first. You can also use
b0d10ba6 2333'@' as a target of 'set!', as in (set! (@ mod var) val).
aff7e166
MV
2334
2335The related syntax (@@ MODULE-NAME VARIABLE-NAME) works just like '@',
2336but it can also access variables that have not been exported. It is
2337intended only for kluges and temporary fixes and for debugging, not
2338for ordinary code.
2339
aef0bdb4
MV
2340** Keyword syntax has been made more disciplined.
2341
2342Previously, the name of a keyword was read as a 'token' but printed as
2343a symbol. Now, it is read as a general Scheme datum which must be a
2344symbol.
2345
2346Previously:
2347
2348 guile> #:12
2349 #:#{12}#
2350 guile> #:#{12}#
2351 #:#{\#{12}\#}#
2352 guile> #:(a b c)
2353 #:#{}#
2354 ERROR: In expression (a b c):
2355 Unbound variable: a
2356 guile> #: foo
2357 #:#{}#
2358 ERROR: Unbound variable: foo
2359
2360Now:
2361
2362 guile> #:12
2363 ERROR: Wrong type (expecting symbol): 12
2364 guile> #:#{12}#
2365 #:#{12}#
2366 guile> #:(a b c)
2367 ERROR: Wrong type (expecting symbol): (a b c)
2368 guile> #: foo
2369 #:foo
2370
227eafdb
MV
2371** The printing of symbols that might look like keywords can be
2372 controlled.
2373
2374The new printer option 'quote-keywordish-symbols' controls how symbols
2375are printed that have a colon as their first or last character. The
2376default now is to only quote a symbol with #{...}# when the read
2377option 'keywords' is not '#f'. Thus:
2378
2379 guile> (define foo (string->symbol ":foo"))
2380 guile> (read-set! keywords #f)
2381 guile> foo
2382 :foo
2383 guile> (read-set! keywords 'prefix)
2384 guile> foo
2385 #{:foo}#
2386 guile> (print-set! quote-keywordish-symbols #f)
2387 guile> foo
2388 :foo
2389
1363e3e7
KR
2390** 'while' now provides 'break' and 'continue'
2391
2392break and continue were previously bound in a while loop, but not
2393documented, and continue didn't quite work properly. The undocumented
2394parameter to break which gave a return value for the while has been
2395dropped.
2396
570b5b14
MV
2397** 'call-with-current-continuation' is now also available under the name
2398 'call/cc'.
2399
b0d10ba6 2400** The module system now checks for duplicate bindings.
7b07e5ef 2401
fe6ee052
MD
2402The module system now can check for name conflicts among imported
2403bindings.
f595ccfe 2404
b0d10ba6 2405The behavior can be controlled by specifying one or more 'duplicates'
fe6ee052
MD
2406handlers. For example, to make Guile return an error for every name
2407collision, write:
7b07e5ef
MD
2408
2409(define-module (foo)
2410 :use-module (bar)
2411 :use-module (baz)
fe6ee052 2412 :duplicates check)
f595ccfe 2413
fe6ee052
MD
2414The new default behavior of the module system when a name collision
2415has been detected is to
2416
2417 1. Give priority to bindings marked as a replacement.
6496a663 2418 2. Issue a warning (different warning if overriding core binding).
fe6ee052
MD
2419 3. Give priority to the last encountered binding (this corresponds to
2420 the old behavior).
2421
2422If you want the old behavior back without replacements or warnings you
2423can add the line:
f595ccfe 2424
70a9dc9c 2425 (default-duplicate-binding-handler 'last)
7b07e5ef 2426
fe6ee052 2427to your .guile init file.
7b07e5ef 2428
f595ccfe
MD
2429** New define-module option: :replace
2430
2431:replace works as :export, but, in addition, marks the binding as a
2432replacement.
2433
2434A typical example is `format' in (ice-9 format) which is a replacement
2435for the core binding `format'.
7b07e5ef 2436
70da0033
MD
2437** Adding prefixes to imported bindings in the module system
2438
2439There is now a new :use-module option :prefix. It can be used to add
2440a prefix to all imported bindings.
2441
2442 (define-module (foo)
2443 :use-module ((bar) :prefix bar:))
2444
2445will import all bindings exported from bar, but rename them by adding
2446the prefix `bar:'.
2447
b0d10ba6
MV
2448** Conflicting generic functions can be automatically merged.
2449
2450When two imported bindings conflict and they are both generic
2451functions, the two functions can now be merged automatically. This is
2452activated with the 'duplicates' handler 'merge-generics'.
2453
b2cbe8d8
RB
2454** New function: effective-version
2455
2456Returns the "effective" version number. This is just the normal full
2457version string without the final micro-version number. See "Changes
2458to the distribution" above.
2459
382053e9 2460** New threading functions: parallel, letpar, par-map, and friends
dbe30084 2461
382053e9
KR
2462These are convenient ways to run calculations in parallel in new
2463threads. See "Parallel forms" in the manual for details.
359aab24 2464
e2d820a1
MV
2465** New function 'try-mutex'.
2466
2467This function will attempt to lock a mutex but will return immediately
0f24e75b 2468instead of blocking and indicate failure.
e2d820a1
MV
2469
2470** Waiting on a condition variable can have a timeout.
2471
0f24e75b 2472The function 'wait-condition-variable' now takes a third, optional
e2d820a1
MV
2473argument that specifies the point in time where the waiting should be
2474aborted.
2475
2476** New function 'broadcast-condition-variable'.
2477
5e405a60
MV
2478** New functions 'all-threads' and 'current-thread'.
2479
2480** Signals and system asyncs work better with threads.
2481
2482The function 'sigaction' now takes a fourth, optional, argument that
2483specifies the thread that the handler should run in. When the
2484argument is omitted, the handler will run in the thread that called
2485'sigaction'.
2486
2487Likewise, 'system-async-mark' takes a second, optional, argument that
2488specifies the thread that the async should run in. When it is
2489omitted, the async will run in the thread that called
2490'system-async-mark'.
2491
2492C code can use the new functions scm_sigaction_for_thread and
2493scm_system_async_mark_for_thread to pass the new thread argument.
2494
a558cc63
MV
2495When a thread blocks on a mutex, a condition variable or is waiting
2496for IO to be possible, it will still execute system asyncs. This can
2497be used to interrupt such a thread by making it execute a 'throw', for
2498example.
2499
5e405a60
MV
2500** The function 'system-async' is deprecated.
2501
2502You can now pass any zero-argument procedure to 'system-async-mark'.
2503The function 'system-async' will just return its argument unchanged
2504now.
2505
acfa1f52
MV
2506** New functions 'call-with-blocked-asyncs' and
2507 'call-with-unblocked-asyncs'
2508
2509The expression (call-with-blocked-asyncs PROC) will call PROC and will
2510block execution of system asyncs for the current thread by one level
2511while PROC runs. Likewise, call-with-unblocked-asyncs will call a
2512procedure and will unblock the execution of system asyncs by one
2513level for the current thread.
2514
2515Only system asyncs are affected by these functions.
2516
2517** The functions 'mask-signals' and 'unmask-signals' are deprecated.
2518
2519Use 'call-with-blocked-asyncs' or 'call-with-unblocked-asyncs'
2520instead. Those functions are easier to use correctly and can be
2521nested.
2522
7b232758
MV
2523** New function 'unsetenv'.
2524
f30482f3
MV
2525** New macro 'define-syntax-public'.
2526
2527It works like 'define-syntax' and also exports the defined macro (but
2528only on top-level).
2529
1ee34062
MV
2530** There is support for Infinity and NaNs.
2531
2532Following PLT Scheme, Guile can now work with infinite numbers, and
2533'not-a-numbers'.
2534
2535There is new syntax for numbers: "+inf.0" (infinity), "-inf.0"
2536(negative infinity), "+nan.0" (not-a-number), and "-nan.0" (same as
2537"+nan.0"). These numbers are inexact and have no exact counterpart.
2538
2539Dividing by an inexact zero returns +inf.0 or -inf.0, depending on the
2540sign of the dividend. The infinities are integers, and they answer #t
2541for both 'even?' and 'odd?'. The +nan.0 value is not an integer and is
2542not '=' to itself, but '+nan.0' is 'eqv?' to itself.
2543
2544For example
2545
2546 (/ 1 0.0)
2547 => +inf.0
2548
2549 (/ 0 0.0)
2550 => +nan.0
2551
2552 (/ 0)
2553 ERROR: Numerical overflow
2554
7b232758
MV
2555Two new predicates 'inf?' and 'nan?' can be used to test for the
2556special values.
2557
ba1b077b
MV
2558** Inexact zero can have a sign.
2559
2560Guile can now distinguish between plus and minus inexact zero, if your
2561platform supports this, too. The two zeros are equal according to
2562'=', but not according to 'eqv?'. For example
2563
2564 (- 0.0)
2565 => -0.0
2566
2567 (= 0.0 (- 0.0))
2568 => #t
2569
2570 (eqv? 0.0 (- 0.0))
2571 => #f
2572
bdf26b60
MV
2573** Guile now has exact rationals.
2574
2575Guile can now represent fractions such as 1/3 exactly. Computing with
2576them is also done exactly, of course:
2577
2578 (* 1/3 3/2)
2579 => 1/2
2580
2581** 'floor', 'ceiling', 'round' and 'truncate' now return exact numbers
2582 for exact arguments.
2583
2584For example: (floor 2) now returns an exact 2 where in the past it
2585returned an inexact 2.0. Likewise, (floor 5/4) returns an exact 1.
2586
2587** inexact->exact no longer returns only integers.
2588
2589Without exact rationals, the closest exact number was always an
2590integer, but now inexact->exact returns the fraction that is exactly
2591equal to a floating point number. For example:
2592
2593 (inexact->exact 1.234)
2594 => 694680242521899/562949953421312
2595
e299cee2 2596When you want the old behavior, use 'round' explicitly:
bdf26b60
MV
2597
2598 (inexact->exact (round 1.234))
2599 => 1
2600
2601** New function 'rationalize'.
2602
2603This function finds a simple fraction that is close to a given real
2604number. For example (and compare with inexact->exact above):
2605
fb16d26e 2606 (rationalize (inexact->exact 1.234) 1/2000)
bdf26b60
MV
2607 => 58/47
2608
fb16d26e
MV
2609Note that, as required by R5RS, rationalize returns only then an exact
2610result when both its arguments are exact.
2611
bdf26b60
MV
2612** 'odd?' and 'even?' work also for inexact integers.
2613
2614Previously, (odd? 1.0) would signal an error since only exact integers
2615were recognized as integers. Now (odd? 1.0) returns #t, (odd? 2.0)
2616returns #f and (odd? 1.5) signals an error.
2617
b0d10ba6 2618** Guile now has uninterned symbols.
610922b2 2619
b0d10ba6 2620The new function 'make-symbol' will return an uninterned symbol. This
610922b2
MV
2621is a symbol that is unique and is guaranteed to remain unique.
2622However, uninterned symbols can not yet be read back in.
2623
2624Use the new function 'symbol-interned?' to check whether a symbol is
2625interned or not.
2626
0e6f7775
MV
2627** pretty-print has more options.
2628
2629The function pretty-print from the (ice-9 pretty-print) module can now
2630also be invoked with keyword arguments that control things like
71f271b2 2631maximum output width. See the manual for details.
0e6f7775 2632
8c84b81e 2633** Variables have no longer a special behavior for `equal?'.
ee0c7345
MV
2634
2635Previously, comparing two variables with `equal?' would recursivly
2636compare their values. This is no longer done. Variables are now only
2637`equal?' if they are `eq?'.
2638
4e21fa60
MV
2639** `(begin)' is now valid.
2640
2641You can now use an empty `begin' form. It will yield #<unspecified>
2642when evaluated and simply be ignored in a definition context.
2643
3063e30a
DH
2644** Deprecated: procedure->macro
2645
b0d10ba6
MV
2646Change your code to use 'define-macro' or r5rs macros. Also, be aware
2647that macro expansion will not be done during evaluation, but prior to
2648evaluation.
3063e30a 2649
0a50eeaa
NJ
2650** Soft ports now allow a `char-ready?' procedure
2651
2652The vector argument to `make-soft-port' can now have a length of
2653either 5 or 6. (Previously the length had to be 5.) The optional 6th
2654element is interpreted as an `input-waiting' thunk -- i.e. a thunk
2655that returns the number of characters that can be read immediately
2656without the soft port blocking.
2657
63dd3413
DH
2658** Deprecated: undefine
2659
2660There is no replacement for undefine.
2661
9abd541e
NJ
2662** The functions make-keyword-from-dash-symbol and keyword-dash-symbol
2663 have been discouraged.
aef0bdb4
MV
2664
2665They are relics from a time where a keyword like #:foo was used
2666directly as a Tcl option "-foo" and thus keywords were internally
2667stored as a symbol with a starting dash. We now store a symbol
2668without the dash.
2669
2670Use symbol->keyword and keyword->symbol instead.
2671
9abd541e
NJ
2672** The `cheap' debug option is now obsolete
2673
2674Evaluator trap calls are now unconditionally "cheap" - in other words,
2675they pass a debug object to the trap handler rather than a full
2676continuation. The trap handler code can capture a full continuation
2677by using `call-with-current-continuation' in the usual way, if it so
2678desires.
2679
2680The `cheap' option is retained for now so as not to break existing
2681code which gets or sets it, but setting it now has no effect. It will
2682be removed in the next major Guile release.
2683
2684** Evaluator trap calls now support `tweaking'
2685
2686`Tweaking' means that the trap handler code can modify the Scheme
2687expression that is about to be evaluated (in the case of an
2688enter-frame trap) or the value that is being returned (in the case of
2689an exit-frame trap). The trap handler code indicates that it wants to
2690do this by returning a pair whose car is the symbol 'instead and whose
2691cdr is the modified expression or return value.
36a9b236 2692
b00418df
DH
2693* Changes to the C interface
2694
87bdbdbc
MV
2695** The functions scm_hash_fn_remove_x and scm_hashx_remove_x no longer
2696 take a 'delete' function argument.
2697
2698This argument makes no sense since the delete function is used to
2699remove a pair from an alist, and this must not be configurable.
2700
2701This is an incompatible change.
2702
1cf1bb95
MV
2703** The GH interface is now subject to the deprecation mechanism
2704
2705The GH interface has been deprecated for quite some time but now it is
2706actually removed from Guile when it is configured with
2707--disable-deprecated.
2708
2709See the manual "Transitioning away from GH" for more information.
2710
f7f3964e
MV
2711** A new family of functions for converting between C values and
2712 Scheme values has been added.
2713
2714These functions follow a common naming scheme and are designed to be
2715easier to use, thread-safe and more future-proof than the older
2716alternatives.
2717
2718 - int scm_is_* (...)
2719
2720 These are predicates that return a C boolean: 1 or 0. Instead of
2721 SCM_NFALSEP, you can now use scm_is_true, for example.
2722
2723 - <type> scm_to_<type> (SCM val, ...)
2724
2725 These are functions that convert a Scheme value into an appropriate
2726 C value. For example, you can use scm_to_int to safely convert from
2727 a SCM to an int.
2728
a2b6a0e7 2729 - SCM scm_from_<type> (<type> val, ...)
f7f3964e
MV
2730
2731 These functions convert from a C type to a SCM value; for example,
2732 scm_from_int for ints.
2733
2734There is a huge number of these functions, for numbers, strings,
2735symbols, vectors, etc. They are documented in the reference manual in
2736the API section together with the types that they apply to.
2737
96d8c217
MV
2738** New functions for dealing with complex numbers in C have been added.
2739
2740The new functions are scm_c_make_rectangular, scm_c_make_polar,
2741scm_c_real_part, scm_c_imag_part, scm_c_magnitude and scm_c_angle.
2742They work like scm_make_rectangular etc but take or return doubles
2743directly.
2744
2745** The function scm_make_complex has been discouraged.
2746
2747Use scm_c_make_rectangular instead.
2748
f7f3964e
MV
2749** The INUM macros have been deprecated.
2750
2751A lot of code uses these macros to do general integer conversions,
b0d10ba6
MV
2752although the macros only work correctly with fixnums. Use the
2753following alternatives.
f7f3964e
MV
2754
2755 SCM_INUMP -> scm_is_integer or similar
2756 SCM_NINUMP -> !scm_is_integer or similar
2757 SCM_MAKINUM -> scm_from_int or similar
2758 SCM_INUM -> scm_to_int or similar
2759
b0d10ba6 2760 SCM_VALIDATE_INUM_* -> Do not use these; scm_to_int, etc. will
f7f3964e
MV
2761 do the validating for you.
2762
f9656a9f
MV
2763** The scm_num2<type> and scm_<type>2num functions and scm_make_real
2764 have been discouraged.
f7f3964e
MV
2765
2766Use the newer scm_to_<type> and scm_from_<type> functions instead for
2767new code. The functions have been discouraged since they don't fit
2768the naming scheme.
2769
2770** The 'boolean' macros SCM_FALSEP etc have been discouraged.
2771
2772They have strange names, especially SCM_NFALSEP, and SCM_BOOLP
2773evaluates its argument twice. Use scm_is_true, etc. instead for new
2774code.
2775
2776** The macro SCM_EQ_P has been discouraged.
2777
2778Use scm_is_eq for new code, which fits better into the naming
2779conventions.
d5b203a6 2780
d5ac9b2a
MV
2781** The macros SCM_CONSP, SCM_NCONSP, SCM_NULLP, and SCM_NNULLP have
2782 been discouraged.
2783
2784Use the function scm_is_pair or scm_is_null instead.
2785
409eb4e5
MV
2786** The functions scm_round and scm_truncate have been deprecated and
2787 are now available as scm_c_round and scm_c_truncate, respectively.
2788
2789These functions occupy the names that scm_round_number and
2790scm_truncate_number should have.
2791
3ff9283d
MV
2792** The functions scm_c_string2str, scm_c_substring2str, and
2793 scm_c_symbol2str have been deprecated.
c41acab3
MV
2794
2795Use scm_to_locale_stringbuf or similar instead, maybe together with
2796scm_substring.
2797
3ff9283d
MV
2798** New functions scm_c_make_string, scm_c_string_length,
2799 scm_c_string_ref, scm_c_string_set_x, scm_c_substring,
2800 scm_c_substring_shared, scm_c_substring_copy.
2801
2802These are like scm_make_string, scm_length, etc. but are slightly
2803easier to use from C.
2804
2805** The macros SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_LENGTH,
2806 SCM_SYMBOL_CHARS, and SCM_SYMBOL_LENGTH have been deprecated.
2807
2808They export too many assumptions about the implementation of strings
2809and symbols that are no longer true in the presence of
b0d10ba6
MV
2810mutation-sharing substrings and when Guile switches to some form of
2811Unicode.
3ff9283d
MV
2812
2813When working with strings, it is often best to use the normal string
2814functions provided by Guile, such as scm_c_string_ref,
b0d10ba6
MV
2815scm_c_string_set_x, scm_string_append, etc. Be sure to look in the
2816manual since many more such functions are now provided than
2817previously.
3ff9283d
MV
2818
2819When you want to convert a SCM string to a C string, use the
2820scm_to_locale_string function or similar instead. For symbols, use
2821scm_symbol_to_string and then work with that string. Because of the
2822new string representation, scm_symbol_to_string does not need to copy
2823and is thus quite efficient.
2824
aef0bdb4 2825** Some string, symbol and keyword functions have been discouraged.
3ff9283d 2826
b0d10ba6 2827They don't fit into the uniform naming scheme and are not explicit
3ff9283d
MV
2828about the character encoding.
2829
2830Replace according to the following table:
2831
2832 scm_allocate_string -> scm_c_make_string
2833 scm_take_str -> scm_take_locale_stringn
2834 scm_take0str -> scm_take_locale_string
2835 scm_mem2string -> scm_from_locale_stringn
2836 scm_str2string -> scm_from_locale_string
2837 scm_makfrom0str -> scm_from_locale_string
2838 scm_mem2symbol -> scm_from_locale_symboln
b0d10ba6 2839 scm_mem2uninterned_symbol -> scm_from_locale_stringn + scm_make_symbol
3ff9283d
MV
2840 scm_str2symbol -> scm_from_locale_symbol
2841
2842 SCM_SYMBOL_HASH -> scm_hashq
2843 SCM_SYMBOL_INTERNED_P -> scm_symbol_interned_p
2844
aef0bdb4
MV
2845 scm_c_make_keyword -> scm_from_locale_keyword
2846
2847** The functions scm_keyword_to_symbol and sym_symbol_to_keyword are
2848 now also available to C code.
2849
2850** SCM_KEYWORDP and SCM_KEYWORDSYM have been deprecated.
2851
2852Use scm_is_keyword and scm_keyword_to_symbol instead, but note that
2853the latter returns the true name of the keyword, not the 'dash name',
2854as SCM_KEYWORDSYM used to do.
2855
dc91d8de
MV
2856** A new way to access arrays in a thread-safe and efficient way has
2857 been added.
2858
2859See the manual, node "Accessing Arrays From C".
2860
3167d5e4
MV
2861** The old uniform vector and bitvector implementations have been
2862 unceremoniously removed.
d4ea47c8 2863
a558cc63 2864This implementation exposed the details of the tagging system of
d4ea47c8 2865Guile. Use the new C API explained in the manual in node "Uniform
c34e5780 2866Numeric Vectors" and "Bit Vectors", respectively.
d4ea47c8
MV
2867
2868The following macros are gone: SCM_UVECTOR_BASE, SCM_SET_UVECTOR_BASE,
2869SCM_UVECTOR_MAXLENGTH, SCM_UVECTOR_LENGTH, SCM_MAKE_UVECTOR_TAG,
3167d5e4
MV
2870SCM_SET_UVECTOR_LENGTH, SCM_BITVECTOR_P, SCM_BITVECTOR_BASE,
2871SCM_SET_BITVECTOR_BASE, SCM_BITVECTOR_MAX_LENGTH,
2872SCM_BITVECTOR_LENGTH, SCM_MAKE_BITVECTOR_TAG,
0b63c1ee
MV
2873SCM_SET_BITVECTOR_LENGTH, SCM_BITVEC_REF, SCM_BITVEC_SET,
2874SCM_BITVEC_CLR.
d4ea47c8 2875
c34e5780
MV
2876** The macros dealing with vectors have been deprecated.
2877
2878Use the new functions scm_is_vector, scm_vector_elements,
0b63c1ee
MV
2879scm_vector_writable_elements, etc, or scm_is_simple_vector,
2880SCM_SIMPLE_VECTOR_REF, SCM_SIMPLE_VECTOR_SET, etc instead. See the
2881manual for more details.
c34e5780
MV
2882
2883Deprecated are SCM_VECTORP, SCM_VELTS, SCM_VECTOR_MAX_LENGTH,
2884SCM_VECTOR_LENGTH, SCM_VECTOR_REF, SCM_VECTOR_SET, SCM_WRITABLE_VELTS.
2885
2886The following macros have been removed: SCM_VECTOR_BASE,
2887SCM_SET_VECTOR_BASE, SCM_MAKE_VECTOR_TAG, SCM_SET_VECTOR_LENGTH,
2888SCM_VELTS_AS_STACKITEMS, SCM_SETVELTS, SCM_GC_WRITABLE_VELTS.
2889
0c7a5cab 2890** Some C functions and macros related to arrays have been deprecated.
dc91d8de
MV
2891
2892Migrate according to the following table:
2893
e94d0be2 2894 scm_make_uve -> scm_make_typed_array, scm_make_u8vector etc.
dc91d8de
MV
2895 scm_make_ra -> scm_make_array
2896 scm_shap2ra -> scm_make_array
2897 scm_cvref -> scm_c_generalized_vector_ref
2898 scm_ra_set_contp -> do not use
2899 scm_aind -> scm_array_handle_pos
2900 scm_raprin1 -> scm_display or scm_write
2901
0c7a5cab
MV
2902 SCM_ARRAYP -> scm_is_array
2903 SCM_ARRAY_NDIM -> scm_c_array_rank
2904 SCM_ARRAY_DIMS -> scm_array_handle_dims
2905 SCM_ARRAY_CONTP -> do not use
2906 SCM_ARRAY_MEM -> do not use
2907 SCM_ARRAY_V -> scm_array_handle_elements or similar
2908 SCM_ARRAY_BASE -> do not use
2909
c1e7caf7
MV
2910** SCM_CELL_WORD_LOC has been deprecated.
2911
b0d10ba6 2912Use the new macro SCM_CELL_OBJECT_LOC instead, which returns a pointer
c1e7caf7
MV
2913to a SCM, as opposed to a pointer to a scm_t_bits.
2914
2915This was done to allow the correct use of pointers into the Scheme
2916heap. Previously, the heap words were of type scm_t_bits and local
2917variables and function arguments were of type SCM, making it
2918non-standards-conformant to have a pointer that can point to both.
2919
3ff9283d 2920** New macros SCM_SMOB_DATA_2, SCM_SMOB_DATA_3, etc.
27968825
MV
2921
2922These macros should be used instead of SCM_CELL_WORD_2/3 to access the
2923second and third words of double smobs. Likewise for
2924SCM_SET_SMOB_DATA_2 and SCM_SET_SMOB_DATA_3.
2925
2926Also, there is SCM_SMOB_FLAGS and SCM_SET_SMOB_FLAGS that should be
2927used to get and set the 16 exra bits in the zeroth word of a smob.
2928
2929And finally, there is SCM_SMOB_OBJECT and SCM_SMOB_SET_OBJECT for
2930accesing the first immediate word of a smob as a SCM value, and there
2931is SCM_SMOB_OBJECT_LOC for getting a pointer to the first immediate
b0d10ba6 2932smob word. Like wise for SCM_SMOB_OBJECT_2, etc.
27968825 2933
b0d10ba6 2934** New way to deal with non-local exits and re-entries.
9879d390
MV
2935
2936There is a new set of functions that essentially do what
fc6bb283
MV
2937scm_internal_dynamic_wind does, but in a way that is more convenient
2938for C code in some situations. Here is a quick example of how to
2939prevent a potential memory leak:
9879d390
MV
2940
2941 void
2942 foo ()
2943 {
2944 char *mem;
2945
661ae7ab 2946 scm_dynwind_begin (0);
9879d390
MV
2947
2948 mem = scm_malloc (100);
661ae7ab 2949 scm_dynwind_unwind_handler (free, mem, SCM_F_WIND_EXPLICITLY);
f1da8e4e
MV
2950
2951 /* MEM would leak if BAR throws an error.
661ae7ab 2952 SCM_DYNWIND_UNWIND_HANDLER frees it nevertheless.
c41acab3 2953 */
9879d390 2954
9879d390
MV
2955 bar ();
2956
661ae7ab 2957 scm_dynwind_end ();
9879d390 2958
e299cee2 2959 /* Because of SCM_F_WIND_EXPLICITLY, MEM will be freed by
661ae7ab 2960 SCM_DYNWIND_END as well.
9879d390
MV
2961 */
2962 }
2963
661ae7ab 2964For full documentation, see the node "Dynamic Wind" in the manual.
9879d390 2965
661ae7ab 2966** New function scm_dynwind_free
c41acab3 2967
661ae7ab
MV
2968This function calls 'free' on a given pointer when a dynwind context
2969is left. Thus the call to scm_dynwind_unwind_handler above could be
2970replaced with simply scm_dynwind_free (mem).
c41acab3 2971
a6d75e53
MV
2972** New functions scm_c_call_with_blocked_asyncs and
2973 scm_c_call_with_unblocked_asyncs
2974
2975Like scm_call_with_blocked_asyncs etc. but for C functions.
2976
661ae7ab 2977** New functions scm_dynwind_block_asyncs and scm_dynwind_unblock_asyncs
49c00ecc
MV
2978
2979In addition to scm_c_call_with_blocked_asyncs you can now also use
661ae7ab
MV
2980scm_dynwind_block_asyncs in a 'dynwind context' (see above). Likewise for
2981scm_c_call_with_unblocked_asyncs and scm_dynwind_unblock_asyncs.
49c00ecc 2982
a558cc63
MV
2983** The macros SCM_DEFER_INTS, SCM_ALLOW_INTS, SCM_REDEFER_INTS,
2984 SCM_REALLOW_INTS have been deprecated.
2985
2986They do no longer fulfill their original role of blocking signal
2987delivery. Depending on what you want to achieve, replace a pair of
661ae7ab
MV
2988SCM_DEFER_INTS and SCM_ALLOW_INTS with a dynwind context that locks a
2989mutex, blocks asyncs, or both. See node "Critical Sections" in the
2990manual.
a6d75e53
MV
2991
2992** The value 'scm_mask_ints' is no longer writable.
2993
2994Previously, you could set scm_mask_ints directly. This is no longer
2995possible. Use scm_c_call_with_blocked_asyncs and
2996scm_c_call_with_unblocked_asyncs instead.
a558cc63 2997
49c00ecc
MV
2998** New way to temporarily set the current input, output or error ports
2999
661ae7ab 3000C code can now use scm_dynwind_current_<foo>_port in a 'dynwind
0f24e75b 3001context' (see above). <foo> is one of "input", "output" or "error".
49c00ecc 3002
fc6bb283
MV
3003** New way to temporarily set fluids
3004
661ae7ab 3005C code can now use scm_dynwind_fluid in a 'dynwind context' (see
fc6bb283
MV
3006above) to temporarily set the value of a fluid.
3007
89fcf1b4
MV
3008** New types scm_t_intmax and scm_t_uintmax.
3009
3010On platforms that have them, these types are identical to intmax_t and
3011uintmax_t, respectively. On other platforms, they are identical to
3012the largest integer types that Guile knows about.
3013
b0d10ba6 3014** The functions scm_unmemocopy and scm_unmemoize have been removed.
9fcf3cbb 3015
b0d10ba6 3016You should not have used them.
9fcf3cbb 3017
5ebbe4ef
RB
3018** Many public #defines with generic names have been made private.
3019
3020#defines with generic names like HAVE_FOO or SIZEOF_FOO have been made
b0d10ba6 3021private or renamed with a more suitable public name.
f03314f9
DH
3022
3023** The macro SCM_TYP16S has been deprecated.
3024
b0d10ba6 3025This macro is not intended for public use.
f03314f9 3026
0d5e3480
DH
3027** The macro SCM_SLOPPY_INEXACTP has been deprecated.
3028
b0d10ba6 3029Use scm_is_true (scm_inexact_p (...)) instead.
0d5e3480
DH
3030
3031** The macro SCM_SLOPPY_REALP has been deprecated.
3032
b0d10ba6 3033Use scm_is_real instead.
0d5e3480
DH
3034
3035** The macro SCM_SLOPPY_COMPLEXP has been deprecated.
3036
b0d10ba6 3037Use scm_is_complex instead.
5ebbe4ef 3038
b0d10ba6 3039** Some preprocessor defines have been deprecated.
5ebbe4ef 3040
b0d10ba6
MV
3041These defines indicated whether a certain feature was present in Guile
3042or not. Going forward, assume that the features are always present.
5ebbe4ef 3043
b0d10ba6
MV
3044The macros are: USE_THREADS, GUILE_ISELECT, READER_EXTENSIONS,
3045DEBUG_EXTENSIONS, DYNAMIC_LINKING.
5ebbe4ef 3046
b0d10ba6
MV
3047The following macros have been removed completely: MEMOIZE_LOCALS,
3048SCM_RECKLESS, SCM_CAUTIOUS.
5ebbe4ef
RB
3049
3050** The preprocessor define STACK_DIRECTION has been deprecated.
3051
3052There should be no need to know about the stack direction for ordinary
b0d10ba6 3053programs.
5ebbe4ef 3054
b2cbe8d8
RB
3055** New function: scm_effective_version
3056
3057Returns the "effective" version number. This is just the normal full
3058version string without the final micro-version number. See "Changes
3059to the distribution" above.
3060
2902a459
MV
3061** The function scm_call_with_new_thread has a new prototype.
3062
3063Instead of taking a list with the thunk and handler, these two
3064arguments are now passed directly:
3065
3066 SCM scm_call_with_new_thread (SCM thunk, SCM handler);
3067
3068This is an incompatible change.
3069
ffd0ef3b
MV
3070** New snarfer macro SCM_DEFINE_PUBLIC.
3071
3072This is like SCM_DEFINE, but also calls scm_c_export for the defined
3073function in the init section.
3074
8734ce02
MV
3075** The snarfer macro SCM_SNARF_INIT is now officially supported.
3076
39e8f371
HWN
3077** Garbage collector rewrite.
3078
3079The garbage collector is cleaned up a lot, and now uses lazy
3080sweeping. This is reflected in the output of (gc-stats); since cells
3081are being freed when they are allocated, the cells-allocated field
3082stays roughly constant.
3083
3084For malloc related triggers, the behavior is changed. It uses the same
3085heuristic as the cell-triggered collections. It may be tuned with the
3086environment variables GUILE_MIN_YIELD_MALLOC. This is the percentage
3087for minimum yield of malloc related triggers. The default is 40.
3088GUILE_INIT_MALLOC_LIMIT sets the initial trigger for doing a GC. The
3089default is 200 kb.
3090
3091Debugging operations for the freelist have been deprecated, along with
3092the C variables that control garbage collection. The environment
3093variables GUILE_MAX_SEGMENT_SIZE, GUILE_INIT_SEGMENT_SIZE_2,
3094GUILE_INIT_SEGMENT_SIZE_1, and GUILE_MIN_YIELD_2 should be used.
3095
1367aa5e
HWN
3096For understanding the memory usage of a GUILE program, the routine
3097gc-live-object-stats returns an alist containing the number of live
3098objects for every type.
3099
3100
5ec1d2c8
DH
3101** The function scm_definedp has been renamed to scm_defined_p
3102
3103The name scm_definedp is deprecated.
3104
b0d10ba6 3105** The struct scm_cell type has been renamed to scm_t_cell
228a24ef
DH
3106
3107This is in accordance to Guile's naming scheme for types. Note that
3108the name scm_cell is now used for a function that allocates and
3109initializes a new cell (see below).
3110
0906625f
MV
3111** New functions for memory management
3112
3113A new set of functions for memory management has been added since the
3114old way (scm_must_malloc, scm_must_free, etc) was error prone and
3115indeed, Guile itself contained some long standing bugs that could
3116cause aborts in long running programs.
3117
3118The new functions are more symmetrical and do not need cooperation
3119from smob free routines, among other improvements.
3120
eab1b259
HWN
3121The new functions are scm_malloc, scm_realloc, scm_calloc, scm_strdup,
3122scm_strndup, scm_gc_malloc, scm_gc_calloc, scm_gc_realloc,
3123scm_gc_free, scm_gc_register_collectable_memory, and
0906625f
MV
3124scm_gc_unregister_collectable_memory. Refer to the manual for more
3125details and for upgrading instructions.
3126
3127The old functions for memory management have been deprecated. They
3128are: scm_must_malloc, scm_must_realloc, scm_must_free,
3129scm_must_strdup, scm_must_strndup, scm_done_malloc, scm_done_free.
3130
4aa104a4
MV
3131** Declarations of exported features are marked with SCM_API.
3132
3133Every declaration of a feature that belongs to the exported Guile API
3134has been marked by adding the macro "SCM_API" to the start of the
3135declaration. This macro can expand into different things, the most
3136common of which is just "extern" for Unix platforms. On Win32, it can
3137be used to control which symbols are exported from a DLL.
3138
8f99e3f3 3139If you `#define SCM_IMPORT' before including <libguile.h>, SCM_API
4aa104a4
MV
3140will expand into "__declspec (dllimport) extern", which is needed for
3141linking to the Guile DLL in Windows.
3142
b0d10ba6 3143There are also SCM_RL_IMPORT, SCM_SRFI1314_IMPORT, and
8f99e3f3 3144SCM_SRFI4_IMPORT, for the corresponding libraries.
4aa104a4 3145
a9930d22
MV
3146** SCM_NEWCELL and SCM_NEWCELL2 have been deprecated.
3147
b0d10ba6
MV
3148Use the new functions scm_cell and scm_double_cell instead. The old
3149macros had problems because with them allocation and initialization
3150was separated and the GC could sometimes observe half initialized
3151cells. Only careful coding by the user of SCM_NEWCELL and
3152SCM_NEWCELL2 could make this safe and efficient.
a9930d22 3153
5132eef0
DH
3154** CHECK_ENTRY, CHECK_APPLY and CHECK_EXIT have been deprecated.
3155
3156Use the variables scm_check_entry_p, scm_check_apply_p and scm_check_exit_p
3157instead.
3158
bc76d628
DH
3159** SRCBRKP has been deprecated.
3160
3161Use scm_c_source_property_breakpoint_p instead.
3162
3063e30a
DH
3163** Deprecated: scm_makmacro
3164
b0d10ba6
MV
3165Change your code to use either scm_makmmacro or to define macros in
3166Scheme, using 'define-macro'.
1e5f92ce 3167
1a61d41b
MV
3168** New function scm_c_port_for_each.
3169
3170This function is like scm_port_for_each but takes a pointer to a C
3171function as the callback instead of a SCM value.
3172
1f834c95
MV
3173** The names scm_internal_select, scm_thread_sleep, and
3174 scm_thread_usleep have been discouraged.
3175
3176Use scm_std_select, scm_std_sleep, scm_std_usleep instead.
3177
aa9200e5
MV
3178** The GC can no longer be blocked.
3179
3180The global flags scm_gc_heap_lock and scm_block_gc have been removed.
3181The GC can now run (partially) concurrently with other code and thus
3182blocking it is not well defined.
3183
b0d10ba6
MV
3184** Many definitions have been removed that were previously deprecated.
3185
3186scm_lisp_nil, scm_lisp_t, s_nil_ify, scm_m_nil_ify, s_t_ify,
3187scm_m_t_ify, s_0_cond, scm_m_0_cond, s_0_ify, scm_m_0_ify, s_1_ify,
3188scm_m_1_ify, scm_debug_newcell, scm_debug_newcell2,
3189scm_tc16_allocated, SCM_SET_SYMBOL_HASH, SCM_IM_NIL_IFY, SCM_IM_T_IFY,
3190SCM_IM_0_COND, SCM_IM_0_IFY, SCM_IM_1_IFY, SCM_GC_SET_ALLOCATED,
3191scm_debug_newcell, scm_debug_newcell2, SCM_HUP_SIGNAL, SCM_INT_SIGNAL,
3192SCM_FPE_SIGNAL, SCM_BUS_SIGNAL, SCM_SEGV_SIGNAL, SCM_ALRM_SIGNAL,
3193SCM_GC_SIGNAL, SCM_TICK_SIGNAL, SCM_SIG_ORD, SCM_ORD_SIG,
3194SCM_NUM_SIGS, scm_top_level_lookup_closure_var,
3195*top-level-lookup-closure*, scm_system_transformer, scm_eval_3,
3196scm_eval2, root_module_lookup_closure, SCM_SLOPPY_STRINGP,
3197SCM_RWSTRINGP, scm_read_only_string_p, scm_make_shared_substring,
3198scm_tc7_substring, sym_huh, SCM_VARVCELL, SCM_UDVARIABLEP,
3199SCM_DEFVARIABLEP, scm_mkbig, scm_big2inum, scm_adjbig, scm_normbig,
3200scm_copybig, scm_2ulong2big, scm_dbl2big, scm_big2dbl, SCM_FIXNUM_BIT,
3201SCM_SETCHARS, SCM_SLOPPY_SUBSTRP, SCM_SUBSTR_STR, SCM_SUBSTR_OFFSET,
3202SCM_LENGTH_MAX, SCM_SETLENGTH, SCM_ROSTRINGP, SCM_ROLENGTH,
3203SCM_ROCHARS, SCM_ROUCHARS, SCM_SUBSTRP, SCM_COERCE_SUBSTR,
3204scm_sym2vcell, scm_intern, scm_intern0, scm_sysintern, scm_sysintern0,
66c8ded2 3205scm_sysintern0_no_module_lookup, scm_init_symbols_deprecated,
2109da78 3206scm_vector_set_length_x, scm_contregs, scm_debug_info,
983e697d
MV
3207scm_debug_frame, SCM_DSIDEVAL, SCM_CONST_LONG, SCM_VCELL,
3208SCM_GLOBAL_VCELL, SCM_VCELL_INIT, SCM_GLOBAL_VCELL_INIT,
3209SCM_HUGE_LENGTH, SCM_VALIDATE_STRINGORSUBSTR, SCM_VALIDATE_ROSTRING,
3210SCM_VALIDATE_ROSTRING_COPY, SCM_VALIDATE_NULLORROSTRING_COPY,
3211SCM_VALIDATE_RWSTRING, DIGITS, scm_small_istr2int, scm_istr2int,
2109da78
MV
3212scm_istr2flo, scm_istring2number, scm_istr2int, scm_istr2flo,
3213scm_istring2number, scm_vtable_index_vcell, scm_si_vcell, SCM_ECONSP,
3214SCM_NECONSP, SCM_GLOC_VAR, SCM_GLOC_VAL, SCM_GLOC_SET_VAL,
c41acab3
MV
3215SCM_GLOC_VAL_LOC, scm_make_gloc, scm_gloc_p, scm_tc16_variable,
3216SCM_CHARS, SCM_LENGTH, SCM_SET_STRING_CHARS, SCM_SET_STRING_LENGTH.
b51bad08 3217
09172f9c
NJ
3218* Changes to bundled modules
3219
3220** (ice-9 debug)
3221
3222Using the (ice-9 debug) module no longer automatically switches Guile
3223to use the debugging evaluator. If you want to switch to the
3224debugging evaluator (which is needed for backtrace information if you
3225hit an error), please add an explicit "(debug-enable 'debug)" to your
3226code just after the code to use (ice-9 debug).
3227
328dc9a3 3228\f
c299f186
MD
3229Changes since Guile 1.4:
3230
3231* Changes to the distribution
3232
32d6f999
TTN
3233** A top-level TODO file is included.
3234
311b6a3c 3235** Guile now uses a versioning scheme similar to that of the Linux kernel.
c81ea65d
RB
3236
3237Guile now always uses three numbers to represent the version,
3238i.e. "1.6.5". The first number, 1, is the major version number, the
3239second number, 6, is the minor version number, and the third number,
32405, is the micro version number. Changes in major version number
3241indicate major changes in Guile.
3242
3243Minor version numbers that are even denote stable releases, and odd
3244minor version numbers denote development versions (which may be
3245unstable). The micro version number indicates a minor sub-revision of
3246a given MAJOR.MINOR release.
3247
3248In keeping with the new scheme, (minor-version) and scm_minor_version
3249no longer return everything but the major version number. They now
3250just return the minor version number. Two new functions
3251(micro-version) and scm_micro_version have been added to report the
3252micro version number.
3253
3254In addition, ./GUILE-VERSION now defines GUILE_MICRO_VERSION.
3255
5c790b44
RB
3256** New preprocessor definitions are available for checking versions.
3257
3258version.h now #defines SCM_MAJOR_VERSION, SCM_MINOR_VERSION, and
3259SCM_MICRO_VERSION to the appropriate integer values.
3260
311b6a3c
MV
3261** Guile now actively warns about deprecated features.
3262
3263The new configure option `--enable-deprecated=LEVEL' and the
3264environment variable GUILE_WARN_DEPRECATED control this mechanism.
3265See INSTALL and README for more information.
3266
0b073f0f
RB
3267** Guile is much more likely to work on 64-bit architectures.
3268
3269Guile now compiles and passes "make check" with only two UNRESOLVED GC
5e137c65
RB
3270cases on Alpha and ia64 based machines now. Thanks to John Goerzen
3271for the use of a test machine, and thanks to Stefan Jahn for ia64
3272patches.
0b073f0f 3273
e658215a
RB
3274** New functions: setitimer and getitimer.
3275
3276These implement a fairly direct interface to the libc functions of the
3277same name.
3278
8630fdfc
RB
3279** The #. reader extension is now disabled by default.
3280
3281For safety reasons, #. evaluation is disabled by default. To
3282re-enable it, set the fluid read-eval? to #t. For example:
3283
67b7dd9e 3284 (fluid-set! read-eval? #t)
8630fdfc
RB
3285
3286but make sure you realize the potential security risks involved. With
3287read-eval? enabled, reading a data file from an untrusted source can
3288be dangerous.
3289
f2a75d81 3290** New SRFI modules have been added:
4df36934 3291
dfdf5826
MG
3292SRFI-0 `cond-expand' is now supported in Guile, without requiring
3293using a module.
3294
e8bb0476
MG
3295(srfi srfi-1) is a library containing many useful pair- and list-processing
3296 procedures.
3297
7adc2c58 3298(srfi srfi-2) exports and-let*.
4df36934 3299
b74a7ec8
MG
3300(srfi srfi-4) implements homogeneous numeric vector datatypes.
3301
7adc2c58
RB
3302(srfi srfi-6) is a dummy module for now, since guile already provides
3303 all of the srfi-6 procedures by default: open-input-string,
3304 open-output-string, get-output-string.
4df36934 3305
7adc2c58 3306(srfi srfi-8) exports receive.
4df36934 3307
7adc2c58 3308(srfi srfi-9) exports define-record-type.
4df36934 3309
dfdf5826
MG
3310(srfi srfi-10) exports define-reader-ctor and implements the reader
3311 extension #,().
3312
7adc2c58 3313(srfi srfi-11) exports let-values and let*-values.
4df36934 3314
7adc2c58 3315(srfi srfi-13) implements the SRFI String Library.
53e29a1e 3316
7adc2c58 3317(srfi srfi-14) implements the SRFI Character-Set Library.
53e29a1e 3318
dfdf5826
MG
3319(srfi srfi-17) implements setter and getter-with-setter and redefines
3320 some accessor procedures as procedures with getters. (such as car,
3321 cdr, vector-ref etc.)
3322
3323(srfi srfi-19) implements the SRFI Time/Date Library.
2b60bc95 3324
466bb4b3
TTN
3325** New scripts / "executable modules"
3326
3327Subdirectory "scripts" contains Scheme modules that are packaged to
3328also be executable as scripts. At this time, these scripts are available:
3329
3330 display-commentary
3331 doc-snarf
3332 generate-autoload
3333 punify
58e5b910 3334 read-scheme-source
466bb4b3
TTN
3335 use2dot
3336
3337See README there for more info.
3338
54c17ccb
TTN
3339These scripts can be invoked from the shell with the new program
3340"guile-tools", which keeps track of installation directory for you.
3341For example:
3342
3343 $ guile-tools display-commentary srfi/*.scm
3344
3345guile-tools is copied to the standard $bindir on "make install".
3346
0109c4bf
MD
3347** New module (ice-9 stack-catch):
3348
3349stack-catch is like catch, but saves the current state of the stack in
3c1d1301
RB
3350the fluid the-last-stack. This fluid can be useful when using the
3351debugger and when re-throwing an error.
0109c4bf 3352
fbf0c8c7
MV
3353** The module (ice-9 and-let*) has been renamed to (ice-9 and-let-star)
3354
3355This has been done to prevent problems on lesser operating systems
3356that can't tolerate `*'s in file names. The exported macro continues
3357to be named `and-let*', of course.
3358
4f60cc33 3359On systems that support it, there is also a compatibility module named
fbf0c8c7 3360(ice-9 and-let*). It will go away in the next release.
6c0201ad 3361
9d774814 3362** New modules (oop goops) etc.:
14f1d9fe
MD
3363
3364 (oop goops)
3365 (oop goops describe)
3366 (oop goops save)
3367 (oop goops active-slot)
3368 (oop goops composite-slot)
3369
9d774814 3370The Guile Object Oriented Programming System (GOOPS) has been
311b6a3c
MV
3371integrated into Guile. For further information, consult the GOOPS
3372manual and tutorial in the `doc' directory.
14f1d9fe 3373
9d774814
GH
3374** New module (ice-9 rdelim).
3375
3376This exports the following procedures which were previously defined
1c8cbd62 3377in the default environment:
9d774814 3378
1c8cbd62
GH
3379read-line read-line! read-delimited read-delimited! %read-delimited!
3380%read-line write-line
9d774814 3381
1c8cbd62
GH
3382For backwards compatibility the definitions are still imported into the
3383default environment in this version of Guile. However you should add:
9d774814
GH
3384
3385(use-modules (ice-9 rdelim))
3386
1c8cbd62
GH
3387to any program which uses the definitions, since this may change in
3388future.
9d774814
GH
3389
3390Alternatively, if guile-scsh is installed, the (scsh rdelim) module
3391can be used for similar functionality.
3392
7e267da1
GH
3393** New module (ice-9 rw)
3394
3395This is a subset of the (scsh rw) module from guile-scsh. Currently
373f4948 3396it defines two procedures:
7e267da1 3397
311b6a3c 3398*** New function: read-string!/partial str [port_or_fdes [start [end]]]
7e267da1 3399
4bcdfe46
GH
3400 Read characters from a port or file descriptor into a string STR.
3401 A port must have an underlying file descriptor -- a so-called
3402 fport. This procedure is scsh-compatible and can efficiently read
311b6a3c 3403 large strings.
7e267da1 3404
4bcdfe46
GH
3405*** New function: write-string/partial str [port_or_fdes [start [end]]]
3406
3407 Write characters from a string STR to a port or file descriptor.
3408 A port must have an underlying file descriptor -- a so-called
3409 fport. This procedure is mostly compatible and can efficiently
3410 write large strings.
3411
e5005373
KN
3412** New module (ice-9 match)
3413
311b6a3c
MV
3414This module includes Andrew K. Wright's pattern matcher. See
3415ice-9/match.scm for brief description or
e5005373 3416
311b6a3c 3417 http://www.star-lab.com/wright/code.html
e5005373 3418
311b6a3c 3419for complete documentation.
e5005373 3420
4f60cc33
NJ
3421** New module (ice-9 buffered-input)
3422
3423This module provides procedures to construct an input port from an
3424underlying source of input that reads and returns its input in chunks.
3425The underlying input source is a Scheme procedure, specified by the
3426caller, which the port invokes whenever it needs more input.
3427
3428This is useful when building an input port whose back end is Readline
3429or a UI element such as the GtkEntry widget.
3430
3431** Documentation
3432
3433The reference and tutorial documentation that was previously
3434distributed separately, as `guile-doc', is now included in the core
3435Guile distribution. The documentation consists of the following
3436manuals.
3437
3438- The Guile Tutorial (guile-tut.texi) contains a tutorial introduction
3439 to using Guile.
3440
3441- The Guile Reference Manual (guile.texi) contains (or is intended to
3442 contain) reference documentation on all aspects of Guile.
3443
3444- The GOOPS Manual (goops.texi) contains both tutorial-style and
3445 reference documentation for using GOOPS, Guile's Object Oriented
3446 Programming System.
3447
c3e62877
NJ
3448- The Revised^5 Report on the Algorithmic Language Scheme
3449 (r5rs.texi).
4f60cc33
NJ
3450
3451See the README file in the `doc' directory for more details.
3452
094a67bb
MV
3453** There are a couple of examples in the examples/ directory now.
3454
9d774814
GH
3455* Changes to the stand-alone interpreter
3456
e7e58018
MG
3457** New command line option `--use-srfi'
3458
3459Using this option, SRFI modules can be loaded on startup and be
3460available right from the beginning. This makes programming portable
3461Scheme programs easier.
3462
3463The option `--use-srfi' expects a comma-separated list of numbers,
3464each representing a SRFI number to be loaded into the interpreter
3465before starting evaluating a script file or the REPL. Additionally,
3466the feature identifier for the loaded SRFIs is recognized by
3467`cond-expand' when using this option.
3468
3469Example:
3470$ guile --use-srfi=8,13
3471guile> (receive (x z) (values 1 2) (+ 1 2))
34723
58e5b910 3473guile> (string-pad "bla" 20)
e7e58018
MG
3474" bla"
3475
094a67bb
MV
3476** Guile now always starts up in the `(guile-user)' module.
3477
6e9382f1 3478Previously, scripts executed via the `-s' option would run in the
094a67bb
MV
3479`(guile)' module and the repl would run in the `(guile-user)' module.
3480Now every user action takes place in the `(guile-user)' module by
3481default.
e7e58018 3482
c299f186
MD
3483* Changes to Scheme functions and syntax
3484
720e1c30
MV
3485** Character classifiers work for non-ASCII characters.
3486
3487The predicates `char-alphabetic?', `char-numeric?',
3488`char-whitespace?', `char-lower?', `char-upper?' and `char-is-both?'
3489no longer check whether their arguments are ASCII characters.
3490Previously, a character would only be considered alphabetic when it
3491was also ASCII, for example.
3492
311b6a3c
MV
3493** Previously deprecated Scheme functions have been removed:
3494
3495 tag - no replacement.
3496 fseek - replaced by seek.
3497 list* - replaced by cons*.
3498
3499** It's now possible to create modules with controlled environments
3500
3501Example:
3502
3503(use-modules (ice-9 safe))
3504(define m (make-safe-module))
3505;;; m will now be a module containing only a safe subset of R5RS
3506(eval '(+ 1 2) m) --> 3
3507(eval 'load m) --> ERROR: Unbound variable: load
3508
3509** Evaluation of "()", the empty list, is now an error.
8c2c9967
MV
3510
3511Previously, the expression "()" evaluated to the empty list. This has
3512been changed to signal a "missing expression" error. The correct way
3513to write the empty list as a literal constant is to use quote: "'()".
3514
311b6a3c
MV
3515** New concept of `Guile Extensions'.
3516
3517A Guile Extension is just a ordinary shared library that can be linked
3518at run-time. We found it advantageous to give this simple concept a
3519dedicated name to distinguish the issues related to shared libraries
3520from the issues related to the module system.
3521
3522*** New function: load-extension
3523
3524Executing (load-extension lib init) is mostly equivalent to
3525
3526 (dynamic-call init (dynamic-link lib))
3527
3528except when scm_register_extension has been called previously.
3529Whenever appropriate, you should use `load-extension' instead of
3530dynamic-link and dynamic-call.
3531
3532*** New C function: scm_c_register_extension
3533
3534This function registers a initialization function for use by
3535`load-extension'. Use it when you don't want specific extensions to
3536be loaded as shared libraries (for example on platforms that don't
3537support dynamic linking).
3538
8c2c9967
MV
3539** Auto-loading of compiled-code modules is deprecated.
3540
3541Guile used to be able to automatically find and link a shared
c10ecc4c 3542library to satisfy requests for a module. For example, the module
8c2c9967
MV
3543`(foo bar)' could be implemented by placing a shared library named
3544"foo/libbar.so" (or with a different extension) in a directory on the
3545load path of Guile.
3546
311b6a3c
MV
3547This has been found to be too tricky, and is no longer supported. The
3548shared libraries are now called "extensions". You should now write a
3549small Scheme file that calls `load-extension' to load the shared
e299cee2 3550library and initialize it explicitly.
8c2c9967
MV
3551
3552The shared libraries themselves should be installed in the usual
3553places for shared libraries, with names like "libguile-foo-bar".
3554
3555For example, place this into a file "foo/bar.scm"
3556
3557 (define-module (foo bar))
3558
311b6a3c
MV
3559 (load-extension "libguile-foo-bar" "foobar_init")
3560
3561** Backward incompatible change: eval EXP ENVIRONMENT-SPECIFIER
3562
3563`eval' is now R5RS, that is it takes two arguments.
3564The second argument is an environment specifier, i.e. either
3565
3566 (scheme-report-environment 5)
3567 (null-environment 5)
3568 (interaction-environment)
3569
3570or
8c2c9967 3571
311b6a3c 3572 any module.
8c2c9967 3573
6f76852b
MV
3574** The module system has been made more disciplined.
3575
311b6a3c
MV
3576The function `eval' will save and restore the current module around
3577the evaluation of the specified expression. While this expression is
3578evaluated, `(current-module)' will now return the right module, which
3579is the module specified as the second argument to `eval'.
6f76852b 3580
311b6a3c 3581A consequence of this change is that `eval' is not particularly
6f76852b
MV
3582useful when you want allow the evaluated code to change what module is
3583designated as the current module and have this change persist from one
3584call to `eval' to the next. The read-eval-print-loop is an example
3585where `eval' is now inadequate. To compensate, there is a new
3586function `primitive-eval' that does not take a module specifier and
3587that does not save/restore the current module. You should use this
3588function together with `set-current-module', `current-module', etc
3589when you want to have more control over the state that is carried from
3590one eval to the next.
3591
3592Additionally, it has been made sure that forms that are evaluated at
3593the top level are always evaluated with respect to the current module.
3594Previously, subforms of top-level forms such as `begin', `case',
3595etc. did not respect changes to the current module although these
3596subforms are at the top-level as well.
3597
311b6a3c 3598To prevent strange behavior, the forms `define-module',
6f76852b
MV
3599`use-modules', `use-syntax', and `export' have been restricted to only
3600work on the top level. The forms `define-public' and
3601`defmacro-public' only export the new binding on the top level. They
3602behave just like `define' and `defmacro', respectively, when they are
3603used in a lexical environment.
3604
0a892a2c
MV
3605Also, `export' will no longer silently re-export bindings imported
3606from a used module. It will emit a `deprecation' warning and will
3607cease to perform any re-export in the next version. If you actually
3608want to re-export bindings, use the new `re-export' in place of
3609`export'. The new `re-export' will not make copies of variables when
3610rexporting them, as `export' did wrongly.
3611
047dc3ae
TTN
3612** Module system now allows selection and renaming of imported bindings
3613
3614Previously, when using `use-modules' or the `#:use-module' clause in
3615the `define-module' form, all the bindings (association of symbols to
3616values) for imported modules were added to the "current module" on an
3617as-is basis. This has been changed to allow finer control through two
3618new facilities: selection and renaming.
3619
3620You can now select which of the imported module's bindings are to be
3621visible in the current module by using the `:select' clause. This
3622clause also can be used to rename individual bindings. For example:
3623
3624 ;; import all bindings no questions asked
3625 (use-modules (ice-9 common-list))
3626
3627 ;; import four bindings, renaming two of them;
3628 ;; the current module sees: every some zonk-y zonk-n
3629 (use-modules ((ice-9 common-list)
3630 :select (every some
3631 (remove-if . zonk-y)
3632 (remove-if-not . zonk-n))))
3633
3634You can also programmatically rename all selected bindings using the
3635`:renamer' clause, which specifies a proc that takes a symbol and
3636returns another symbol. Because it is common practice to use a prefix,
3637we now provide the convenience procedure `symbol-prefix-proc'. For
3638example:
3639
3640 ;; import four bindings, renaming two of them specifically,
3641 ;; and all four w/ prefix "CL:";
3642 ;; the current module sees: CL:every CL:some CL:zonk-y CL:zonk-n
3643 (use-modules ((ice-9 common-list)
3644 :select (every some
3645 (remove-if . zonk-y)
3646 (remove-if-not . zonk-n))
3647 :renamer (symbol-prefix-proc 'CL:)))
3648
3649 ;; import four bindings, renaming two of them specifically,
3650 ;; and all four by upcasing.
3651 ;; the current module sees: EVERY SOME ZONK-Y ZONK-N
3652 (define (upcase-symbol sym)
3653 (string->symbol (string-upcase (symbol->string sym))))
3654
3655 (use-modules ((ice-9 common-list)
3656 :select (every some
3657 (remove-if . zonk-y)
3658 (remove-if-not . zonk-n))
3659 :renamer upcase-symbol))
3660
3661Note that programmatic renaming is done *after* individual renaming.
3662Also, the above examples show `use-modules', but the same facilities are
3663available for the `#:use-module' clause of `define-module'.
3664
3665See manual for more info.
3666
b7d69200 3667** The semantics of guardians have changed.
56495472 3668
b7d69200 3669The changes are for the most part compatible. An important criterion
6c0201ad 3670was to keep the typical usage of guardians as simple as before, but to
c0a5d888 3671make the semantics safer and (as a result) more useful.
56495472 3672
c0a5d888 3673*** All objects returned from guardians are now properly alive.
56495472 3674
c0a5d888
ML
3675It is now guaranteed that any object referenced by an object returned
3676from a guardian is alive. It's now impossible for a guardian to
3677return a "contained" object before its "containing" object.
56495472
ML
3678
3679One incompatible (but probably not very important) change resulting
3680from this is that it is no longer possible to guard objects that
3681indirectly reference themselves (i.e. are parts of cycles). If you do
3682so accidentally, you'll get a warning.
3683
c0a5d888
ML
3684*** There are now two types of guardians: greedy and sharing.
3685
3686If you call (make-guardian #t) or just (make-guardian), you'll get a
3687greedy guardian, and for (make-guardian #f) a sharing guardian.
3688
3689Greedy guardians are the default because they are more "defensive".
3690You can only greedily guard an object once. If you guard an object
3691more than once, once in a greedy guardian and the rest of times in
3692sharing guardians, then it is guaranteed that the object won't be
3693returned from sharing guardians as long as it is greedily guarded
3694and/or alive.
3695
3696Guardians returned by calls to `make-guardian' can now take one more
3697optional parameter, which says whether to throw an error in case an
3698attempt is made to greedily guard an object that is already greedily
3699guarded. The default is true, i.e. throw an error. If the parameter
3700is false, the guardian invocation returns #t if guarding was
3701successful and #f if it wasn't.
3702
3703Also, since greedy guarding is, in effect, a side-effecting operation
3704on objects, a new function is introduced: `destroy-guardian!'.
3705Invoking this function on a guardian renders it unoperative and, if
3706the guardian is greedy, clears the "greedily guarded" property of the
3707objects that were guarded by it, thus undoing the side effect.
3708
3709Note that all this hair is hardly very important, since guardian
3710objects are usually permanent.
3711
311b6a3c
MV
3712** Continuations created by call-with-current-continuation now accept
3713any number of arguments, as required by R5RS.
818febc0 3714
c10ecc4c 3715** New function `issue-deprecation-warning'
56426fdb 3716
311b6a3c 3717This function is used to display the deprecation messages that are
c10ecc4c 3718controlled by GUILE_WARN_DEPRECATION as explained in the README.
56426fdb
KN
3719
3720 (define (id x)
c10ecc4c
MV
3721 (issue-deprecation-warning "`id' is deprecated. Use `identity' instead.")
3722 (identity x))
56426fdb
KN
3723
3724 guile> (id 1)
3725 ;; `id' is deprecated. Use `identity' instead.
3726 1
3727 guile> (id 1)
3728 1
3729
c10ecc4c
MV
3730** New syntax `begin-deprecated'
3731
3732When deprecated features are included (as determined by the configure
3733option --enable-deprecated), `begin-deprecated' is identical to
3734`begin'. When deprecated features are excluded, it always evaluates
3735to `#f', ignoring the body forms.
3736
17f367e0
MV
3737** New function `make-object-property'
3738
3739This function returns a new `procedure with setter' P that can be used
3740to attach a property to objects. When calling P as
3741
3742 (set! (P obj) val)
3743
3744where `obj' is any kind of object, it attaches `val' to `obj' in such
3745a way that it can be retrieved by calling P as
3746
3747 (P obj)
3748
3749This function will replace procedure properties, symbol properties and
3750source properties eventually.
3751
76ef92f3
MV
3752** Module (ice-9 optargs) now uses keywords instead of `#&'.
3753
3754Instead of #&optional, #&key, etc you should now use #:optional,
3755#:key, etc. Since #:optional is a keyword, you can write it as just
3756:optional when (read-set! keywords 'prefix) is active.
3757
3758The old reader syntax `#&' is still supported, but deprecated. It
3759will be removed in the next release.
3760
c0997079
MD
3761** New define-module option: pure
3762
3763Tells the module system not to include any bindings from the root
3764module.
3765
3766Example:
3767
3768(define-module (totally-empty-module)
3769 :pure)
3770
3771** New define-module option: export NAME1 ...
3772
3773Export names NAME1 ...
3774
3775This option is required if you want to be able to export bindings from
3776a module which doesn't import one of `define-public' or `export'.
3777
3778Example:
3779
311b6a3c
MV
3780 (define-module (foo)
3781 :pure
3782 :use-module (ice-9 r5rs)
3783 :export (bar))
69b5f65a 3784
311b6a3c 3785 ;;; Note that we're pure R5RS below this point!
69b5f65a 3786
311b6a3c
MV
3787 (define (bar)
3788 ...)
daa6ba18 3789
1f3908c4
KN
3790** New function: object->string OBJ
3791
3792Return a Scheme string obtained by printing a given object.
3793
eb5c0a2a
GH
3794** New function: port? X
3795
3796Returns a boolean indicating whether X is a port. Equivalent to
3797`(or (input-port? X) (output-port? X))'.
3798
efa40607
DH
3799** New function: file-port?
3800
3801Determines whether a given object is a port that is related to a file.
3802
34b56ec4
GH
3803** New function: port-for-each proc
3804
311b6a3c
MV
3805Apply PROC to each port in the Guile port table in turn. The return
3806value is unspecified. More specifically, PROC is applied exactly once
3807to every port that exists in the system at the time PORT-FOR-EACH is
3808invoked. Changes to the port table while PORT-FOR-EACH is running
3809have no effect as far as PORT-FOR-EACH is concerned.
34b56ec4
GH
3810
3811** New function: dup2 oldfd newfd
3812
3813A simple wrapper for the `dup2' system call. Copies the file
3814descriptor OLDFD to descriptor number NEWFD, replacing the
3815previous meaning of NEWFD. Both OLDFD and NEWFD must be integers.
3816Unlike for dup->fdes or primitive-move->fdes, no attempt is made
264e9cbc 3817to move away ports which are using NEWFD. The return value is
34b56ec4
GH
3818unspecified.
3819
3820** New function: close-fdes fd
3821
3822A simple wrapper for the `close' system call. Close file
3823descriptor FD, which must be an integer. Unlike close (*note
3824close: Ports and File Descriptors.), the file descriptor will be
3825closed even if a port is using it. The return value is
3826unspecified.
3827
94e6d793
MG
3828** New function: crypt password salt
3829
3830Encrypts `password' using the standard unix password encryption
3831algorithm.
3832
3833** New function: chroot path
3834
3835Change the root directory of the running process to `path'.
3836
3837** New functions: getlogin, cuserid
3838
3839Return the login name or the user name of the current effective user
3840id, respectively.
3841
3842** New functions: getpriority which who, setpriority which who prio
3843
3844Get or set the priority of the running process.
3845
3846** New function: getpass prompt
3847
3848Read a password from the terminal, first displaying `prompt' and
3849disabling echoing.
3850
3851** New function: flock file operation
3852
3853Set/remove an advisory shared or exclusive lock on `file'.
3854
3855** New functions: sethostname name, gethostname
3856
3857Set or get the hostname of the machine the current process is running
3858on.
3859
6d163216 3860** New function: mkstemp! tmpl
4f60cc33 3861
6d163216
GH
3862mkstemp creates a new unique file in the file system and returns a
3863new buffered port open for reading and writing to the file. TMPL
3864is a string specifying where the file should be created: it must
3865end with `XXXXXX' and will be changed in place to return the name
3866of the temporary file.
3867
62e63ba9
MG
3868** New function: open-input-string string
3869
3870Return an input string port which delivers the characters from
4f60cc33 3871`string'. This procedure, together with `open-output-string' and
62e63ba9
MG
3872`get-output-string' implements SRFI-6.
3873
3874** New function: open-output-string
3875
3876Return an output string port which collects all data written to it.
3877The data can then be retrieved by `get-output-string'.
3878
3879** New function: get-output-string
3880
3881Return the contents of an output string port.
3882
56426fdb
KN
3883** New function: identity
3884
3885Return the argument.
3886
5bef627d
GH
3887** socket, connect, accept etc., now have support for IPv6. IPv6 addresses
3888 are represented in Scheme as integers with normal host byte ordering.
3889
3890** New function: inet-pton family address
3891
311b6a3c
MV
3892Convert a printable string network address into an integer. Note that
3893unlike the C version of this function, the result is an integer with
3894normal host byte ordering. FAMILY can be `AF_INET' or `AF_INET6'.
3895e.g.,
3896
3897 (inet-pton AF_INET "127.0.0.1") => 2130706433
3898 (inet-pton AF_INET6 "::1") => 1
5bef627d
GH
3899
3900** New function: inet-ntop family address
3901
311b6a3c
MV
3902Convert an integer network address into a printable string. Note that
3903unlike the C version of this function, the input is an integer with
3904normal host byte ordering. FAMILY can be `AF_INET' or `AF_INET6'.
3905e.g.,
3906
3907 (inet-ntop AF_INET 2130706433) => "127.0.0.1"
3908 (inet-ntop AF_INET6 (- (expt 2 128) 1)) =>
5bef627d
GH
3909 ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
3910
56426fdb
KN
3911** Deprecated: id
3912
3913Use `identity' instead.
3914
5cd06d5e
DH
3915** Deprecated: -1+
3916
3917Use `1-' instead.
3918
3919** Deprecated: return-it
3920
311b6a3c 3921Do without it.
5cd06d5e
DH
3922
3923** Deprecated: string-character-length
3924
3925Use `string-length' instead.
3926
3927** Deprecated: flags
3928
3929Use `logior' instead.
3930
4f60cc33
NJ
3931** Deprecated: close-all-ports-except.
3932
3933This was intended for closing ports in a child process after a fork,
3934but it has the undesirable side effect of flushing buffers.
3935port-for-each is more flexible.
34b56ec4
GH
3936
3937** The (ice-9 popen) module now attempts to set up file descriptors in
3938the child process from the current Scheme ports, instead of using the
3939current values of file descriptors 0, 1, and 2 in the parent process.
3940
b52e071b
DH
3941** Removed function: builtin-weak-bindings
3942
3943There is no such concept as a weak binding any more.
3944
9d774814 3945** Removed constants: bignum-radix, scm-line-incrementors
0f979f3f 3946
7d435120
MD
3947** define-method: New syntax mandatory.
3948
3949The new method syntax is now mandatory:
3950
3951(define-method (NAME ARG-SPEC ...) BODY ...)
3952(define-method (NAME ARG-SPEC ... . REST-ARG) BODY ...)
3953
3954 ARG-SPEC ::= ARG-NAME | (ARG-NAME TYPE)
3955 REST-ARG ::= ARG-NAME
3956
3957If you have old code using the old syntax, import
3958(oop goops old-define-method) before (oop goops) as in:
3959
3960 (use-modules (oop goops old-define-method) (oop goops))
3961
f3f9dcbc
MV
3962** Deprecated function: builtin-variable
3963 Removed function: builtin-bindings
3964
3965There is no longer a distinction between builtin or other variables.
3966Use module system operations for all variables.
3967
311b6a3c
MV
3968** Lazy-catch handlers are no longer allowed to return.
3969
3970That is, a call to `throw', `error', etc is now guaranteed to not
3971return.
3972
a583bf1e 3973** Bugfixes for (ice-9 getopt-long)
8c84b81e 3974
a583bf1e
TTN
3975This module is now tested using test-suite/tests/getopt-long.test.
3976The following bugs have been fixed:
3977
3978*** Parsing for options that are specified to have `optional' args now checks
3979if the next element is an option instead of unconditionally taking it as the
8c84b81e
TTN
3980option arg.
3981
a583bf1e
TTN
3982*** An error is now thrown for `--opt=val' when the option description
3983does not specify `(value #t)' or `(value optional)'. This condition used to
3984be accepted w/o error, contrary to the documentation.
3985
3986*** The error message for unrecognized options is now more informative.
3987It used to be "not a record", an artifact of the implementation.
3988
3989*** The error message for `--opt' terminating the arg list (no value), when
3990`(value #t)' is specified, is now more informative. It used to be "not enough
3991args".
3992
3993*** "Clumped" single-char args now preserve trailing string, use it as arg.
3994The expansion used to be like so:
3995
3996 ("-abc5d" "--xyz") => ("-a" "-b" "-c" "--xyz")
3997
3998Note that the "5d" is dropped. Now it is like so:
3999
4000 ("-abc5d" "--xyz") => ("-a" "-b" "-c" "5d" "--xyz")
4001
4002This enables single-char options to have adjoining arguments as long as their
4003constituent characters are not potential single-char options.
8c84b81e 4004
998bfc70
TTN
4005** (ice-9 session) procedure `arity' now works with (ice-9 optargs) `lambda*'
4006
4007The `lambda*' and derivative forms in (ice-9 optargs) now set a procedure
4008property `arglist', which can be retrieved by `arity'. The result is that
4009`arity' can give more detailed information than before:
4010
4011Before:
4012
4013 guile> (use-modules (ice-9 optargs))
4014 guile> (define* (foo #:optional a b c) a)
4015 guile> (arity foo)
4016 0 or more arguments in `lambda*:G0'.
4017
4018After:
4019
4020 guile> (arity foo)
4021 3 optional arguments: `a', `b' and `c'.
4022 guile> (define* (bar a b #:key c d #:allow-other-keys) a)
4023 guile> (arity bar)
4024 2 required arguments: `a' and `b', 2 keyword arguments: `c'
4025 and `d', other keywords allowed.
4026 guile> (define* (baz a b #:optional c #:rest r) a)
4027 guile> (arity baz)
4028 2 required arguments: `a' and `b', 1 optional argument: `c',
4029 the rest in `r'.
4030
311b6a3c
MV
4031* Changes to the C interface
4032
c81c130e
MV
4033** Types have been renamed from scm_*_t to scm_t_*.
4034
4035This has been done for POSIX sake. It reserves identifiers ending
4036with "_t". What a concept.
4037
4038The old names are still available with status `deprecated'.
4039
4040** scm_t_bits (former scm_bits_t) is now a unsigned type.
4041
6e9382f1 4042** Deprecated features have been removed.
e6c9e497
MV
4043
4044*** Macros removed
4045
4046 SCM_INPORTP, SCM_OUTPORTP SCM_ICHRP, SCM_ICHR, SCM_MAKICHR
4047 SCM_SETJMPBUF SCM_NSTRINGP SCM_NRWSTRINGP SCM_NVECTORP SCM_DOUBLE_CELLP
4048
4049*** C Functions removed
4050
4051 scm_sysmissing scm_tag scm_tc16_flo scm_tc_flo
4052 scm_fseek - replaced by scm_seek.
4053 gc-thunk - replaced by after-gc-hook.
4054 gh_int2scmb - replaced by gh_bool2scm.
4055 scm_tc_dblr - replaced by scm_tc16_real.
4056 scm_tc_dblc - replaced by scm_tc16_complex.
4057 scm_list_star - replaced by scm_cons_star.
4058
36284627
DH
4059** Deprecated: scm_makfromstr
4060
4061Use scm_mem2string instead.
4062
311b6a3c
MV
4063** Deprecated: scm_make_shared_substring
4064
4065Explicit shared substrings will disappear from Guile.
4066
4067Instead, "normal" strings will be implemented using sharing
4068internally, combined with a copy-on-write strategy.
4069
4070** Deprecated: scm_read_only_string_p
4071
4072The concept of read-only strings will disappear in next release of
4073Guile.
4074
4075** Deprecated: scm_sloppy_memq, scm_sloppy_memv, scm_sloppy_member
c299f186 4076
311b6a3c 4077Instead, use scm_c_memq or scm_memq, scm_memv, scm_member.
c299f186 4078
dd0e04ed
KN
4079** New functions: scm_call_0, scm_call_1, scm_call_2, scm_call_3
4080
83dbedcc
KR
4081Call a procedure with the indicated number of arguments. See "Fly
4082Evaluation" in the manual.
dd0e04ed
KN
4083
4084** New functions: scm_apply_0, scm_apply_1, scm_apply_2, scm_apply_3
4085
83dbedcc
KR
4086Call a procedure with the indicated number of arguments and a list of
4087further arguments. See "Fly Evaluation" in the manual.
dd0e04ed 4088
e235f2a6
KN
4089** New functions: scm_list_1, scm_list_2, scm_list_3, scm_list_4, scm_list_5
4090
83dbedcc
KR
4091Create a list of the given number of elements. See "List
4092Constructors" in the manual.
e235f2a6
KN
4093
4094** Renamed function: scm_listify has been replaced by scm_list_n.
4095
4096** Deprecated macros: SCM_LIST0, SCM_LIST1, SCM_LIST2, SCM_LIST3, SCM_LIST4,
4097SCM_LIST5, SCM_LIST6, SCM_LIST7, SCM_LIST8, SCM_LIST9.
4098
4099Use functions scm_list_N instead.
4100
6fe692e9
MD
4101** New function: scm_c_read (SCM port, void *buffer, scm_sizet size)
4102
4103Used by an application to read arbitrary number of bytes from a port.
4104Same semantics as libc read, except that scm_c_read only returns less
4105than SIZE bytes if at end-of-file.
4106
4107Warning: Doesn't update port line and column counts!
4108
4109** New function: scm_c_write (SCM port, const void *ptr, scm_sizet size)
4110
4111Used by an application to write arbitrary number of bytes to an SCM
4112port. Similar semantics as libc write. However, unlike libc
4113write, scm_c_write writes the requested number of bytes and has no
4114return value.
4115
4116Warning: Doesn't update port line and column counts!
4117
17f367e0
MV
4118** New function: scm_init_guile ()
4119
4120In contrast to scm_boot_guile, scm_init_guile will return normally
4121after initializing Guile. It is not available on all systems, tho.
4122
23ade5e7
DH
4123** New functions: scm_str2symbol, scm_mem2symbol
4124
4125The function scm_str2symbol takes a const char* pointing to a zero-terminated
4126field of characters and creates a scheme symbol object from that C string.
4127The function scm_mem2symbol takes a const char* and a number of characters and
4128creates a symbol from the characters in that memory area.
4129
17f367e0
MV
4130** New functions: scm_primitive_make_property
4131 scm_primitive_property_ref
4132 scm_primitive_property_set_x
4133 scm_primitive_property_del_x
4134
4135These functions implement a new way to deal with object properties.
4136See libguile/properties.c for their documentation.
4137
9d47a1e6
ML
4138** New function: scm_done_free (long size)
4139
4140This function is the inverse of scm_done_malloc. Use it to report the
4141amount of smob memory you free. The previous method, which involved
4142calling scm_done_malloc with negative argument, was somewhat
4143unintuitive (and is still available, of course).
4144
79a3dafe
DH
4145** New function: scm_c_memq (SCM obj, SCM list)
4146
4147This function provides a fast C level alternative for scm_memq for the case
4148that the list parameter is known to be a proper list. The function is a
4149replacement for scm_sloppy_memq, but is stricter in its requirements on its
4150list input parameter, since for anything else but a proper list the function's
4151behaviour is undefined - it may even crash or loop endlessly. Further, for
4152the case that the object is not found in the list, scm_c_memq returns #f which
4153is similar to scm_memq, but different from scm_sloppy_memq's behaviour.
4154
6c0201ad 4155** New functions: scm_remember_upto_here_1, scm_remember_upto_here_2,
5d2b97cd
DH
4156scm_remember_upto_here
4157
4158These functions replace the function scm_remember.
4159
4160** Deprecated function: scm_remember
4161
4162Use one of the new functions scm_remember_upto_here_1,
4163scm_remember_upto_here_2 or scm_remember_upto_here instead.
4164
be54b15d
DH
4165** New function: scm_allocate_string
4166
4167This function replaces the function scm_makstr.
4168
4169** Deprecated function: scm_makstr
4170
4171Use the new function scm_allocate_string instead.
4172
32d0d4b1
DH
4173** New global variable scm_gc_running_p introduced.
4174
4175Use this variable to find out if garbage collection is being executed. Up to
4176now applications have used scm_gc_heap_lock to test if garbage collection was
4177running, which also works because of the fact that up to know only the garbage
4178collector has set this variable. But, this is an implementation detail that
4179may change. Further, scm_gc_heap_lock is not set throughout gc, thus the use
4180of this variable is (and has been) not fully safe anyway.
4181
5b9eb8ae
DH
4182** New macros: SCM_BITVECTOR_MAX_LENGTH, SCM_UVECTOR_MAX_LENGTH
4183
4184Use these instead of SCM_LENGTH_MAX.
4185
6c0201ad 4186** New macros: SCM_CONTINUATION_LENGTH, SCM_CCLO_LENGTH, SCM_STACK_LENGTH,
a6d9e5ab
DH
4187SCM_STRING_LENGTH, SCM_SYMBOL_LENGTH, SCM_UVECTOR_LENGTH,
4188SCM_BITVECTOR_LENGTH, SCM_VECTOR_LENGTH.
4189
4190Use these instead of SCM_LENGTH.
4191
6c0201ad 4192** New macros: SCM_SET_CONTINUATION_LENGTH, SCM_SET_STRING_LENGTH,
93778877
DH
4193SCM_SET_SYMBOL_LENGTH, SCM_SET_VECTOR_LENGTH, SCM_SET_UVECTOR_LENGTH,
4194SCM_SET_BITVECTOR_LENGTH
bc0eaf7b
DH
4195
4196Use these instead of SCM_SETLENGTH
4197
6c0201ad 4198** New macros: SCM_STRING_CHARS, SCM_SYMBOL_CHARS, SCM_CCLO_BASE,
a6d9e5ab
DH
4199SCM_VECTOR_BASE, SCM_UVECTOR_BASE, SCM_BITVECTOR_BASE, SCM_COMPLEX_MEM,
4200SCM_ARRAY_MEM
4201
e51fe79c
DH
4202Use these instead of SCM_CHARS, SCM_UCHARS, SCM_ROCHARS, SCM_ROUCHARS or
4203SCM_VELTS.
a6d9e5ab 4204
6c0201ad 4205** New macros: SCM_SET_BIGNUM_BASE, SCM_SET_STRING_CHARS,
6a0476fd
DH
4206SCM_SET_SYMBOL_CHARS, SCM_SET_UVECTOR_BASE, SCM_SET_BITVECTOR_BASE,
4207SCM_SET_VECTOR_BASE
4208
4209Use these instead of SCM_SETCHARS.
4210
a6d9e5ab
DH
4211** New macro: SCM_BITVECTOR_P
4212
4213** New macro: SCM_STRING_COERCE_0TERMINATION_X
4214
4215Use instead of SCM_COERCE_SUBSTR.
4216
30ea841d
DH
4217** New macros: SCM_DIR_OPEN_P, SCM_DIR_FLAG_OPEN
4218
4219For directory objects, use these instead of SCM_OPDIRP and SCM_OPN.
4220
6c0201ad
TTN
4221** Deprecated macros: SCM_OUTOFRANGE, SCM_NALLOC, SCM_HUP_SIGNAL,
4222SCM_INT_SIGNAL, SCM_FPE_SIGNAL, SCM_BUS_SIGNAL, SCM_SEGV_SIGNAL,
4223SCM_ALRM_SIGNAL, SCM_GC_SIGNAL, SCM_TICK_SIGNAL, SCM_SIG_ORD,
d1ca2c64 4224SCM_ORD_SIG, SCM_NUM_SIGS, SCM_SYMBOL_SLOTS, SCM_SLOTS, SCM_SLOPPY_STRINGP,
a6d9e5ab
DH
4225SCM_VALIDATE_STRINGORSUBSTR, SCM_FREEP, SCM_NFREEP, SCM_CHARS, SCM_UCHARS,
4226SCM_VALIDATE_ROSTRING, SCM_VALIDATE_ROSTRING_COPY,
4227SCM_VALIDATE_NULLORROSTRING_COPY, SCM_ROLENGTH, SCM_LENGTH, SCM_HUGE_LENGTH,
b24b5e13 4228SCM_SUBSTRP, SCM_SUBSTR_STR, SCM_SUBSTR_OFFSET, SCM_COERCE_SUBSTR,
34f0f2b8 4229SCM_ROSTRINGP, SCM_RWSTRINGP, SCM_VALIDATE_RWSTRING, SCM_ROCHARS,
fd336365 4230SCM_ROUCHARS, SCM_SETLENGTH, SCM_SETCHARS, SCM_LENGTH_MAX, SCM_GC8MARKP,
30ea841d 4231SCM_SETGC8MARK, SCM_CLRGC8MARK, SCM_GCTYP16, SCM_GCCDR, SCM_SUBR_DOC,
b3fcac34
DH
4232SCM_OPDIRP, SCM_VALIDATE_OPDIR, SCM_WTA, RETURN_SCM_WTA, SCM_CONST_LONG,
4233SCM_WNA, SCM_FUNC_NAME, SCM_VALIDATE_NUMBER_COPY,
61045190 4234SCM_VALIDATE_NUMBER_DEF_COPY, SCM_SLOPPY_CONSP, SCM_SLOPPY_NCONSP,
e038c042 4235SCM_SETAND_CDR, SCM_SETOR_CDR, SCM_SETAND_CAR, SCM_SETOR_CAR
b63a956d
DH
4236
4237Use SCM_ASSERT_RANGE or SCM_VALIDATE_XXX_RANGE instead of SCM_OUTOFRANGE.
4238Use scm_memory_error instead of SCM_NALLOC.
c1aef037 4239Use SCM_STRINGP instead of SCM_SLOPPY_STRINGP.
d1ca2c64
DH
4240Use SCM_VALIDATE_STRING instead of SCM_VALIDATE_STRINGORSUBSTR.
4241Use SCM_FREE_CELL_P instead of SCM_FREEP/SCM_NFREEP
a6d9e5ab 4242Use a type specific accessor macro instead of SCM_CHARS/SCM_UCHARS.
6c0201ad 4243Use a type specific accessor instead of SCM(_|_RO|_HUGE_)LENGTH.
a6d9e5ab
DH
4244Use SCM_VALIDATE_(SYMBOL|STRING) instead of SCM_VALIDATE_ROSTRING.
4245Use SCM_STRING_COERCE_0TERMINATION_X instead of SCM_COERCE_SUBSTR.
b24b5e13 4246Use SCM_STRINGP or SCM_SYMBOLP instead of SCM_ROSTRINGP.
f0942910
DH
4247Use SCM_STRINGP instead of SCM_RWSTRINGP.
4248Use SCM_VALIDATE_STRING instead of SCM_VALIDATE_RWSTRING.
34f0f2b8
DH
4249Use SCM_STRING_CHARS instead of SCM_ROCHARS.
4250Use SCM_STRING_UCHARS instead of SCM_ROUCHARS.
93778877 4251Use a type specific setter macro instead of SCM_SETLENGTH.
6a0476fd 4252Use a type specific setter macro instead of SCM_SETCHARS.
5b9eb8ae 4253Use a type specific length macro instead of SCM_LENGTH_MAX.
fd336365
DH
4254Use SCM_GCMARKP instead of SCM_GC8MARKP.
4255Use SCM_SETGCMARK instead of SCM_SETGC8MARK.
4256Use SCM_CLRGCMARK instead of SCM_CLRGC8MARK.
4257Use SCM_TYP16 instead of SCM_GCTYP16.
4258Use SCM_CDR instead of SCM_GCCDR.
30ea841d 4259Use SCM_DIR_OPEN_P instead of SCM_OPDIRP.
276dd677
DH
4260Use SCM_MISC_ERROR or SCM_WRONG_TYPE_ARG instead of SCM_WTA.
4261Use SCM_MISC_ERROR or SCM_WRONG_TYPE_ARG instead of RETURN_SCM_WTA.
8dea8611 4262Use SCM_VCELL_INIT instead of SCM_CONST_LONG.
b3fcac34 4263Use SCM_WRONG_NUM_ARGS instead of SCM_WNA.
ced99e92
DH
4264Use SCM_CONSP instead of SCM_SLOPPY_CONSP.
4265Use !SCM_CONSP instead of SCM_SLOPPY_NCONSP.
b63a956d 4266
f7620510
DH
4267** Removed function: scm_struct_init
4268
93d40df2
DH
4269** Removed variable: scm_symhash_dim
4270
818febc0
GH
4271** Renamed function: scm_make_cont has been replaced by
4272scm_make_continuation, which has a different interface.
4273
cc4feeca
DH
4274** Deprecated function: scm_call_catching_errors
4275
4276Use scm_catch or scm_lazy_catch from throw.[ch] instead.
4277
28b06554
DH
4278** Deprecated function: scm_strhash
4279
4280Use scm_string_hash instead.
4281
1b9be268
DH
4282** Deprecated function: scm_vector_set_length_x
4283
4284Instead, create a fresh vector of the desired size and copy the contents.
4285
302f229e
MD
4286** scm_gensym has changed prototype
4287
4288scm_gensym now only takes one argument.
4289
1660782e
DH
4290** Deprecated type tags: scm_tc7_ssymbol, scm_tc7_msymbol, scm_tcs_symbols,
4291scm_tc7_lvector
28b06554
DH
4292
4293There is now only a single symbol type scm_tc7_symbol.
1660782e 4294The tag scm_tc7_lvector was not used anyway.
28b06554 4295
2f6fb7c5
KN
4296** Deprecated function: scm_make_smob_type_mfpe, scm_set_smob_mfpe.
4297
4298Use scm_make_smob_type and scm_set_smob_XXX instead.
4299
4300** New function scm_set_smob_apply.
4301
4302This can be used to set an apply function to a smob type.
4303
1f3908c4
KN
4304** Deprecated function: scm_strprint_obj
4305
4306Use scm_object_to_string instead.
4307
b3fcac34
DH
4308** Deprecated function: scm_wta
4309
4310Use scm_wrong_type_arg, or another appropriate error signalling function
4311instead.
4312
f3f9dcbc
MV
4313** Explicit support for obarrays has been deprecated.
4314
4315Use `scm_str2symbol' and the generic hashtable functions instead.
4316
4317** The concept of `vcells' has been deprecated.
4318
4319The data type `variable' is now used exclusively. `Vcells' have been
4320a low-level concept so you are likely not affected by this change.
4321
4322*** Deprecated functions: scm_sym2vcell, scm_sysintern,
4323 scm_sysintern0, scm_symbol_value0, scm_intern, scm_intern0.
4324
4325Use scm_c_define or scm_c_lookup instead, as appropriate.
4326
4327*** New functions: scm_c_module_lookup, scm_c_lookup,
4328 scm_c_module_define, scm_c_define, scm_module_lookup, scm_lookup,
4329 scm_module_define, scm_define.
4330
4331These functions work with variables instead of with vcells.
4332
311b6a3c
MV
4333** New functions for creating and defining `subr's and `gsubr's.
4334
4335The new functions more clearly distinguish between creating a subr (or
4336gsubr) object and adding it to the current module.
4337
4338These new functions are available: scm_c_make_subr, scm_c_define_subr,
4339scm_c_make_subr_with_generic, scm_c_define_subr_with_generic,
4340scm_c_make_gsubr, scm_c_define_gsubr, scm_c_make_gsubr_with_generic,
4341scm_c_define_gsubr_with_generic.
4342
4343** Deprecated functions: scm_make_subr, scm_make_subr_opt,
4344 scm_make_subr_with_generic, scm_make_gsubr,
4345 scm_make_gsubr_with_generic.
4346
4347Use the new ones from above instead.
4348
4349** C interface to the module system has changed.
4350
4351While we suggest that you avoid as many explicit module system
4352operations from C as possible for the time being, the C interface has
4353been made more similar to the high-level Scheme module system.
4354
4355*** New functions: scm_c_define_module, scm_c_use_module,
4356 scm_c_export, scm_c_resolve_module.
4357
4358They mostly work like their Scheme namesakes. scm_c_define_module
4359takes a function that is called a context where the new module is
4360current.
4361
4362*** Deprecated functions: scm_the_root_module, scm_make_module,
4363 scm_ensure_user_module, scm_load_scheme_module.
4364
4365Use the new functions instead.
4366
4367** Renamed function: scm_internal_with_fluids becomes
4368 scm_c_with_fluids.
4369
4370scm_internal_with_fluids is available as a deprecated function.
4371
4372** New function: scm_c_with_fluid.
4373
4374Just like scm_c_with_fluids, but takes one fluid and one value instead
4375of lists of same.
4376
1be6b49c
ML
4377** Deprecated typedefs: long_long, ulong_long.
4378
4379They are of questionable utility and they pollute the global
4380namespace.
4381
1be6b49c
ML
4382** Deprecated typedef: scm_sizet
4383
4384It is of questionable utility now that Guile requires ANSI C, and is
4385oddly named.
4386
4387** Deprecated typedefs: scm_port_rw_active, scm_port,
4388 scm_ptob_descriptor, scm_debug_info, scm_debug_frame, scm_fport,
4389 scm_option, scm_rstate, scm_rng, scm_array, scm_array_dim.
4390
4391Made more compliant with the naming policy by adding a _t at the end.
4392
4393** Deprecated functions: scm_mkbig, scm_big2num, scm_adjbig,
4394 scm_normbig, scm_copybig, scm_2ulong2big, scm_dbl2big, scm_big2dbl
4395
373f4948 4396With the exception of the mysterious scm_2ulong2big, they are still
1be6b49c
ML
4397available under new names (scm_i_mkbig etc). These functions are not
4398intended to be used in user code. You should avoid dealing with
4399bignums directly, and should deal with numbers in general (which can
4400be bignums).
4401
147c18a0
MD
4402** Change in behavior: scm_num2long, scm_num2ulong
4403
4404The scm_num2[u]long functions don't any longer accept an inexact
4405argument. This change in behavior is motivated by concordance with
4406R5RS: It is more common that a primitive doesn't want to accept an
4407inexact for an exact.
4408
1be6b49c 4409** New functions: scm_short2num, scm_ushort2num, scm_int2num,
f3f70257
ML
4410 scm_uint2num, scm_size2num, scm_ptrdiff2num, scm_num2short,
4411 scm_num2ushort, scm_num2int, scm_num2uint, scm_num2ptrdiff,
1be6b49c
ML
4412 scm_num2size.
4413
4414These are conversion functions between the various ANSI C integral
147c18a0
MD
4415types and Scheme numbers. NOTE: The scm_num2xxx functions don't
4416accept an inexact argument.
1be6b49c 4417
5437598b
MD
4418** New functions: scm_float2num, scm_double2num,
4419 scm_num2float, scm_num2double.
4420
4421These are conversion functions between the two ANSI C float types and
4422Scheme numbers.
4423
1be6b49c 4424** New number validation macros:
f3f70257 4425 SCM_NUM2{SIZE,PTRDIFF,SHORT,USHORT,INT,UINT}[_DEF]
1be6b49c
ML
4426
4427See above.
4428
fc62c86a
ML
4429** New functions: scm_gc_protect_object, scm_gc_unprotect_object
4430
4431These are just nicer-named old scm_protect_object and
4432scm_unprotect_object.
4433
4434** Deprecated functions: scm_protect_object, scm_unprotect_object
4435
4436** New functions: scm_gc_[un]register_root, scm_gc_[un]register_roots
4437
4438These functions can be used to register pointers to locations that
4439hold SCM values.
4440
5b2ad23b
ML
4441** Deprecated function: scm_create_hook.
4442
4443Its sins are: misleading name, non-modularity and lack of general
4444usefulness.
4445
c299f186 4446\f
cc36e791
JB
4447Changes since Guile 1.3.4:
4448
80f27102
JB
4449* Changes to the distribution
4450
ce358662
JB
4451** Trees from nightly snapshots and CVS now require you to run autogen.sh.
4452
4453We've changed the way we handle generated files in the Guile source
4454repository. As a result, the procedure for building trees obtained
4455from the nightly FTP snapshots or via CVS has changed:
4456- You must have appropriate versions of autoconf, automake, and
4457 libtool installed on your system. See README for info on how to
4458 obtain these programs.
4459- Before configuring the tree, you must first run the script
4460 `autogen.sh' at the top of the source tree.
4461
4462The Guile repository used to contain not only source files, written by
4463humans, but also some generated files, like configure scripts and
4464Makefile.in files. Even though the contents of these files could be
4465derived mechanically from other files present, we thought it would
4466make the tree easier to build if we checked them into CVS.
4467
4468However, this approach means that minor differences between
4469developer's installed tools and habits affected the whole team.
4470So we have removed the generated files from the repository, and
4471added the autogen.sh script, which will reconstruct them
4472appropriately.
4473
4474
dc914156
GH
4475** configure now has experimental options to remove support for certain
4476features:
52cfc69b 4477
dc914156
GH
4478--disable-arrays omit array and uniform array support
4479--disable-posix omit posix interfaces
4480--disable-networking omit networking interfaces
4481--disable-regex omit regular expression interfaces
52cfc69b
GH
4482
4483These are likely to become separate modules some day.
4484
9764c29b 4485** New configure option --enable-debug-freelist
e1b0d0ac 4486
38a15cfd
GB
4487This enables a debugging version of SCM_NEWCELL(), and also registers
4488an extra primitive, the setter `gc-set-debug-check-freelist!'.
4489
4490Configure with the --enable-debug-freelist option to enable
4491the gc-set-debug-check-freelist! primitive, and then use:
4492
4493(gc-set-debug-check-freelist! #t) # turn on checking of the freelist
4494(gc-set-debug-check-freelist! #f) # turn off checking
4495
4496Checking of the freelist forces a traversal of the freelist and
4497a garbage collection before each allocation of a cell. This can
4498slow down the interpreter dramatically, so the setter should be used to
4499turn on this extra processing only when necessary.
e1b0d0ac 4500
9764c29b
MD
4501** New configure option --enable-debug-malloc
4502
4503Include code for debugging of calls to scm_must_malloc/realloc/free.
4504
4505Checks that
4506
45071. objects freed by scm_must_free has been mallocated by scm_must_malloc
45082. objects reallocated by scm_must_realloc has been allocated by
4509 scm_must_malloc
45103. reallocated objects are reallocated with the same what string
4511
4512But, most importantly, it records the number of allocated objects of
4513each kind. This is useful when searching for memory leaks.
4514
4515A Guile compiled with this option provides the primitive
4516`malloc-stats' which returns an alist with pairs of kind and the
4517number of objects of that kind.
4518
e415cb06
MD
4519** All includes are now referenced relative to the root directory
4520
4521Since some users have had problems with mixups between Guile and
4522system headers, we have decided to always refer to Guile headers via
4523their parent directories. This essentially creates a "private name
4524space" for Guile headers. This means that the compiler only is given
4525-I options for the root build and root source directory.
4526
341f78c9
MD
4527** Header files kw.h and genio.h have been removed.
4528
4529** The module (ice-9 getopt-gnu-style) has been removed.
4530
e8855f8d
MD
4531** New module (ice-9 documentation)
4532
4533Implements the interface to documentation strings associated with
4534objects.
4535
0c0ffe09
KN
4536** New module (ice-9 time)
4537
4538Provides a macro `time', which displays execution time of a given form.
4539
cf7a5ee5
KN
4540** New module (ice-9 history)
4541
4542Loading this module enables value history in the repl.
4543
0af43c4a 4544* Changes to the stand-alone interpreter
bd9e24b3 4545
67ef2dca
MD
4546** New command line option --debug
4547
4548Start Guile with debugging evaluator and backtraces enabled.
4549
4550This is useful when debugging your .guile init file or scripts.
4551
aa4bb95d
MD
4552** New help facility
4553
341f78c9
MD
4554Usage: (help NAME) gives documentation about objects named NAME (a symbol)
4555 (help REGEXP) ditto for objects with names matching REGEXP (a string)
58e5b910 4556 (help 'NAME) gives documentation for NAME, even if it is not an object
341f78c9 4557 (help ,EXPR) gives documentation for object returned by EXPR
6c0201ad 4558 (help (my module)) gives module commentary for `(my module)'
341f78c9
MD
4559 (help) gives this text
4560
4561`help' searches among bindings exported from loaded modules, while
4562`apropos' searches among bindings visible from the "current" module.
4563
4564Examples: (help help)
4565 (help cons)
4566 (help "output-string")
aa4bb95d 4567
e8855f8d
MD
4568** `help' and `apropos' now prints full module names
4569
0af43c4a 4570** Dynamic linking now uses libltdl from the libtool package.
bd9e24b3 4571
0af43c4a
MD
4572The old system dependent code for doing dynamic linking has been
4573replaced with calls to the libltdl functions which do all the hairy
4574details for us.
bd9e24b3 4575
0af43c4a
MD
4576The major improvement is that you can now directly pass libtool
4577library names like "libfoo.la" to `dynamic-link' and `dynamic-link'
4578will be able to do the best shared library job you can get, via
4579libltdl.
bd9e24b3 4580
0af43c4a
MD
4581The way dynamic libraries are found has changed and is not really
4582portable across platforms, probably. It is therefore recommended to
4583use absolute filenames when possible.
4584
4585If you pass a filename without an extension to `dynamic-link', it will
4586try a few appropriate ones. Thus, the most platform ignorant way is
4587to specify a name like "libfoo", without any directories and
4588extensions.
0573ddae 4589
91163914
MD
4590** Guile COOP threads are now compatible with LinuxThreads
4591
4592Previously, COOP threading wasn't possible in applications linked with
4593Linux POSIX threads due to their use of the stack pointer to find the
4594thread context. This has now been fixed with a workaround which uses
4595the pthreads to allocate the stack.
4596
6c0201ad 4597** New primitives: `pkgdata-dir', `site-dir', `library-dir'
62b82274 4598
9770d235
MD
4599** Positions of erring expression in scripts
4600
4601With version 1.3.4, the location of the erring expression in Guile
4602scipts is no longer automatically reported. (This should have been
4603documented before the 1.3.4 release.)
4604
4605You can get this information by enabling recording of positions of
4606source expressions and running the debugging evaluator. Put this at
4607the top of your script (or in your "site" file):
4608
4609 (read-enable 'positions)
4610 (debug-enable 'debug)
4611
0573ddae
MD
4612** Backtraces in scripts
4613
4614It is now possible to get backtraces in scripts.
4615
4616Put
4617
4618 (debug-enable 'debug 'backtrace)
4619
4620at the top of the script.
4621
4622(The first options enables the debugging evaluator.
4623 The second enables backtraces.)
4624
e8855f8d
MD
4625** Part of module system symbol lookup now implemented in C
4626
4627The eval closure of most modules is now implemented in C. Since this
4628was one of the bottlenecks for loading speed, Guile now loads code
4629substantially faster than before.
4630
f25f761d
GH
4631** Attempting to get the value of an unbound variable now produces
4632an exception with a key of 'unbound-variable instead of 'misc-error.
4633
1a35eadc
GH
4634** The initial default output port is now unbuffered if it's using a
4635tty device. Previously in this situation it was line-buffered.
4636
820920e6
MD
4637** New hook: after-gc-hook
4638
4639after-gc-hook takes over the role of gc-thunk. This hook is run at
4640the first SCM_TICK after a GC. (Thus, the code is run at the same
4641point during evaluation as signal handlers.)
4642
4643Note that this hook should be used only for diagnostic and debugging
4644purposes. It is not certain that it will continue to be well-defined
4645when this hook is run in the future.
4646
4647C programmers: Note the new C level hooks scm_before_gc_c_hook,
4648scm_before_sweep_c_hook, scm_after_gc_c_hook.
4649
b5074b23
MD
4650** Improvements to garbage collector
4651
4652Guile 1.4 has a new policy for triggering heap allocation and
4653determining the sizes of heap segments. It fixes a number of problems
4654in the old GC.
4655
46561. The new policy can handle two separate pools of cells
4657 (2-word/4-word) better. (The old policy would run wild, allocating
4658 more and more memory for certain programs.)
4659
46602. The old code would sometimes allocate far too much heap so that the
4661 Guile process became gigantic. The new code avoids this.
4662
46633. The old code would sometimes allocate too little so that few cells
4664 were freed at GC so that, in turn, too much time was spent in GC.
4665
46664. The old code would often trigger heap allocation several times in a
4667 row. (The new scheme predicts how large the segments needs to be
4668 in order not to need further allocation.)
4669
e8855f8d
MD
4670All in all, the new GC policy will make larger applications more
4671efficient.
4672
b5074b23
MD
4673The new GC scheme also is prepared for POSIX threading. Threads can
4674allocate private pools of cells ("clusters") with just a single
4675function call. Allocation of single cells from such a cluster can
4676then proceed without any need of inter-thread synchronization.
4677
4678** New environment variables controlling GC parameters
4679
4680GUILE_MAX_SEGMENT_SIZE Maximal segment size
4681 (default = 2097000)
4682
4683Allocation of 2-word cell heaps:
4684
4685GUILE_INIT_SEGMENT_SIZE_1 Size of initial heap segment in bytes
4686 (default = 360000)
4687
4688GUILE_MIN_YIELD_1 Minimum number of freed cells at each
4689 GC in percent of total heap size
4690 (default = 40)
4691
4692Allocation of 4-word cell heaps
4693(used for real numbers and misc other objects):
4694
4695GUILE_INIT_SEGMENT_SIZE_2, GUILE_MIN_YIELD_2
4696
4697(See entry "Way for application to customize GC parameters" under
4698 section "Changes to the scm_ interface" below.)
4699
67ef2dca
MD
4700** Guile now implements reals using 4-word cells
4701
4702This speeds up computation with reals. (They were earlier allocated
4703with `malloc'.) There is still some room for optimizations, however.
4704
4705** Some further steps toward POSIX thread support have been taken
4706
4707*** Guile's critical sections (SCM_DEFER/ALLOW_INTS)
4708don't have much effect any longer, and many of them will be removed in
4709next release.
4710
4711*** Signals
4712are only handled at the top of the evaluator loop, immediately after
4713I/O, and in scm_equalp.
4714
4715*** The GC can allocate thread private pools of pairs.
4716
0af43c4a
MD
4717* Changes to Scheme functions and syntax
4718
a0128ebe 4719** close-input-port and close-output-port are now R5RS
7c1e0b12 4720
a0128ebe 4721These procedures have been turned into primitives and have R5RS behaviour.
7c1e0b12 4722
0af43c4a
MD
4723** New procedure: simple-format PORT MESSAGE ARG1 ...
4724
4725(ice-9 boot) makes `format' an alias for `simple-format' until possibly
4726extended by the more sophisticated version in (ice-9 format)
4727
4728(simple-format port message . args)
4729Write MESSAGE to DESTINATION, defaulting to `current-output-port'.
4730MESSAGE can contain ~A (was %s) and ~S (was %S) escapes. When printed,
4731the escapes are replaced with corresponding members of ARGS:
4732~A formats using `display' and ~S formats using `write'.
4733If DESTINATION is #t, then use the `current-output-port',
4734if DESTINATION is #f, then return a string containing the formatted text.
4735Does not add a trailing newline."
4736
4737** string-ref: the second argument is no longer optional.
4738
4739** string, list->string: no longer accept strings in their arguments,
4740only characters, for compatibility with R5RS.
4741
4742** New procedure: port-closed? PORT
4743Returns #t if PORT is closed or #f if it is open.
4744
0a9e521f
MD
4745** Deprecated: list*
4746
4747The list* functionality is now provided by cons* (SRFI-1 compliant)
4748
b5074b23
MD
4749** New procedure: cons* ARG1 ARG2 ... ARGn
4750
4751Like `list', but the last arg provides the tail of the constructed list,
4752returning (cons ARG1 (cons ARG2 (cons ... ARGn))).
4753
4754Requires at least one argument. If given one argument, that argument
4755is returned as result.
4756
4757This function is called `list*' in some other Schemes and in Common LISP.
4758
341f78c9
MD
4759** Removed deprecated: serial-map, serial-array-copy!, serial-array-map!
4760
e8855f8d
MD
4761** New procedure: object-documentation OBJECT
4762
4763Returns the documentation string associated with OBJECT. The
4764procedure uses a caching mechanism so that subsequent lookups are
4765faster.
4766
4767Exported by (ice-9 documentation).
4768
4769** module-name now returns full names of modules
4770
4771Previously, only the last part of the name was returned (`session' for
4772`(ice-9 session)'). Ex: `(ice-9 session)'.
4773
894a712b
DH
4774* Changes to the gh_ interface
4775
4776** Deprecated: gh_int2scmb
4777
4778Use gh_bool2scm instead.
4779
a2349a28
GH
4780* Changes to the scm_ interface
4781
810e1aec
MD
4782** Guile primitives now carry docstrings!
4783
4784Thanks to Greg Badros!
4785
0a9e521f 4786** Guile primitives are defined in a new way: SCM_DEFINE/SCM_DEFINE1/SCM_PROC
0af43c4a 4787
0a9e521f
MD
4788Now Guile primitives are defined using the SCM_DEFINE/SCM_DEFINE1/SCM_PROC
4789macros and must contain a docstring that is extracted into foo.doc using a new
0af43c4a
MD
4790guile-doc-snarf script (that uses guile-doc-snarf.awk).
4791
0a9e521f
MD
4792However, a major overhaul of these macros is scheduled for the next release of
4793guile.
4794
0af43c4a
MD
4795** Guile primitives use a new technique for validation of arguments
4796
4797SCM_VALIDATE_* macros are defined to ease the redundancy and improve
4798the readability of argument checking.
4799
4800** All (nearly?) K&R prototypes for functions replaced with ANSI C equivalents.
4801
894a712b 4802** New macros: SCM_PACK, SCM_UNPACK
f8a72ca4
MD
4803
4804Compose/decompose an SCM value.
4805
894a712b
DH
4806The SCM type is now treated as an abstract data type and may be defined as a
4807long, a void* or as a struct, depending on the architecture and compile time
4808options. This makes it easier to find several types of bugs, for example when
4809SCM values are treated as integers without conversion. Values of the SCM type
4810should be treated as "atomic" values. These macros are used when
f8a72ca4
MD
4811composing/decomposing an SCM value, either because you want to access
4812individual bits, or because you want to treat it as an integer value.
4813
4814E.g., in order to set bit 7 in an SCM value x, use the expression
4815
4816 SCM_PACK (SCM_UNPACK (x) | 0x80)
4817
e11f8b42
DH
4818** The name property of hooks is deprecated.
4819Thus, the use of SCM_HOOK_NAME and scm_make_hook_with_name is deprecated.
4820
4821You can emulate this feature by using object properties.
4822
6c0201ad 4823** Deprecated macros: SCM_INPORTP, SCM_OUTPORTP, SCM_CRDY, SCM_ICHRP,
894a712b
DH
4824SCM_ICHR, SCM_MAKICHR, SCM_SETJMPBUF, SCM_NSTRINGP, SCM_NRWSTRINGP,
4825SCM_NVECTORP
f8a72ca4 4826
894a712b 4827These macros will be removed in a future release of Guile.
7c1e0b12 4828
6c0201ad 4829** The following types, functions and macros from numbers.h are deprecated:
0a9e521f
MD
4830scm_dblproc, SCM_UNEGFIXABLE, SCM_FLOBUFLEN, SCM_INEXP, SCM_CPLXP, SCM_REAL,
4831SCM_IMAG, SCM_REALPART, scm_makdbl, SCM_SINGP, SCM_NUM2DBL, SCM_NO_BIGDIG
4832
a2349a28
GH
4833** Port internals: the rw_random variable in the scm_port structure
4834must be set to non-zero in any random access port. In recent Guile
4835releases it was only set for bidirectional random-access ports.
4836
7dcb364d
GH
4837** Port internals: the seek ptob procedure is now responsible for
4838resetting the buffers if required. The change was made so that in the
4839special case of reading the current position (i.e., seek p 0 SEEK_CUR)
4840the fport and strport ptobs can avoid resetting the buffers,
4841in particular to avoid discarding unread chars. An existing port
4842type can be fixed by adding something like the following to the
4843beginning of the ptob seek procedure:
4844
4845 if (pt->rw_active == SCM_PORT_READ)
4846 scm_end_input (object);
4847 else if (pt->rw_active == SCM_PORT_WRITE)
4848 ptob->flush (object);
4849
4850although to actually avoid resetting the buffers and discard unread
4851chars requires further hacking that depends on the characteristics
4852of the ptob.
4853
894a712b
DH
4854** Deprecated functions: scm_fseek, scm_tag
4855
4856These functions are no longer used and will be removed in a future version.
4857
f25f761d
GH
4858** The scm_sysmissing procedure is no longer used in libguile.
4859Unless it turns out to be unexpectedly useful to somebody, it will be
4860removed in a future version.
4861
0af43c4a
MD
4862** The format of error message strings has changed
4863
4864The two C procedures: scm_display_error and scm_error, as well as the
4865primitive `scm-error', now use scm_simple_format to do their work.
4866This means that the message strings of all code must be updated to use
4867~A where %s was used before, and ~S where %S was used before.
4868
4869During the period when there still are a lot of old Guiles out there,
4870you might want to support both old and new versions of Guile.
4871
4872There are basically two methods to achieve this. Both methods use
4873autoconf. Put
4874
4875 AC_CHECK_FUNCS(scm_simple_format)
4876
4877in your configure.in.
4878
4879Method 1: Use the string concatenation features of ANSI C's
4880 preprocessor.
4881
4882In C:
4883
4884#ifdef HAVE_SCM_SIMPLE_FORMAT
4885#define FMT_S "~S"
4886#else
4887#define FMT_S "%S"
4888#endif
4889
4890Then represent each of your error messages using a preprocessor macro:
4891
4892#define E_SPIDER_ERROR "There's a spider in your " ## FMT_S ## "!!!"
4893
4894In Scheme:
4895
4896(define fmt-s (if (defined? 'simple-format) "~S" "%S"))
4897(define make-message string-append)
4898
4899(define e-spider-error (make-message "There's a spider in your " fmt-s "!!!"))
4900
4901Method 2: Use the oldfmt function found in doc/oldfmt.c.
4902
4903In C:
4904
4905scm_misc_error ("picnic", scm_c_oldfmt0 ("There's a spider in your ~S!!!"),
4906 ...);
4907
4908In Scheme:
4909
4910(scm-error 'misc-error "picnic" (oldfmt "There's a spider in your ~S!!!")
4911 ...)
4912
4913
f3b5e185
MD
4914** Deprecated: coop_mutex_init, coop_condition_variable_init
4915
4916Don't use the functions coop_mutex_init and
4917coop_condition_variable_init. They will change.
4918
4919Use scm_mutex_init and scm_cond_init instead.
4920
f3b5e185
MD
4921** New function: int scm_cond_timedwait (scm_cond_t *COND, scm_mutex_t *MUTEX, const struct timespec *ABSTIME)
4922 `scm_cond_timedwait' atomically unlocks MUTEX and waits on
4923 COND, as `scm_cond_wait' does, but it also bounds the duration
4924 of the wait. If COND has not been signaled before time ABSTIME,
4925 the mutex MUTEX is re-acquired and `scm_cond_timedwait'
4926 returns the error code `ETIMEDOUT'.
4927
4928 The ABSTIME parameter specifies an absolute time, with the same
4929 origin as `time' and `gettimeofday': an ABSTIME of 0 corresponds
4930 to 00:00:00 GMT, January 1, 1970.
4931
4932** New function: scm_cond_broadcast (scm_cond_t *COND)
4933 `scm_cond_broadcast' restarts all the threads that are waiting
4934 on the condition variable COND. Nothing happens if no threads are
4935 waiting on COND.
4936
4937** New function: scm_key_create (scm_key_t *KEY, void (*destr_function) (void *))
4938 `scm_key_create' allocates a new TSD key. The key is stored in
4939 the location pointed to by KEY. There is no limit on the number
4940 of keys allocated at a given time. The value initially associated
4941 with the returned key is `NULL' in all currently executing threads.
4942
4943 The DESTR_FUNCTION argument, if not `NULL', specifies a destructor
4944 function associated with the key. When a thread terminates,
4945 DESTR_FUNCTION is called on the value associated with the key in
4946 that thread. The DESTR_FUNCTION is not called if a key is deleted
4947 with `scm_key_delete' or a value is changed with
4948 `scm_setspecific'. The order in which destructor functions are
4949 called at thread termination time is unspecified.
4950
4951 Destructors are not yet implemented.
4952
4953** New function: scm_setspecific (scm_key_t KEY, const void *POINTER)
4954 `scm_setspecific' changes the value associated with KEY in the
4955 calling thread, storing the given POINTER instead.
4956
4957** New function: scm_getspecific (scm_key_t KEY)
4958 `scm_getspecific' returns the value currently associated with
4959 KEY in the calling thread.
4960
4961** New function: scm_key_delete (scm_key_t KEY)
4962 `scm_key_delete' deallocates a TSD key. It does not check
4963 whether non-`NULL' values are associated with that key in the
4964 currently executing threads, nor call the destructor function
4965 associated with the key.
4966
820920e6
MD
4967** New function: scm_c_hook_init (scm_c_hook_t *HOOK, void *HOOK_DATA, scm_c_hook_type_t TYPE)
4968
4969Initialize a C level hook HOOK with associated HOOK_DATA and type
4970TYPE. (See scm_c_hook_run ().)
4971
4972** New function: scm_c_hook_add (scm_c_hook_t *HOOK, scm_c_hook_function_t FUNC, void *FUNC_DATA, int APPENDP)
4973
4974Add hook function FUNC with associated FUNC_DATA to HOOK. If APPENDP
4975is true, add it last, otherwise first. The same FUNC can be added
4976multiple times if FUNC_DATA differ and vice versa.
4977
4978** New function: scm_c_hook_remove (scm_c_hook_t *HOOK, scm_c_hook_function_t FUNC, void *FUNC_DATA)
4979
4980Remove hook function FUNC with associated FUNC_DATA from HOOK. A
4981function is only removed if both FUNC and FUNC_DATA matches.
4982
4983** New function: void *scm_c_hook_run (scm_c_hook_t *HOOK, void *DATA)
4984
4985Run hook HOOK passing DATA to the hook functions.
4986
4987If TYPE is SCM_C_HOOK_NORMAL, all hook functions are run. The value
4988returned is undefined.
4989
4990If TYPE is SCM_C_HOOK_OR, hook functions are run until a function
4991returns a non-NULL value. This value is returned as the result of
4992scm_c_hook_run. If all functions return NULL, NULL is returned.
4993
4994If TYPE is SCM_C_HOOK_AND, hook functions are run until a function
4995returns a NULL value, and NULL is returned. If all functions returns
4996a non-NULL value, the last value is returned.
4997
4998** New C level GC hooks
4999
5000Five new C level hooks has been added to the garbage collector.
5001
5002 scm_before_gc_c_hook
5003 scm_after_gc_c_hook
5004
5005are run before locking and after unlocking the heap. The system is
5006thus in a mode where evaluation can take place. (Except that
5007scm_before_gc_c_hook must not allocate new cells.)
5008
5009 scm_before_mark_c_hook
5010 scm_before_sweep_c_hook
5011 scm_after_sweep_c_hook
5012
5013are run when the heap is locked. These are intended for extension of
5014the GC in a modular fashion. Examples are the weaks and guardians
5015modules.
5016
b5074b23
MD
5017** Way for application to customize GC parameters
5018
5019The application can set up other default values for the GC heap
5020allocation parameters
5021
5022 GUILE_INIT_HEAP_SIZE_1, GUILE_MIN_YIELD_1,
5023 GUILE_INIT_HEAP_SIZE_2, GUILE_MIN_YIELD_2,
5024 GUILE_MAX_SEGMENT_SIZE,
5025
5026by setting
5027
5028 scm_default_init_heap_size_1, scm_default_min_yield_1,
5029 scm_default_init_heap_size_2, scm_default_min_yield_2,
5030 scm_default_max_segment_size
5031
5032respectively before callong scm_boot_guile.
5033
5034(See entry "New environment variables ..." in section
5035"Changes to the stand-alone interpreter" above.)
5036
9704841c
MD
5037** scm_protect_object/scm_unprotect_object now nest
5038
67ef2dca
MD
5039This means that you can call scm_protect_object multiple times on an
5040object and count on the object being protected until
5041scm_unprotect_object has been call the same number of times.
5042
5043The functions also have better time complexity.
5044
5045Still, it is usually possible to structure the application in a way
5046that you don't need to use these functions. For example, if you use a
5047protected standard Guile list to keep track of live objects rather
5048than some custom data type, objects will die a natural death when they
5049are no longer needed.
5050
0a9e521f
MD
5051** Deprecated type tags: scm_tc16_flo, scm_tc_flo, scm_tc_dblr, scm_tc_dblc
5052
5053Guile does not provide the float representation for inexact real numbers any
5054more. Now, only doubles are used to represent inexact real numbers. Further,
5055the tag names scm_tc_dblr and scm_tc_dblc have been changed to scm_tc16_real
5056and scm_tc16_complex, respectively.
5057
341f78c9
MD
5058** Removed deprecated type scm_smobfuns
5059
5060** Removed deprecated function scm_newsmob
5061
b5074b23
MD
5062** Warning: scm_make_smob_type_mfpe might become deprecated in a future release
5063
5064There is an ongoing discussion among the developers whether to
5065deprecate `scm_make_smob_type_mfpe' or not. Please use the current
5066standard interface (scm_make_smob_type, scm_set_smob_XXX) in new code
5067until this issue has been settled.
5068
341f78c9
MD
5069** Removed deprecated type tag scm_tc16_kw
5070
2728d7f4
MD
5071** Added type tag scm_tc16_keyword
5072
5073(This was introduced already in release 1.3.4 but was not documented
5074 until now.)
5075
67ef2dca
MD
5076** gdb_print now prints "*** Guile not initialized ***" until Guile initialized
5077
f25f761d
GH
5078* Changes to system call interfaces:
5079
28d77376
GH
5080** The "select" procedure now tests port buffers for the ability to
5081provide input or accept output. Previously only the underlying file
5082descriptors were checked.
5083
bd9e24b3
GH
5084** New variable PIPE_BUF: the maximum number of bytes that can be
5085atomically written to a pipe.
5086
f25f761d
GH
5087** If a facility is not available on the system when Guile is
5088compiled, the corresponding primitive procedure will not be defined.
5089Previously it would have been defined but would throw a system-error
5090exception if called. Exception handlers which catch this case may
5091need minor modification: an error will be thrown with key
5092'unbound-variable instead of 'system-error. Alternatively it's
5093now possible to use `defined?' to check whether the facility is
5094available.
5095
38c1d3c4 5096** Procedures which depend on the timezone should now give the correct
6c0201ad 5097result on systems which cache the TZ environment variable, even if TZ
38c1d3c4
GH
5098is changed without calling tzset.
5099
5c11cc9d
GH
5100* Changes to the networking interfaces:
5101
5102** New functions: htons, ntohs, htonl, ntohl: for converting short and
5103long integers between network and host format. For now, it's not
5104particularly convenient to do this kind of thing, but consider:
5105
5106(define write-network-long
5107 (lambda (value port)
5108 (let ((v (make-uniform-vector 1 1 0)))
5109 (uniform-vector-set! v 0 (htonl value))
5110 (uniform-vector-write v port))))
5111
5112(define read-network-long
5113 (lambda (port)
5114 (let ((v (make-uniform-vector 1 1 0)))
5115 (uniform-vector-read! v port)
5116 (ntohl (uniform-vector-ref v 0)))))
5117
5118** If inet-aton fails, it now throws an error with key 'misc-error
5119instead of 'system-error, since errno is not relevant.
5120
5121** Certain gethostbyname/gethostbyaddr failures now throw errors with
5122specific keys instead of 'system-error. The latter is inappropriate
5123since errno will not have been set. The keys are:
afe5177e 5124'host-not-found, 'try-again, 'no-recovery and 'no-data.
5c11cc9d
GH
5125
5126** sethostent, setnetent, setprotoent, setservent: now take an
5127optional argument STAYOPEN, which specifies whether the database
5128remains open after a database entry is accessed randomly (e.g., using
5129gethostbyname for the hosts database.) The default is #f. Previously
5130#t was always used.
5131
cc36e791 5132\f
43fa9a05
JB
5133Changes since Guile 1.3.2:
5134
0fdcbcaa
MD
5135* Changes to the stand-alone interpreter
5136
5137** Debugger
5138
5139An initial version of the Guile debugger written by Chris Hanson has
5140been added. The debugger is still under development but is included
5141in the distribution anyway since it is already quite useful.
5142
5143Type
5144
5145 (debug)
5146
5147after an error to enter the debugger. Type `help' inside the debugger
5148for a description of available commands.
5149
5150If you prefer to have stack frames numbered and printed in
5151anti-chronological order and prefer up in the stack to be down on the
5152screen as is the case in gdb, you can put
5153
5154 (debug-enable 'backwards)
5155
5156in your .guile startup file. (However, this means that Guile can't
5157use indentation to indicate stack level.)
5158
5159The debugger is autoloaded into Guile at the first use.
5160
5161** Further enhancements to backtraces
5162
5163There is a new debug option `width' which controls the maximum width
5164on the screen of printed stack frames. Fancy printing parameters
5165("level" and "length" as in Common LISP) are adaptively adjusted for
5166each stack frame to give maximum information while still fitting
5167within the bounds. If the stack frame can't be made to fit by
5168adjusting parameters, it is simply cut off at the end. This is marked
5169with a `$'.
5170
5171** Some modules are now only loaded when the repl is started
5172
5173The modules (ice-9 debug), (ice-9 session), (ice-9 threads) and (ice-9
5174regex) are now loaded into (guile-user) only if the repl has been
5175started. The effect is that the startup time for scripts has been
5176reduced to 30% of what it was previously.
5177
5178Correctly written scripts load the modules they require at the top of
5179the file and should not be affected by this change.
5180
ece41168
MD
5181** Hooks are now represented as smobs
5182
6822fe53
MD
5183* Changes to Scheme functions and syntax
5184
0ce204b0
MV
5185** Readline support has changed again.
5186
5187The old (readline-activator) module is gone. Use (ice-9 readline)
5188instead, which now contains all readline functionality. So the code
5189to activate readline is now
5190
5191 (use-modules (ice-9 readline))
5192 (activate-readline)
5193
5194This should work at any time, including from the guile prompt.
5195
5d195868
JB
5196To avoid confusion about the terms of Guile's license, please only
5197enable readline for your personal use; please don't make it the
5198default for others. Here is why we make this rather odd-sounding
5199request:
5200
5201Guile is normally licensed under a weakened form of the GNU General
5202Public License, which allows you to link code with Guile without
5203placing that code under the GPL. This exception is important to some
5204people.
5205
5206However, since readline is distributed under the GNU General Public
5207License, when you link Guile with readline, either statically or
5208dynamically, you effectively change Guile's license to the strict GPL.
5209Whenever you link any strictly GPL'd code into Guile, uses of Guile
5210which are normally permitted become forbidden. This is a rather
5211non-obvious consequence of the licensing terms.
5212
5213So, to make sure things remain clear, please let people choose for
5214themselves whether to link GPL'd libraries like readline with Guile.
5215
25b0654e
JB
5216** regexp-substitute/global has changed slightly, but incompatibly.
5217
5218If you include a function in the item list, the string of the match
5219object it receives is the same string passed to
5220regexp-substitute/global, not some suffix of that string.
5221Correspondingly, the match's positions are relative to the entire
5222string, not the suffix.
5223
5224If the regexp can match the empty string, the way matches are chosen
5225from the string has changed. regexp-substitute/global recognizes the
5226same set of matches that list-matches does; see below.
5227
5228** New function: list-matches REGEXP STRING [FLAGS]
5229
5230Return a list of match objects, one for every non-overlapping, maximal
5231match of REGEXP in STRING. The matches appear in left-to-right order.
5232list-matches only reports matches of the empty string if there are no
5233other matches which begin on, end at, or include the empty match's
5234position.
5235
5236If present, FLAGS is passed as the FLAGS argument to regexp-exec.
5237
5238** New function: fold-matches REGEXP STRING INIT PROC [FLAGS]
5239
5240For each match of REGEXP in STRING, apply PROC to the match object,
5241and the last value PROC returned, or INIT for the first call. Return
5242the last value returned by PROC. We apply PROC to the matches as they
5243appear from left to right.
5244
5245This function recognizes matches according to the same criteria as
5246list-matches.
5247
5248Thus, you could define list-matches like this:
5249
5250 (define (list-matches regexp string . flags)
5251 (reverse! (apply fold-matches regexp string '() cons flags)))
5252
5253If present, FLAGS is passed as the FLAGS argument to regexp-exec.
5254
bc848f7f
MD
5255** Hooks
5256
5257*** New function: hook? OBJ
5258
5259Return #t if OBJ is a hook, otherwise #f.
5260
ece41168
MD
5261*** New function: make-hook-with-name NAME [ARITY]
5262
5263Return a hook with name NAME and arity ARITY. The default value for
5264ARITY is 0. The only effect of NAME is that it will appear when the
5265hook object is printed to ease debugging.
5266
bc848f7f
MD
5267*** New function: hook-empty? HOOK
5268
5269Return #t if HOOK doesn't contain any procedures, otherwise #f.
5270
5271*** New function: hook->list HOOK
5272
5273Return a list of the procedures that are called when run-hook is
5274applied to HOOK.
5275
b074884f
JB
5276** `map' signals an error if its argument lists are not all the same length.
5277
5278This is the behavior required by R5RS, so this change is really a bug
5279fix. But it seems to affect a lot of people's code, so we're
5280mentioning it here anyway.
5281
6822fe53
MD
5282** Print-state handling has been made more transparent
5283
5284Under certain circumstances, ports are represented as a port with an
5285associated print state. Earlier, this pair was represented as a pair
5286(see "Some magic has been added to the printer" below). It is now
5287indistinguishable (almost; see `get-print-state') from a port on the
5288user level.
5289
5290*** New function: port-with-print-state OUTPUT-PORT PRINT-STATE
5291
5292Return a new port with the associated print state PRINT-STATE.
5293
5294*** New function: get-print-state OUTPUT-PORT
5295
5296Return the print state associated with this port if it exists,
5297otherwise return #f.
5298
340a8770 5299*** New function: directory-stream? OBJECT
77242ff9 5300
340a8770 5301Returns true iff OBJECT is a directory stream --- the sort of object
77242ff9
GH
5302returned by `opendir'.
5303
0fdcbcaa
MD
5304** New function: using-readline?
5305
5306Return #t if readline is in use in the current repl.
5307
26405bc1
MD
5308** structs will be removed in 1.4
5309
5310Structs will be replaced in Guile 1.4. We will merge GOOPS into Guile
5311and use GOOPS objects as the fundamental record type.
5312
49199eaa
MD
5313* Changes to the scm_ interface
5314
26405bc1
MD
5315** structs will be removed in 1.4
5316
5317The entire current struct interface (struct.c, struct.h) will be
5318replaced in Guile 1.4. We will merge GOOPS into libguile and use
5319GOOPS objects as the fundamental record type.
5320
49199eaa
MD
5321** The internal representation of subr's has changed
5322
5323Instead of giving a hint to the subr name, the CAR field of the subr
5324now contains an index to a subr entry in scm_subr_table.
5325
5326*** New variable: scm_subr_table
5327
5328An array of subr entries. A subr entry contains the name, properties
5329and documentation associated with the subr. The properties and
5330documentation slots are not yet used.
5331
5332** A new scheme for "forwarding" calls to a builtin to a generic function
5333
5334It is now possible to extend the functionality of some Guile
5335primitives by letting them defer a call to a GOOPS generic function on
240ed66f 5336argument mismatch. This means that there is no loss of efficiency in
daf516d6 5337normal evaluation.
49199eaa
MD
5338
5339Example:
5340
daf516d6 5341 (use-modules (oop goops)) ; Must be GOOPS version 0.2.
49199eaa
MD
5342 (define-method + ((x <string>) (y <string>))
5343 (string-append x y))
5344
86a4d62e
MD
5345+ will still be as efficient as usual in numerical calculations, but
5346can also be used for concatenating strings.
49199eaa 5347
86a4d62e 5348Who will be the first one to extend Guile's numerical tower to
daf516d6
MD
5349rationals? :) [OK, there a few other things to fix before this can
5350be made in a clean way.]
49199eaa
MD
5351
5352*** New snarf macros for defining primitives: SCM_GPROC, SCM_GPROC1
5353
5354 New macro: SCM_GPROC (CNAME, SNAME, REQ, OPT, VAR, CFUNC, GENERIC)
5355
5356 New macro: SCM_GPROC1 (CNAME, SNAME, TYPE, CFUNC, GENERIC)
5357
d02cafe7 5358These do the same job as SCM_PROC and SCM_PROC1, but they also define
49199eaa
MD
5359a variable GENERIC which can be used by the dispatch macros below.
5360
5361[This is experimental code which may change soon.]
5362
5363*** New macros for forwarding control to a generic on arg type error
5364
5365 New macro: SCM_WTA_DISPATCH_1 (GENERIC, ARG1, POS, SUBR)
5366
5367 New macro: SCM_WTA_DISPATCH_2 (GENERIC, ARG1, ARG2, POS, SUBR)
5368
5369These correspond to the scm_wta function call, and have the same
5370behaviour until the user has called the GOOPS primitive
5371`enable-primitive-generic!'. After that, these macros will apply the
5372generic function GENERIC to the argument(s) instead of calling
5373scm_wta.
5374
5375[This is experimental code which may change soon.]
5376
5377*** New macros for argument testing with generic dispatch
5378
5379 New macro: SCM_GASSERT1 (COND, GENERIC, ARG1, POS, SUBR)
5380
5381 New macro: SCM_GASSERT2 (COND, GENERIC, ARG1, ARG2, POS, SUBR)
5382
5383These correspond to the SCM_ASSERT macro, but will defer control to
5384GENERIC on error after `enable-primitive-generic!' has been called.
5385
5386[This is experimental code which may change soon.]
5387
5388** New function: SCM scm_eval_body (SCM body, SCM env)
5389
5390Evaluates the body of a special form.
5391
5392** The internal representation of struct's has changed
5393
5394Previously, four slots were allocated for the procedure(s) of entities
5395and operators. The motivation for this representation had to do with
5396the structure of the evaluator, the wish to support tail-recursive
5397generic functions, and efficiency. Since the generic function
5398dispatch mechanism has changed, there is no longer a need for such an
5399expensive representation, and the representation has been simplified.
5400
5401This should not make any difference for most users.
5402
5403** GOOPS support has been cleaned up.
5404
5405Some code has been moved from eval.c to objects.c and code in both of
5406these compilation units has been cleaned up and better structured.
5407
5408*** New functions for applying generic functions
5409
5410 New function: SCM scm_apply_generic (GENERIC, ARGS)
5411 New function: SCM scm_call_generic_0 (GENERIC)
5412 New function: SCM scm_call_generic_1 (GENERIC, ARG1)
5413 New function: SCM scm_call_generic_2 (GENERIC, ARG1, ARG2)
5414 New function: SCM scm_call_generic_3 (GENERIC, ARG1, ARG2, ARG3)
5415
ece41168
MD
5416** Deprecated function: scm_make_named_hook
5417
5418It is now replaced by:
5419
5420** New function: SCM scm_create_hook (const char *name, int arity)
5421
5422Creates a hook in the same way as make-hook above but also
5423binds a variable named NAME to it.
5424
5425This is the typical way of creating a hook from C code.
5426
5427Currently, the variable is created in the "current" module.
5428This might change when we get the new module system.
5429
5430[The behaviour is identical to scm_make_named_hook.]
5431
5432
43fa9a05 5433\f
f3227c7a
JB
5434Changes since Guile 1.3:
5435
6ca345f3
JB
5436* Changes to mailing lists
5437
5438** Some of the Guile mailing lists have moved to sourceware.cygnus.com.
5439
5440See the README file to find current addresses for all the Guile
5441mailing lists.
5442
d77fb593
JB
5443* Changes to the distribution
5444
1d335863
JB
5445** Readline support is no longer included with Guile by default.
5446
5447Based on the different license terms of Guile and Readline, we
5448concluded that Guile should not *by default* cause the linking of
5449Readline into an application program. Readline support is now offered
5450as a separate module, which is linked into an application only when
5451you explicitly specify it.
5452
5453Although Guile is GNU software, its distribution terms add a special
5454exception to the usual GNU General Public License (GPL). Guile's
5455license includes a clause that allows you to link Guile with non-free
5456programs. We add this exception so as not to put Guile at a
5457disadvantage vis-a-vis other extensibility packages that support other
5458languages.
5459
5460In contrast, the GNU Readline library is distributed under the GNU
5461General Public License pure and simple. This means that you may not
5462link Readline, even dynamically, into an application unless it is
5463distributed under a free software license that is compatible the GPL.
5464
5465Because of this difference in distribution terms, an application that
5466can use Guile may not be able to use Readline. Now users will be
5467explicitly offered two independent decisions about the use of these
5468two packages.
d77fb593 5469
0e8a8468
MV
5470You can activate the readline support by issuing
5471
5472 (use-modules (readline-activator))
5473 (activate-readline)
5474
5475from your ".guile" file, for example.
5476
e4eae9b1
MD
5477* Changes to the stand-alone interpreter
5478
67ad463a
MD
5479** All builtins now print as primitives.
5480Previously builtin procedures not belonging to the fundamental subr
5481types printed as #<compiled closure #<primitive-procedure gsubr-apply>>.
5482Now, they print as #<primitive-procedure NAME>.
5483
5484** Backtraces slightly more intelligible.
5485gsubr-apply and macro transformer application frames no longer appear
5486in backtraces.
5487
69c6acbb
JB
5488* Changes to Scheme functions and syntax
5489
2a52b429
MD
5490** Guile now correctly handles internal defines by rewriting them into
5491their equivalent letrec. Previously, internal defines would
5492incrementally add to the innermost environment, without checking
5493whether the restrictions specified in RnRS were met. This lead to the
5494correct behaviour when these restriction actually were met, but didn't
5495catch all illegal uses. Such an illegal use could lead to crashes of
5496the Guile interpreter or or other unwanted results. An example of
5497incorrect internal defines that made Guile behave erratically:
5498
5499 (let ()
5500 (define a 1)
5501 (define (b) a)
5502 (define c (1+ (b)))
5503 (define d 3)
5504
5505 (b))
5506
5507 => 2
5508
5509The problem with this example is that the definition of `c' uses the
5510value of `b' directly. This confuses the meoization machine of Guile
5511so that the second call of `b' (this time in a larger environment that
5512also contains bindings for `c' and `d') refers to the binding of `c'
5513instead of `a'. You could also make Guile crash with a variation on
5514this theme:
5515
5516 (define (foo flag)
5517 (define a 1)
5518 (define (b flag) (if flag a 1))
5519 (define c (1+ (b flag)))
5520 (define d 3)
5521
5522 (b #t))
5523
5524 (foo #f)
5525 (foo #t)
5526
5527From now on, Guile will issue an `Unbound variable: b' error message
5528for both examples.
5529
36d3d540
MD
5530** Hooks
5531
5532A hook contains a list of functions which should be called on
5533particular occasions in an existing program. Hooks are used for
5534customization.
5535
5536A window manager might have a hook before-window-map-hook. The window
5537manager uses the function run-hooks to call all functions stored in
5538before-window-map-hook each time a window is mapped. The user can
5539store functions in the hook using add-hook!.
5540
5541In Guile, hooks are first class objects.
5542
5543*** New function: make-hook [N_ARGS]
5544
5545Return a hook for hook functions which can take N_ARGS arguments.
5546The default value for N_ARGS is 0.
5547
ad91d6c3
MD
5548(See also scm_make_named_hook below.)
5549
36d3d540
MD
5550*** New function: add-hook! HOOK PROC [APPEND_P]
5551
5552Put PROC at the beginning of the list of functions stored in HOOK.
5553If APPEND_P is supplied, and non-false, put PROC at the end instead.
5554
5555PROC must be able to take the number of arguments specified when the
5556hook was created.
5557
5558If PROC already exists in HOOK, then remove it first.
5559
5560*** New function: remove-hook! HOOK PROC
5561
5562Remove PROC from the list of functions in HOOK.
5563
5564*** New function: reset-hook! HOOK
5565
5566Clear the list of hook functions stored in HOOK.
5567
5568*** New function: run-hook HOOK ARG1 ...
5569
5570Run all hook functions stored in HOOK with arguments ARG1 ... .
5571The number of arguments supplied must correspond to the number given
5572when the hook was created.
5573
56a19408
MV
5574** The function `dynamic-link' now takes optional keyword arguments.
5575 The only keyword argument that is currently defined is `:global
5576 BOOL'. With it, you can control whether the shared library will be
5577 linked in global mode or not. In global mode, the symbols from the
5578 linked library can be used to resolve references from other
5579 dynamically linked libraries. In non-global mode, the linked
5580 library is essentially invisible and can only be accessed via
5581 `dynamic-func', etc. The default is now to link in global mode.
5582 Previously, the default has been non-global mode.
5583
5584 The `#:global' keyword is only effective on platforms that support
5585 the dlopen family of functions.
5586
ad226f25 5587** New function `provided?'
b7e13f65
JB
5588
5589 - Function: provided? FEATURE
5590 Return true iff FEATURE is supported by this installation of
5591 Guile. FEATURE must be a symbol naming a feature; the global
5592 variable `*features*' is a list of available features.
5593
ad226f25
JB
5594** Changes to the module (ice-9 expect):
5595
5596*** The expect-strings macro now matches `$' in a regular expression
5597 only at a line-break or end-of-file by default. Previously it would
ab711359
JB
5598 match the end of the string accumulated so far. The old behaviour
5599 can be obtained by setting the variable `expect-strings-exec-flags'
5600 to 0.
ad226f25
JB
5601
5602*** The expect-strings macro now uses a variable `expect-strings-exec-flags'
5603 for the regexp-exec flags. If `regexp/noteol' is included, then `$'
5604 in a regular expression will still match before a line-break or
5605 end-of-file. The default is `regexp/noteol'.
5606
6c0201ad 5607*** The expect-strings macro now uses a variable
ad226f25
JB
5608 `expect-strings-compile-flags' for the flags to be supplied to
5609 `make-regexp'. The default is `regexp/newline', which was previously
5610 hard-coded.
5611
5612*** The expect macro now supplies two arguments to a match procedure:
ab711359
JB
5613 the current accumulated string and a flag to indicate whether
5614 end-of-file has been reached. Previously only the string was supplied.
5615 If end-of-file is reached, the match procedure will be called an
5616 additional time with the same accumulated string as the previous call
5617 but with the flag set.
ad226f25 5618
b7e13f65
JB
5619** New module (ice-9 format), implementing the Common Lisp `format' function.
5620
5621This code, and the documentation for it that appears here, was
5622borrowed from SLIB, with minor adaptations for Guile.
5623
5624 - Function: format DESTINATION FORMAT-STRING . ARGUMENTS
5625 An almost complete implementation of Common LISP format description
5626 according to the CL reference book `Common LISP' from Guy L.
5627 Steele, Digital Press. Backward compatible to most of the
5628 available Scheme format implementations.
5629
5630 Returns `#t', `#f' or a string; has side effect of printing
5631 according to FORMAT-STRING. If DESTINATION is `#t', the output is
5632 to the current output port and `#t' is returned. If DESTINATION
5633 is `#f', a formatted string is returned as the result of the call.
5634 NEW: If DESTINATION is a string, DESTINATION is regarded as the
5635 format string; FORMAT-STRING is then the first argument and the
5636 output is returned as a string. If DESTINATION is a number, the
5637 output is to the current error port if available by the
5638 implementation. Otherwise DESTINATION must be an output port and
5639 `#t' is returned.
5640
5641 FORMAT-STRING must be a string. In case of a formatting error
5642 format returns `#f' and prints a message on the current output or
5643 error port. Characters are output as if the string were output by
5644 the `display' function with the exception of those prefixed by a
5645 tilde (~). For a detailed description of the FORMAT-STRING syntax
5646 please consult a Common LISP format reference manual. For a test
5647 suite to verify this format implementation load `formatst.scm'.
5648 Please send bug reports to `lutzeb@cs.tu-berlin.de'.
5649
5650 Note: `format' is not reentrant, i.e. only one `format'-call may
5651 be executed at a time.
5652
5653
5654*** Format Specification (Format version 3.0)
5655
5656 Please consult a Common LISP format reference manual for a detailed
5657description of the format string syntax. For a demonstration of the
5658implemented directives see `formatst.scm'.
5659
5660 This implementation supports directive parameters and modifiers (`:'
5661and `@' characters). Multiple parameters must be separated by a comma
5662(`,'). Parameters can be numerical parameters (positive or negative),
5663character parameters (prefixed by a quote character (`''), variable
5664parameters (`v'), number of rest arguments parameter (`#'), empty and
5665default parameters. Directive characters are case independent. The
5666general form of a directive is:
5667
5668DIRECTIVE ::= ~{DIRECTIVE-PARAMETER,}[:][@]DIRECTIVE-CHARACTER
5669
5670DIRECTIVE-PARAMETER ::= [ [-|+]{0-9}+ | 'CHARACTER | v | # ]
5671
5672*** Implemented CL Format Control Directives
5673
5674 Documentation syntax: Uppercase characters represent the
5675corresponding control directive characters. Lowercase characters
5676represent control directive parameter descriptions.
5677
5678`~A'
5679 Any (print as `display' does).
5680 `~@A'
5681 left pad.
5682
5683 `~MINCOL,COLINC,MINPAD,PADCHARA'
5684 full padding.
5685
5686`~S'
5687 S-expression (print as `write' does).
5688 `~@S'
5689 left pad.
5690
5691 `~MINCOL,COLINC,MINPAD,PADCHARS'
5692 full padding.
5693
5694`~D'
5695 Decimal.
5696 `~@D'
5697 print number sign always.
5698
5699 `~:D'
5700 print comma separated.
5701
5702 `~MINCOL,PADCHAR,COMMACHARD'
5703 padding.
5704
5705`~X'
5706 Hexadecimal.
5707 `~@X'
5708 print number sign always.
5709
5710 `~:X'
5711 print comma separated.
5712
5713 `~MINCOL,PADCHAR,COMMACHARX'
5714 padding.
5715
5716`~O'
5717 Octal.
5718 `~@O'
5719 print number sign always.
5720
5721 `~:O'
5722 print comma separated.
5723
5724 `~MINCOL,PADCHAR,COMMACHARO'
5725 padding.
5726
5727`~B'
5728 Binary.
5729 `~@B'
5730 print number sign always.
5731
5732 `~:B'
5733 print comma separated.
5734
5735 `~MINCOL,PADCHAR,COMMACHARB'
5736 padding.
5737
5738`~NR'
5739 Radix N.
5740 `~N,MINCOL,PADCHAR,COMMACHARR'
5741 padding.
5742
5743`~@R'
5744 print a number as a Roman numeral.
5745
5746`~:@R'
5747 print a number as an "old fashioned" Roman numeral.
5748
5749`~:R'
5750 print a number as an ordinal English number.
5751
5752`~:@R'
5753 print a number as a cardinal English number.
5754
5755`~P'
5756 Plural.
5757 `~@P'
5758 prints `y' and `ies'.
5759
5760 `~:P'
5761 as `~P but jumps 1 argument backward.'
5762
5763 `~:@P'
5764 as `~@P but jumps 1 argument backward.'
5765
5766`~C'
5767 Character.
5768 `~@C'
5769 prints a character as the reader can understand it (i.e. `#\'
5770 prefixing).
5771
5772 `~:C'
5773 prints a character as emacs does (eg. `^C' for ASCII 03).
5774
5775`~F'
5776 Fixed-format floating-point (prints a flonum like MMM.NNN).
5777 `~WIDTH,DIGITS,SCALE,OVERFLOWCHAR,PADCHARF'
5778 `~@F'
5779 If the number is positive a plus sign is printed.
5780
5781`~E'
5782 Exponential floating-point (prints a flonum like MMM.NNN`E'EE).
5783 `~WIDTH,DIGITS,EXPONENTDIGITS,SCALE,OVERFLOWCHAR,PADCHAR,EXPONENTCHARE'
5784 `~@E'
5785 If the number is positive a plus sign is printed.
5786
5787`~G'
5788 General floating-point (prints a flonum either fixed or
5789 exponential).
5790 `~WIDTH,DIGITS,EXPONENTDIGITS,SCALE,OVERFLOWCHAR,PADCHAR,EXPONENTCHARG'
5791 `~@G'
5792 If the number is positive a plus sign is printed.
5793
5794`~$'
5795 Dollars floating-point (prints a flonum in fixed with signs
5796 separated).
5797 `~DIGITS,SCALE,WIDTH,PADCHAR$'
5798 `~@$'
5799 If the number is positive a plus sign is printed.
5800
5801 `~:@$'
5802 A sign is always printed and appears before the padding.
5803
5804 `~:$'
5805 The sign appears before the padding.
5806
5807`~%'
5808 Newline.
5809 `~N%'
5810 print N newlines.
5811
5812`~&'
5813 print newline if not at the beginning of the output line.
5814 `~N&'
5815 prints `~&' and then N-1 newlines.
5816
5817`~|'
5818 Page Separator.
5819 `~N|'
5820 print N page separators.
5821
5822`~~'
5823 Tilde.
5824 `~N~'
5825 print N tildes.
5826
5827`~'<newline>
5828 Continuation Line.
5829 `~:'<newline>
5830 newline is ignored, white space left.
5831
5832 `~@'<newline>
5833 newline is left, white space ignored.
5834
5835`~T'
5836 Tabulation.
5837 `~@T'
5838 relative tabulation.
5839
5840 `~COLNUM,COLINCT'
5841 full tabulation.
5842
5843`~?'
5844 Indirection (expects indirect arguments as a list).
5845 `~@?'
5846 extracts indirect arguments from format arguments.
5847
5848`~(STR~)'
5849 Case conversion (converts by `string-downcase').
5850 `~:(STR~)'
5851 converts by `string-capitalize'.
5852
5853 `~@(STR~)'
5854 converts by `string-capitalize-first'.
5855
5856 `~:@(STR~)'
5857 converts by `string-upcase'.
5858
5859`~*'
5860 Argument Jumping (jumps 1 argument forward).
5861 `~N*'
5862 jumps N arguments forward.
5863
5864 `~:*'
5865 jumps 1 argument backward.
5866
5867 `~N:*'
5868 jumps N arguments backward.
5869
5870 `~@*'
5871 jumps to the 0th argument.
5872
5873 `~N@*'
5874 jumps to the Nth argument (beginning from 0)
5875
5876`~[STR0~;STR1~;...~;STRN~]'
5877 Conditional Expression (numerical clause conditional).
5878 `~N['
5879 take argument from N.
5880
5881 `~@['
5882 true test conditional.
5883
5884 `~:['
5885 if-else-then conditional.
5886
5887 `~;'
5888 clause separator.
5889
5890 `~:;'
5891 default clause follows.
5892
5893`~{STR~}'
5894 Iteration (args come from the next argument (a list)).
5895 `~N{'
5896 at most N iterations.
5897
5898 `~:{'
5899 args from next arg (a list of lists).
5900
5901 `~@{'
5902 args from the rest of arguments.
5903
5904 `~:@{'
5905 args from the rest args (lists).
5906
5907`~^'
5908 Up and out.
5909 `~N^'
5910 aborts if N = 0
5911
5912 `~N,M^'
5913 aborts if N = M
5914
5915 `~N,M,K^'
5916 aborts if N <= M <= K
5917
5918*** Not Implemented CL Format Control Directives
5919
5920`~:A'
5921 print `#f' as an empty list (see below).
5922
5923`~:S'
5924 print `#f' as an empty list (see below).
5925
5926`~<~>'
5927 Justification.
5928
5929`~:^'
5930 (sorry I don't understand its semantics completely)
5931
5932*** Extended, Replaced and Additional Control Directives
5933
5934`~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHD'
5935`~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHX'
5936`~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHO'
5937`~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHB'
5938`~N,MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHR'
5939 COMMAWIDTH is the number of characters between two comma
5940 characters.
5941
5942`~I'
5943 print a R4RS complex number as `~F~@Fi' with passed parameters for
5944 `~F'.
5945
5946`~Y'
5947 Pretty print formatting of an argument for scheme code lists.
5948
5949`~K'
5950 Same as `~?.'
5951
5952`~!'
5953 Flushes the output if format DESTINATION is a port.
5954
5955`~_'
5956 Print a `#\space' character
5957 `~N_'
5958 print N `#\space' characters.
5959
5960`~/'
5961 Print a `#\tab' character
5962 `~N/'
5963 print N `#\tab' characters.
5964
5965`~NC'
5966 Takes N as an integer representation for a character. No arguments
5967 are consumed. N is converted to a character by `integer->char'. N
5968 must be a positive decimal number.
5969
5970`~:S'
5971 Print out readproof. Prints out internal objects represented as
5972 `#<...>' as strings `"#<...>"' so that the format output can always
5973 be processed by `read'.
5974
5975`~:A'
5976 Print out readproof. Prints out internal objects represented as
5977 `#<...>' as strings `"#<...>"' so that the format output can always
5978 be processed by `read'.
5979
5980`~Q'
5981 Prints information and a copyright notice on the format
5982 implementation.
5983 `~:Q'
5984 prints format version.
5985
5986`~F, ~E, ~G, ~$'
5987 may also print number strings, i.e. passing a number as a string
5988 and format it accordingly.
5989
5990*** Configuration Variables
5991
5992 The format module exports some configuration variables to suit the
5993systems and users needs. There should be no modification necessary for
5994the configuration that comes with Guile. Format detects automatically
5995if the running scheme system implements floating point numbers and
5996complex numbers.
5997
5998format:symbol-case-conv
5999 Symbols are converted by `symbol->string' so the case type of the
6000 printed symbols is implementation dependent.
6001 `format:symbol-case-conv' is a one arg closure which is either
6002 `#f' (no conversion), `string-upcase', `string-downcase' or
6003 `string-capitalize'. (default `#f')
6004
6005format:iobj-case-conv
6006 As FORMAT:SYMBOL-CASE-CONV but applies for the representation of
6007 implementation internal objects. (default `#f')
6008
6009format:expch
6010 The character prefixing the exponent value in `~E' printing.
6011 (default `#\E')
6012
6013*** Compatibility With Other Format Implementations
6014
6015SLIB format 2.x:
6016 See `format.doc'.
6017
6018SLIB format 1.4:
6019 Downward compatible except for padding support and `~A', `~S',
6020 `~P', `~X' uppercase printing. SLIB format 1.4 uses C-style
6021 `printf' padding support which is completely replaced by the CL
6022 `format' padding style.
6023
6024MIT C-Scheme 7.1:
6025 Downward compatible except for `~', which is not documented
6026 (ignores all characters inside the format string up to a newline
6027 character). (7.1 implements `~a', `~s', ~NEWLINE, `~~', `~%',
6028 numerical and variable parameters and `:/@' modifiers in the CL
6029 sense).
6030
6031Elk 1.5/2.0:
6032 Downward compatible except for `~A' and `~S' which print in
6033 uppercase. (Elk implements `~a', `~s', `~~', and `~%' (no
6034 directive parameters or modifiers)).
6035
6036Scheme->C 01nov91:
6037 Downward compatible except for an optional destination parameter:
6038 S2C accepts a format call without a destination which returns a
6039 formatted string. This is equivalent to a #f destination in S2C.
6040 (S2C implements `~a', `~s', `~c', `~%', and `~~' (no directive
6041 parameters or modifiers)).
6042
6043
e7d37b0a 6044** Changes to string-handling functions.
b7e13f65 6045
e7d37b0a 6046These functions were added to support the (ice-9 format) module, above.
b7e13f65 6047
e7d37b0a
JB
6048*** New function: string-upcase STRING
6049*** New function: string-downcase STRING
b7e13f65 6050
e7d37b0a
JB
6051These are non-destructive versions of the existing string-upcase! and
6052string-downcase! functions.
b7e13f65 6053
e7d37b0a
JB
6054*** New function: string-capitalize! STRING
6055*** New function: string-capitalize STRING
6056
6057These functions convert the first letter of each word in the string to
6058upper case. Thus:
6059
6060 (string-capitalize "howdy there")
6061 => "Howdy There"
6062
6063As with the other functions, string-capitalize! modifies the string in
6064place, while string-capitalize returns a modified copy of its argument.
6065
6066*** New function: string-ci->symbol STRING
6067
6068Return a symbol whose name is STRING, but having the same case as if
6069the symbol had be read by `read'.
6070
6071Guile can be configured to be sensitive or insensitive to case
6072differences in Scheme identifiers. If Guile is case-insensitive, all
6073symbols are converted to lower case on input. The `string-ci->symbol'
6074function returns a symbol whose name in STRING, transformed as Guile
6075would if STRING were input.
6076
6077*** New function: substring-move! STRING1 START END STRING2 START
6078
6079Copy the substring of STRING1 from START (inclusive) to END
6080(exclusive) to STRING2 at START. STRING1 and STRING2 may be the same
6081string, and the source and destination areas may overlap; in all
6082cases, the function behaves as if all the characters were copied
6083simultanously.
6084
6c0201ad 6085*** Extended functions: substring-move-left! substring-move-right!
e7d37b0a
JB
6086
6087These functions now correctly copy arbitrarily overlapping substrings;
6088they are both synonyms for substring-move!.
b7e13f65 6089
b7e13f65 6090
deaceb4e
JB
6091** New module (ice-9 getopt-long), with the function `getopt-long'.
6092
6093getopt-long is a function for parsing command-line arguments in a
6094manner consistent with other GNU programs.
6095
6096(getopt-long ARGS GRAMMAR)
6097Parse the arguments ARGS according to the argument list grammar GRAMMAR.
6098
6099ARGS should be a list of strings. Its first element should be the
6100name of the program; subsequent elements should be the arguments
6101that were passed to the program on the command line. The
6102`program-arguments' procedure returns a list of this form.
6103
6104GRAMMAR is a list of the form:
6105((OPTION (PROPERTY VALUE) ...) ...)
6106
6107Each OPTION should be a symbol. `getopt-long' will accept a
6108command-line option named `--OPTION'.
6109Each option can have the following (PROPERTY VALUE) pairs:
6110
6111 (single-char CHAR) --- Accept `-CHAR' as a single-character
6112 equivalent to `--OPTION'. This is how to specify traditional
6113 Unix-style flags.
6114 (required? BOOL) --- If BOOL is true, the option is required.
6115 getopt-long will raise an error if it is not found in ARGS.
6116 (value BOOL) --- If BOOL is #t, the option accepts a value; if
6117 it is #f, it does not; and if it is the symbol
6118 `optional', the option may appear in ARGS with or
6c0201ad 6119 without a value.
deaceb4e
JB
6120 (predicate FUNC) --- If the option accepts a value (i.e. you
6121 specified `(value #t)' for this option), then getopt
6122 will apply FUNC to the value, and throw an exception
6123 if it returns #f. FUNC should be a procedure which
6124 accepts a string and returns a boolean value; you may
6125 need to use quasiquotes to get it into GRAMMAR.
6126
6127The (PROPERTY VALUE) pairs may occur in any order, but each
6128property may occur only once. By default, options do not have
6129single-character equivalents, are not required, and do not take
6130values.
6131
6132In ARGS, single-character options may be combined, in the usual
6133Unix fashion: ("-x" "-y") is equivalent to ("-xy"). If an option
6134accepts values, then it must be the last option in the
6135combination; the value is the next argument. So, for example, using
6136the following grammar:
6137 ((apples (single-char #\a))
6138 (blimps (single-char #\b) (value #t))
6139 (catalexis (single-char #\c) (value #t)))
6140the following argument lists would be acceptable:
6141 ("-a" "-b" "bang" "-c" "couth") ("bang" and "couth" are the values
6142 for "blimps" and "catalexis")
6143 ("-ab" "bang" "-c" "couth") (same)
6144 ("-ac" "couth" "-b" "bang") (same)
6145 ("-abc" "couth" "bang") (an error, since `-b' is not the
6146 last option in its combination)
6147
6148If an option's value is optional, then `getopt-long' decides
6149whether it has a value by looking at what follows it in ARGS. If
6150the next element is a string, and it does not appear to be an
6151option itself, then that string is the option's value.
6152
6153The value of a long option can appear as the next element in ARGS,
6154or it can follow the option name, separated by an `=' character.
6155Thus, using the same grammar as above, the following argument lists
6156are equivalent:
6157 ("--apples" "Braeburn" "--blimps" "Goodyear")
6158 ("--apples=Braeburn" "--blimps" "Goodyear")
6159 ("--blimps" "Goodyear" "--apples=Braeburn")
6160
6161If the option "--" appears in ARGS, argument parsing stops there;
6162subsequent arguments are returned as ordinary arguments, even if
6163they resemble options. So, in the argument list:
6164 ("--apples" "Granny Smith" "--" "--blimp" "Goodyear")
6165`getopt-long' will recognize the `apples' option as having the
6166value "Granny Smith", but it will not recognize the `blimp'
6167option; it will return the strings "--blimp" and "Goodyear" as
6168ordinary argument strings.
6169
6170The `getopt-long' function returns the parsed argument list as an
6171assocation list, mapping option names --- the symbols from GRAMMAR
6172--- onto their values, or #t if the option does not accept a value.
6173Unused options do not appear in the alist.
6174
6175All arguments that are not the value of any option are returned
6176as a list, associated with the empty list.
6177
6178`getopt-long' throws an exception if:
6179- it finds an unrecognized option in ARGS
6180- a required option is omitted
6181- an option that requires an argument doesn't get one
6182- an option that doesn't accept an argument does get one (this can
6183 only happen using the long option `--opt=value' syntax)
6184- an option predicate fails
6185
6186So, for example:
6187
6188(define grammar
6189 `((lockfile-dir (required? #t)
6190 (value #t)
6191 (single-char #\k)
6192 (predicate ,file-is-directory?))
6193 (verbose (required? #f)
6194 (single-char #\v)
6195 (value #f))
6196 (x-includes (single-char #\x))
6c0201ad 6197 (rnet-server (single-char #\y)
deaceb4e
JB
6198 (predicate ,string?))))
6199
6c0201ad 6200(getopt-long '("my-prog" "-vk" "/tmp" "foo1" "--x-includes=/usr/include"
deaceb4e
JB
6201 "--rnet-server=lamprod" "--" "-fred" "foo2" "foo3")
6202 grammar)
6203=> ((() "foo1" "-fred" "foo2" "foo3")
6204 (rnet-server . "lamprod")
6205 (x-includes . "/usr/include")
6206 (lockfile-dir . "/tmp")
6207 (verbose . #t))
6208
6209** The (ice-9 getopt-gnu-style) module is obsolete; use (ice-9 getopt-long).
6210
6211It will be removed in a few releases.
6212
08394899
MS
6213** New syntax: lambda*
6214** New syntax: define*
6c0201ad 6215** New syntax: define*-public
08394899
MS
6216** New syntax: defmacro*
6217** New syntax: defmacro*-public
6c0201ad 6218Guile now supports optional arguments.
08394899
MS
6219
6220`lambda*', `define*', `define*-public', `defmacro*' and
6221`defmacro*-public' are identical to the non-* versions except that
6222they use an extended type of parameter list that has the following BNF
6223syntax (parentheses are literal, square brackets indicate grouping,
6224and `*', `+' and `?' have the usual meaning):
6225
6226 ext-param-list ::= ( [identifier]* [#&optional [ext-var-decl]+]?
6c0201ad 6227 [#&key [ext-var-decl]+ [#&allow-other-keys]?]?
08394899
MS
6228 [[#&rest identifier]|[. identifier]]? ) | [identifier]
6229
6c0201ad 6230 ext-var-decl ::= identifier | ( identifier expression )
08394899
MS
6231
6232The semantics are best illustrated with the following documentation
6233and examples for `lambda*':
6234
6235 lambda* args . body
6236 lambda extended for optional and keyword arguments
6c0201ad 6237
08394899
MS
6238 lambda* creates a procedure that takes optional arguments. These
6239 are specified by putting them inside brackets at the end of the
6240 paramater list, but before any dotted rest argument. For example,
6241 (lambda* (a b #&optional c d . e) '())
6242 creates a procedure with fixed arguments a and b, optional arguments c
6243 and d, and rest argument e. If the optional arguments are omitted
6244 in a call, the variables for them are unbound in the procedure. This
6245 can be checked with the bound? macro.
6246
6247 lambda* can also take keyword arguments. For example, a procedure
6248 defined like this:
6249 (lambda* (#&key xyzzy larch) '())
6250 can be called with any of the argument lists (#:xyzzy 11)
6251 (#:larch 13) (#:larch 42 #:xyzzy 19) (). Whichever arguments
6252 are given as keywords are bound to values.
6253
6254 Optional and keyword arguments can also be given default values
6255 which they take on when they are not present in a call, by giving a
6256 two-item list in place of an optional argument, for example in:
6c0201ad 6257 (lambda* (foo #&optional (bar 42) #&key (baz 73)) (list foo bar baz))
08394899
MS
6258 foo is a fixed argument, bar is an optional argument with default
6259 value 42, and baz is a keyword argument with default value 73.
6260 Default value expressions are not evaluated unless they are needed
6c0201ad 6261 and until the procedure is called.
08394899
MS
6262
6263 lambda* now supports two more special parameter list keywords.
6264
6265 lambda*-defined procedures now throw an error by default if a
6266 keyword other than one of those specified is found in the actual
6267 passed arguments. However, specifying #&allow-other-keys
6268 immediately after the kyword argument declarations restores the
6269 previous behavior of ignoring unknown keywords. lambda* also now
6270 guarantees that if the same keyword is passed more than once, the
6271 last one passed is the one that takes effect. For example,
6272 ((lambda* (#&key (heads 0) (tails 0)) (display (list heads tails)))
6273 #:heads 37 #:tails 42 #:heads 99)
6274 would result in (99 47) being displayed.
6275
6276 #&rest is also now provided as a synonym for the dotted syntax rest
6277 argument. The argument lists (a . b) and (a #&rest b) are equivalent in
6278 all respects to lambda*. This is provided for more similarity to DSSSL,
6279 MIT-Scheme and Kawa among others, as well as for refugees from other
6280 Lisp dialects.
6281
6282Further documentation may be found in the optargs.scm file itself.
6283
6284The optional argument module also exports the macros `let-optional',
6285`let-optional*', `let-keywords', `let-keywords*' and `bound?'. These
6286are not documented here because they may be removed in the future, but
6287full documentation is still available in optargs.scm.
6288
2e132553
JB
6289** New syntax: and-let*
6290Guile now supports the `and-let*' form, described in the draft SRFI-2.
6291
6292Syntax: (land* (<clause> ...) <body> ...)
6293Each <clause> should have one of the following forms:
6294 (<variable> <expression>)
6295 (<expression>)
6296 <bound-variable>
6297Each <variable> or <bound-variable> should be an identifier. Each
6298<expression> should be a valid expression. The <body> should be a
6299possibly empty sequence of expressions, like the <body> of a
6300lambda form.
6301
6302Semantics: A LAND* expression is evaluated by evaluating the
6303<expression> or <bound-variable> of each of the <clause>s from
6304left to right. The value of the first <expression> or
6305<bound-variable> that evaluates to a false value is returned; the
6306remaining <expression>s and <bound-variable>s are not evaluated.
6307The <body> forms are evaluated iff all the <expression>s and
6308<bound-variable>s evaluate to true values.
6309
6310The <expression>s and the <body> are evaluated in an environment
6311binding each <variable> of the preceding (<variable> <expression>)
6312clauses to the value of the <expression>. Later bindings
6313shadow earlier bindings.
6314
6315Guile's and-let* macro was contributed by Michael Livshin.
6316
36d3d540
MD
6317** New sorting functions
6318
6319*** New function: sorted? SEQUENCE LESS?
ed8c8636
MD
6320Returns `#t' when the sequence argument is in non-decreasing order
6321according to LESS? (that is, there is no adjacent pair `... x y
6322...' for which `(less? y x)').
6323
6324Returns `#f' when the sequence contains at least one out-of-order
6325pair. It is an error if the sequence is neither a list nor a
6326vector.
6327
36d3d540 6328*** New function: merge LIST1 LIST2 LESS?
ed8c8636
MD
6329LIST1 and LIST2 are sorted lists.
6330Returns the sorted list of all elements in LIST1 and LIST2.
6331
6332Assume that the elements a and b1 in LIST1 and b2 in LIST2 are "equal"
6333in the sense that (LESS? x y) --> #f for x, y in {a, b1, b2},
6334and that a < b1 in LIST1. Then a < b1 < b2 in the result.
6335(Here "<" should read "comes before".)
6336
36d3d540 6337*** New procedure: merge! LIST1 LIST2 LESS?
ed8c8636
MD
6338Merges two lists, re-using the pairs of LIST1 and LIST2 to build
6339the result. If the code is compiled, and LESS? constructs no new
6340pairs, no pairs at all will be allocated. The first pair of the
6341result will be either the first pair of LIST1 or the first pair of
6342LIST2.
6343
36d3d540 6344*** New function: sort SEQUENCE LESS?
ed8c8636
MD
6345Accepts either a list or a vector, and returns a new sequence
6346which is sorted. The new sequence is the same type as the input.
6347Always `(sorted? (sort sequence less?) less?)'. The original
6348sequence is not altered in any way. The new sequence shares its
6349elements with the old one; no elements are copied.
6350
36d3d540 6351*** New procedure: sort! SEQUENCE LESS
ed8c8636
MD
6352Returns its sorted result in the original boxes. No new storage is
6353allocated at all. Proper usage: (set! slist (sort! slist <))
6354
36d3d540 6355*** New function: stable-sort SEQUENCE LESS?
ed8c8636
MD
6356Similar to `sort' but stable. That is, if "equal" elements are
6357ordered a < b in the original sequence, they will have the same order
6358in the result.
6359
36d3d540 6360*** New function: stable-sort! SEQUENCE LESS?
ed8c8636
MD
6361Similar to `sort!' but stable.
6362Uses temporary storage when sorting vectors.
6363
36d3d540 6364*** New functions: sort-list, sort-list!
ed8c8636
MD
6365Added for compatibility with scsh.
6366
36d3d540
MD
6367** New built-in random number support
6368
6369*** New function: random N [STATE]
3e8370c3
MD
6370Accepts a positive integer or real N and returns a number of the
6371same type between zero (inclusive) and N (exclusive). The values
6372returned have a uniform distribution.
6373
6374The optional argument STATE must be of the type produced by
416075f1
MD
6375`copy-random-state' or `seed->random-state'. It defaults to the value
6376of the variable `*random-state*'. This object is used to maintain the
6377state of the pseudo-random-number generator and is altered as a side
6378effect of the `random' operation.
3e8370c3 6379
36d3d540 6380*** New variable: *random-state*
3e8370c3
MD
6381Holds a data structure that encodes the internal state of the
6382random-number generator that `random' uses by default. The nature
6383of this data structure is implementation-dependent. It may be
6384printed out and successfully read back in, but may or may not
6385function correctly as a random-number state object in another
6386implementation.
6387
36d3d540 6388*** New function: copy-random-state [STATE]
3e8370c3
MD
6389Returns a new object of type suitable for use as the value of the
6390variable `*random-state*' and as a second argument to `random'.
6391If argument STATE is given, a copy of it is returned. Otherwise a
6392copy of `*random-state*' is returned.
416075f1 6393
36d3d540 6394*** New function: seed->random-state SEED
416075f1
MD
6395Returns a new object of type suitable for use as the value of the
6396variable `*random-state*' and as a second argument to `random'.
6397SEED is a string or a number. A new state is generated and
6398initialized using SEED.
3e8370c3 6399
36d3d540 6400*** New function: random:uniform [STATE]
3e8370c3
MD
6401Returns an uniformly distributed inexact real random number in the
6402range between 0 and 1.
6403
36d3d540 6404*** New procedure: random:solid-sphere! VECT [STATE]
3e8370c3
MD
6405Fills VECT with inexact real random numbers the sum of whose
6406squares is less than 1.0. Thinking of VECT as coordinates in
6407space of dimension N = `(vector-length VECT)', the coordinates are
6408uniformly distributed within the unit N-shere. The sum of the
6409squares of the numbers is returned. VECT can be either a vector
6410or a uniform vector of doubles.
6411
36d3d540 6412*** New procedure: random:hollow-sphere! VECT [STATE]
3e8370c3
MD
6413Fills VECT with inexact real random numbers the sum of whose squares
6414is equal to 1.0. Thinking of VECT as coordinates in space of
6415dimension n = `(vector-length VECT)', the coordinates are uniformly
6416distributed over the surface of the unit n-shere. VECT can be either
6417a vector or a uniform vector of doubles.
6418
36d3d540 6419*** New function: random:normal [STATE]
3e8370c3
MD
6420Returns an inexact real in a normal distribution with mean 0 and
6421standard deviation 1. For a normal distribution with mean M and
6422standard deviation D use `(+ M (* D (random:normal)))'.
6423
36d3d540 6424*** New procedure: random:normal-vector! VECT [STATE]
3e8370c3
MD
6425Fills VECT with inexact real random numbers which are independent and
6426standard normally distributed (i.e., with mean 0 and variance 1).
6427VECT can be either a vector or a uniform vector of doubles.
6428
36d3d540 6429*** New function: random:exp STATE
3e8370c3
MD
6430Returns an inexact real in an exponential distribution with mean 1.
6431For an exponential distribution with mean U use (* U (random:exp)).
6432
69c6acbb
JB
6433** The range of logand, logior, logxor, logtest, and logbit? have changed.
6434
6435These functions now operate on numbers in the range of a C unsigned
6436long.
6437
6438These functions used to operate on numbers in the range of a C signed
6439long; however, this seems inappropriate, because Guile integers don't
6440overflow.
6441
ba4ee0d6
MD
6442** New function: make-guardian
6443This is an implementation of guardians as described in
6444R. Kent Dybvig, Carl Bruggeman, and David Eby (1993) "Guardians in a
6445Generation-Based Garbage Collector" ACM SIGPLAN Conference on
6446Programming Language Design and Implementation, June 1993
6447ftp://ftp.cs.indiana.edu/pub/scheme-repository/doc/pubs/guardians.ps.gz
6448
88ceea5c
MD
6449** New functions: delq1!, delv1!, delete1!
6450These procedures behave similar to delq! and friends but delete only
6451one object if at all.
6452
55254a6a
MD
6453** New function: unread-string STRING PORT
6454Unread STRING to PORT, that is, push it back onto the port so that
6455next read operation will work on the pushed back characters.
6456
6457** unread-char can now be called multiple times
6458If unread-char is called multiple times, the unread characters will be
6459read again in last-in first-out order.
6460
9e97c52d
GH
6461** the procedures uniform-array-read! and uniform-array-write! now
6462work on any kind of port, not just ports which are open on a file.
6463
b074884f 6464** Now 'l' in a port mode requests line buffering.
9e97c52d 6465
69bc9ff3
GH
6466** The procedure truncate-file now works on string ports as well
6467as file ports. If the size argument is omitted, the current
1b9c3dae 6468file position is used.
9e97c52d 6469
c94577b4 6470** new procedure: seek PORT/FDES OFFSET WHENCE
9e97c52d
GH
6471The arguments are the same as for the old fseek procedure, but it
6472works on string ports as well as random-access file ports.
6473
6474** the fseek procedure now works on string ports, since it has been
c94577b4 6475redefined using seek.
9e97c52d
GH
6476
6477** the setvbuf procedure now uses a default size if mode is _IOFBF and
6478size is not supplied.
6479
6480** the newline procedure no longer flushes the port if it's not
6481line-buffered: previously it did if it was the current output port.
6482
6483** open-pipe and close-pipe are no longer primitive procedures, but
6484an emulation can be obtained using `(use-modules (ice-9 popen))'.
6485
6486** the freopen procedure has been removed.
6487
6488** new procedure: drain-input PORT
6489Drains PORT's read buffers (including any pushed-back characters)
6490and returns the contents as a single string.
6491
67ad463a 6492** New function: map-in-order PROC LIST1 LIST2 ...
d41b3904
MD
6493Version of `map' which guarantees that the procedure is applied to the
6494lists in serial order.
6495
67ad463a
MD
6496** Renamed `serial-array-copy!' and `serial-array-map!' to
6497`array-copy-in-order!' and `array-map-in-order!'. The old names are
6498now obsolete and will go away in release 1.5.
6499
cf7132b3 6500** New syntax: collect BODY1 ...
d41b3904
MD
6501Version of `begin' which returns a list of the results of the body
6502forms instead of the result of the last body form. In contrast to
cf7132b3 6503`begin', `collect' allows an empty body.
d41b3904 6504
e4eae9b1
MD
6505** New functions: read-history FILENAME, write-history FILENAME
6506Read/write command line history from/to file. Returns #t on success
6507and #f if an error occured.
6508
d21ffe26
JB
6509** `ls' and `lls' in module (ice-9 ls) now handle no arguments.
6510
6511These procedures return a list of definitions available in the specified
6512argument, a relative module reference. In the case of no argument,
6513`(current-module)' is now consulted for definitions to return, instead
6514of simply returning #f, the former behavior.
6515
f8c9d497
JB
6516** The #/ syntax for lists is no longer supported.
6517
6518Earlier versions of Scheme accepted this syntax, but printed a
6519warning.
6520
6521** Guile no longer consults the SCHEME_LOAD_PATH environment variable.
6522
6523Instead, you should set GUILE_LOAD_PATH to tell Guile where to find
6524modules.
6525
3ffc7a36
MD
6526* Changes to the gh_ interface
6527
6528** gh_scm2doubles
6529
6530Now takes a second argument which is the result array. If this
6531pointer is NULL, a new array is malloced (the old behaviour).
6532
6533** gh_chars2byvect, gh_shorts2svect, gh_floats2fvect, gh_scm2chars,
6534 gh_scm2shorts, gh_scm2longs, gh_scm2floats
6535
6536New functions.
6537
3e8370c3
MD
6538* Changes to the scm_ interface
6539
ad91d6c3
MD
6540** Function: scm_make_named_hook (char* name, int n_args)
6541
6542Creates a hook in the same way as make-hook above but also
6543binds a variable named NAME to it.
6544
6545This is the typical way of creating a hook from C code.
6546
ece41168
MD
6547Currently, the variable is created in the "current" module. This
6548might change when we get the new module system.
ad91d6c3 6549
16a5a9a4
MD
6550** The smob interface
6551
6552The interface for creating smobs has changed. For documentation, see
6553data-rep.info (made from guile-core/doc/data-rep.texi).
6554
6555*** Deprecated function: SCM scm_newsmob (scm_smobfuns *)
6556
6557>>> This function will be removed in 1.3.4. <<<
6558
6559It is replaced by:
6560
6561*** Function: SCM scm_make_smob_type (const char *name, scm_sizet size)
6562This function adds a new smob type, named NAME, with instance size
6563SIZE to the system. The return value is a tag that is used in
6564creating instances of the type. If SIZE is 0, then no memory will
6565be allocated when instances of the smob are created, and nothing
6566will be freed by the default free function.
6c0201ad 6567
16a5a9a4
MD
6568*** Function: void scm_set_smob_mark (long tc, SCM (*mark) (SCM))
6569This function sets the smob marking procedure for the smob type
6570specified by the tag TC. TC is the tag returned by
6571`scm_make_smob_type'.
6572
6573*** Function: void scm_set_smob_free (long tc, SCM (*mark) (SCM))
6574This function sets the smob freeing procedure for the smob type
6575specified by the tag TC. TC is the tag returned by
6576`scm_make_smob_type'.
6577
6578*** Function: void scm_set_smob_print (tc, print)
6579
6580 - Function: void scm_set_smob_print (long tc,
6581 scm_sizet (*print) (SCM,
6582 SCM,
6583 scm_print_state *))
6584
6585This function sets the smob printing procedure for the smob type
6586specified by the tag TC. TC is the tag returned by
6587`scm_make_smob_type'.
6588
6589*** Function: void scm_set_smob_equalp (long tc, SCM (*equalp) (SCM, SCM))
6590This function sets the smob equality-testing predicate for the
6591smob type specified by the tag TC. TC is the tag returned by
6592`scm_make_smob_type'.
6593
6594*** Macro: void SCM_NEWSMOB (SCM var, long tc, void *data)
6595Make VALUE contain a smob instance of the type with type code TC and
6596smob data DATA. VALUE must be previously declared as C type `SCM'.
6597
6598*** Macro: fn_returns SCM_RETURN_NEWSMOB (long tc, void *data)
6599This macro expands to a block of code that creates a smob instance
6600of the type with type code TC and smob data DATA, and returns that
6601`SCM' value. It should be the last piece of code in a block.
6602
9e97c52d
GH
6603** The interfaces for using I/O ports and implementing port types
6604(ptobs) have changed significantly. The new interface is based on
6605shared access to buffers and a new set of ptob procedures.
6606
16a5a9a4
MD
6607*** scm_newptob has been removed
6608
6609It is replaced by:
6610
6611*** Function: SCM scm_make_port_type (type_name, fill_buffer, write_flush)
6612
6613- Function: SCM scm_make_port_type (char *type_name,
6614 int (*fill_buffer) (SCM port),
6615 void (*write_flush) (SCM port));
6616
6617Similarly to the new smob interface, there is a set of function
6618setters by which the user can customize the behaviour of his port
544e9093 6619type. See ports.h (scm_set_port_XXX).
16a5a9a4 6620
9e97c52d
GH
6621** scm_strport_to_string: New function: creates a new string from
6622a string port's buffer.
6623
3e8370c3
MD
6624** Plug in interface for random number generators
6625The variable `scm_the_rng' in random.c contains a value and three
6626function pointers which together define the current random number
6627generator being used by the Scheme level interface and the random
6628number library functions.
6629
6630The user is free to replace the default generator with the generator
6631of his own choice.
6632
6633*** Variable: size_t scm_the_rng.rstate_size
6634The size of the random state type used by the current RNG
6635measured in chars.
6636
6637*** Function: unsigned long scm_the_rng.random_bits (scm_rstate *STATE)
6638Given the random STATE, return 32 random bits.
6639
6640*** Function: void scm_the_rng.init_rstate (scm_rstate *STATE, chars *S, int N)
6641Seed random state STATE using string S of length N.
6642
6643*** Function: scm_rstate *scm_the_rng.copy_rstate (scm_rstate *STATE)
6644Given random state STATE, return a malloced copy.
6645
6646** Default RNG
6647The default RNG is the MWC (Multiply With Carry) random number
6648generator described by George Marsaglia at the Department of
6649Statistics and Supercomputer Computations Research Institute, The
6650Florida State University (http://stat.fsu.edu/~geo).
6651
6652It uses 64 bits, has a period of 4578426017172946943 (4.6e18), and
6653passes all tests in the DIEHARD test suite
6654(http://stat.fsu.edu/~geo/diehard.html). The generation of 32 bits
6655costs one multiply and one add on platforms which either supports long
6656longs (gcc does this on most systems) or have 64 bit longs. The cost
6657is four multiply on other systems but this can be optimized by writing
6658scm_i_uniform32 in assembler.
6659
6660These functions are provided through the scm_the_rng interface for use
6661by libguile and the application.
6662
6663*** Function: unsigned long scm_i_uniform32 (scm_i_rstate *STATE)
6664Given the random STATE, return 32 random bits.
6665Don't use this function directly. Instead go through the plugin
6666interface (see "Plug in interface" above).
6667
6668*** Function: void scm_i_init_rstate (scm_i_rstate *STATE, char *SEED, int N)
6669Initialize STATE using SEED of length N.
6670
6671*** Function: scm_i_rstate *scm_i_copy_rstate (scm_i_rstate *STATE)
6672Return a malloc:ed copy of STATE. This function can easily be re-used
6673in the interfaces to other RNGs.
6674
6675** Random number library functions
6676These functions use the current RNG through the scm_the_rng interface.
6677It might be a good idea to use these functions from your C code so
6678that only one random generator is used by all code in your program.
6679
259529f2 6680The default random state is stored in:
3e8370c3
MD
6681
6682*** Variable: SCM scm_var_random_state
6683Contains the vcell of the Scheme variable "*random-state*" which is
6684used as default state by all random number functions in the Scheme
6685level interface.
6686
6687Example:
6688
259529f2 6689 double x = scm_c_uniform01 (SCM_RSTATE (SCM_CDR (scm_var_random_state)));
3e8370c3 6690
259529f2
MD
6691*** Function: scm_rstate *scm_c_default_rstate (void)
6692This is a convenience function which returns the value of
6693scm_var_random_state. An error message is generated if this value
6694isn't a random state.
6695
6696*** Function: scm_rstate *scm_c_make_rstate (char *SEED, int LENGTH)
6697Make a new random state from the string SEED of length LENGTH.
6698
6699It is generally not a good idea to use multiple random states in a
6700program. While subsequent random numbers generated from one random
6701state are guaranteed to be reasonably independent, there is no such
6702guarantee for numbers generated from different random states.
6703
6704*** Macro: unsigned long scm_c_uniform32 (scm_rstate *STATE)
6705Return 32 random bits.
6706
6707*** Function: double scm_c_uniform01 (scm_rstate *STATE)
3e8370c3
MD
6708Return a sample from the uniform(0,1) distribution.
6709
259529f2 6710*** Function: double scm_c_normal01 (scm_rstate *STATE)
3e8370c3
MD
6711Return a sample from the normal(0,1) distribution.
6712
259529f2 6713*** Function: double scm_c_exp1 (scm_rstate *STATE)
3e8370c3
MD
6714Return a sample from the exp(1) distribution.
6715
259529f2
MD
6716*** Function: unsigned long scm_c_random (scm_rstate *STATE, unsigned long M)
6717Return a sample from the discrete uniform(0,M) distribution.
6718
6719*** Function: SCM scm_c_random_bignum (scm_rstate *STATE, SCM M)
3e8370c3 6720Return a sample from the discrete uniform(0,M) distribution.
259529f2 6721M must be a bignum object. The returned value may be an INUM.
3e8370c3 6722
9e97c52d 6723
f3227c7a 6724\f
d23bbf3e 6725Changes in Guile 1.3 (released Monday, October 19, 1998):
c484bf7f
JB
6726
6727* Changes to the distribution
6728
e2d6569c
JB
6729** We renamed the SCHEME_LOAD_PATH environment variable to GUILE_LOAD_PATH.
6730To avoid conflicts, programs should name environment variables after
6731themselves, except when there's a common practice establishing some
6732other convention.
6733
6734For now, Guile supports both GUILE_LOAD_PATH and SCHEME_LOAD_PATH,
6735giving the former precedence, and printing a warning message if the
6736latter is set. Guile 1.4 will not recognize SCHEME_LOAD_PATH at all.
6737
6738** The header files related to multi-byte characters have been removed.
6739They were: libguile/extchrs.h and libguile/mbstrings.h. Any C code
6740which referred to these explicitly will probably need to be rewritten,
6741since the support for the variant string types has been removed; see
6742below.
6743
6744** The header files append.h and sequences.h have been removed. These
6745files implemented non-R4RS operations which would encourage
6746non-portable programming style and less easy-to-read code.
3a97e020 6747
c484bf7f
JB
6748* Changes to the stand-alone interpreter
6749
2e368582 6750** New procedures have been added to implement a "batch mode":
ec4ab4fd 6751
2e368582 6752*** Function: batch-mode?
ec4ab4fd
GH
6753
6754 Returns a boolean indicating whether the interpreter is in batch
6755 mode.
6756
2e368582 6757*** Function: set-batch-mode?! ARG
ec4ab4fd
GH
6758
6759 If ARG is true, switches the interpreter to batch mode. The `#f'
6760 case has not been implemented.
6761
2e368582
JB
6762** Guile now provides full command-line editing, when run interactively.
6763To use this feature, you must have the readline library installed.
6764The Guile build process will notice it, and automatically include
6765support for it.
6766
6767The readline library is available via anonymous FTP from any GNU
6768mirror site; the canonical location is "ftp://prep.ai.mit.edu/pub/gnu".
6769
a5d6d578
MD
6770** the-last-stack is now a fluid.
6771
c484bf7f
JB
6772* Changes to the procedure for linking libguile with your programs
6773
71f20534 6774** You can now use the `guile-config' utility to build programs that use Guile.
2e368582 6775
2adfe1c0 6776Guile now includes a command-line utility called `guile-config', which
71f20534
JB
6777can provide information about how to compile and link programs that
6778use Guile.
6779
6780*** `guile-config compile' prints any C compiler flags needed to use Guile.
6781You should include this command's output on the command line you use
6782to compile C or C++ code that #includes the Guile header files. It's
6783usually just a `-I' flag to help the compiler find the Guile headers.
6784
6785
6786*** `guile-config link' prints any linker flags necessary to link with Guile.
8aa5c148 6787
71f20534 6788This command writes to its standard output a list of flags which you
8aa5c148
JB
6789must pass to the linker to link your code against the Guile library.
6790The flags include '-lguile' itself, any other libraries the Guile
6791library depends upon, and any `-L' flags needed to help the linker
6792find those libraries.
2e368582
JB
6793
6794For example, here is a Makefile rule that builds a program named 'foo'
6795from the object files ${FOO_OBJECTS}, and links them against Guile:
6796
6797 foo: ${FOO_OBJECTS}
2adfe1c0 6798 ${CC} ${CFLAGS} ${FOO_OBJECTS} `guile-config link` -o foo
2e368582 6799
e2d6569c
JB
6800Previous Guile releases recommended that you use autoconf to detect
6801which of a predefined set of libraries were present on your system.
2adfe1c0 6802It is more robust to use `guile-config', since it records exactly which
e2d6569c
JB
6803libraries the installed Guile library requires.
6804
2adfe1c0
JB
6805This was originally called `build-guile', but was renamed to
6806`guile-config' before Guile 1.3 was released, to be consistent with
6807the analogous script for the GTK+ GUI toolkit, which is called
6808`gtk-config'.
6809
2e368582 6810
8aa5c148
JB
6811** Use the GUILE_FLAGS macro in your configure.in file to find Guile.
6812
6813If you are using the GNU autoconf package to configure your program,
6814you can use the GUILE_FLAGS autoconf macro to call `guile-config'
6815(described above) and gather the necessary values for use in your
6816Makefiles.
6817
6818The GUILE_FLAGS macro expands to configure script code which runs the
6819`guile-config' script, to find out where Guile's header files and
6820libraries are installed. It sets two variables, marked for
6821substitution, as by AC_SUBST.
6822
6823 GUILE_CFLAGS --- flags to pass to a C or C++ compiler to build
6824 code that uses Guile header files. This is almost always just a
6825 -I flag.
6826
6827 GUILE_LDFLAGS --- flags to pass to the linker to link a
6828 program against Guile. This includes `-lguile' for the Guile
6829 library itself, any libraries that Guile itself requires (like
6830 -lqthreads), and so on. It may also include a -L flag to tell the
6831 compiler where to find the libraries.
6832
6833GUILE_FLAGS is defined in the file guile.m4, in the top-level
6834directory of the Guile distribution. You can copy it into your
6835package's aclocal.m4 file, and then use it in your configure.in file.
6836
6837If you are using the `aclocal' program, distributed with GNU automake,
6838to maintain your aclocal.m4 file, the Guile installation process
6839installs guile.m4 where aclocal will find it. All you need to do is
6840use GUILE_FLAGS in your configure.in file, and then run `aclocal';
6841this will copy the definition of GUILE_FLAGS into your aclocal.m4
6842file.
6843
6844
c484bf7f 6845* Changes to Scheme functions and syntax
7ad3c1e7 6846
02755d59 6847** Multi-byte strings have been removed, as have multi-byte and wide
e2d6569c
JB
6848ports. We felt that these were the wrong approach to
6849internationalization support.
02755d59 6850
2e368582
JB
6851** New function: readline [PROMPT]
6852Read a line from the terminal, and allow the user to edit it,
6853prompting with PROMPT. READLINE provides a large set of Emacs-like
6854editing commands, lets the user recall previously typed lines, and
6855works on almost every kind of terminal, including dumb terminals.
6856
6857READLINE assumes that the cursor is at the beginning of the line when
6858it is invoked. Thus, you can't print a prompt yourself, and then call
6859READLINE; you need to package up your prompt as a string, pass it to
6860the function, and let READLINE print the prompt itself. This is
6861because READLINE needs to know the prompt's screen width.
6862
8cd57bd0
JB
6863For Guile to provide this function, you must have the readline
6864library, version 2.1 or later, installed on your system. Readline is
6865available via anonymous FTP from prep.ai.mit.edu in pub/gnu, or from
6866any GNU mirror site.
2e368582
JB
6867
6868See also ADD-HISTORY function.
6869
6870** New function: add-history STRING
6871Add STRING as the most recent line in the history used by the READLINE
6872command. READLINE does not add lines to the history itself; you must
6873call ADD-HISTORY to make previous input available to the user.
6874
8cd57bd0
JB
6875** The behavior of the read-line function has changed.
6876
6877This function now uses standard C library functions to read the line,
6878for speed. This means that it doesn not respect the value of
6879scm-line-incrementors; it assumes that lines are delimited with
6880#\newline.
6881
6882(Note that this is read-line, the function that reads a line of text
6883from a port, not readline, the function that reads a line from a
6884terminal, providing full editing capabilities.)
6885
1a0106ef
JB
6886** New module (ice-9 getopt-gnu-style): Parse command-line arguments.
6887
6888This module provides some simple argument parsing. It exports one
6889function:
6890
6891Function: getopt-gnu-style ARG-LS
6892 Parse a list of program arguments into an alist of option
6893 descriptions.
6894
6895 Each item in the list of program arguments is examined to see if
6896 it meets the syntax of a GNU long-named option. An argument like
6897 `--MUMBLE' produces an element of the form (MUMBLE . #t) in the
6898 returned alist, where MUMBLE is a keyword object with the same
6899 name as the argument. An argument like `--MUMBLE=FROB' produces
6900 an element of the form (MUMBLE . FROB), where FROB is a string.
6901
6902 As a special case, the returned alist also contains a pair whose
6903 car is the symbol `rest'. The cdr of this pair is a list
6904 containing all the items in the argument list that are not options
6905 of the form mentioned above.
6906
6907 The argument `--' is treated specially: all items in the argument
6908 list appearing after such an argument are not examined, and are
6909 returned in the special `rest' list.
6910
6911 This function does not parse normal single-character switches.
6912 You will need to parse them out of the `rest' list yourself.
6913
8cd57bd0
JB
6914** The read syntax for byte vectors and short vectors has changed.
6915
6916Instead of #bytes(...), write #y(...).
6917
6918Instead of #short(...), write #h(...).
6919
6920This may seem nutty, but, like the other uniform vectors, byte vectors
6921and short vectors want to have the same print and read syntax (and,
6922more basic, want to have read syntax!). Changing the read syntax to
6923use multiple characters after the hash sign breaks with the
6924conventions used in R5RS and the conventions used for the other
6925uniform vectors. It also introduces complexity in the current reader,
6926both on the C and Scheme levels. (The Right solution is probably to
6927change the syntax and prototypes for uniform vectors entirely.)
6928
6929
6930** The new module (ice-9 session) provides useful interactive functions.
6931
6932*** New procedure: (apropos REGEXP OPTION ...)
6933
6934Display a list of top-level variables whose names match REGEXP, and
6935the modules they are imported from. Each OPTION should be one of the
6936following symbols:
6937
6938 value --- Show the value of each matching variable.
6939 shadow --- Show bindings shadowed by subsequently imported modules.
6940 full --- Same as both `shadow' and `value'.
6941
6942For example:
6943
6944 guile> (apropos "trace" 'full)
6945 debug: trace #<procedure trace args>
6946 debug: untrace #<procedure untrace args>
6947 the-scm-module: display-backtrace #<compiled-closure #<primitive-procedure gsubr-apply>>
6948 the-scm-module: before-backtrace-hook ()
6949 the-scm-module: backtrace #<primitive-procedure backtrace>
6950 the-scm-module: after-backtrace-hook ()
6951 the-scm-module: has-shown-backtrace-hint? #f
6c0201ad 6952 guile>
8cd57bd0
JB
6953
6954** There are new functions and syntax for working with macros.
6955
6956Guile implements macros as a special object type. Any variable whose
6957top-level binding is a macro object acts as a macro. The macro object
6958specifies how the expression should be transformed before evaluation.
6959
6960*** Macro objects now print in a reasonable way, resembling procedures.
6961
6962*** New function: (macro? OBJ)
6963True iff OBJ is a macro object.
6964
6965*** New function: (primitive-macro? OBJ)
6966Like (macro? OBJ), but true only if OBJ is one of the Guile primitive
6967macro transformers, implemented in eval.c rather than Scheme code.
6968
dbdd0c16
JB
6969Why do we have this function?
6970- For symmetry with procedure? and primitive-procedure?,
6971- to allow custom print procedures to tell whether a macro is
6972 primitive, and display it differently, and
6973- to allow compilers and user-written evaluators to distinguish
6974 builtin special forms from user-defined ones, which could be
6975 compiled.
6976
8cd57bd0
JB
6977*** New function: (macro-type OBJ)
6978Return a value indicating what kind of macro OBJ is. Possible return
6979values are:
6980
6981 The symbol `syntax' --- a macro created by procedure->syntax.
6982 The symbol `macro' --- a macro created by procedure->macro.
6983 The symbol `macro!' --- a macro created by procedure->memoizing-macro.
6c0201ad 6984 The boolean #f --- if OBJ is not a macro object.
8cd57bd0
JB
6985
6986*** New function: (macro-name MACRO)
6987Return the name of the macro object MACRO's procedure, as returned by
6988procedure-name.
6989
6990*** New function: (macro-transformer MACRO)
6991Return the transformer procedure for MACRO.
6992
6993*** New syntax: (use-syntax MODULE ... TRANSFORMER)
6994
6995Specify a new macro expander to use in the current module. Each
6996MODULE is a module name, with the same meaning as in the `use-modules'
6997form; each named module's exported bindings are added to the current
6998top-level environment. TRANSFORMER is an expression evaluated in the
6999resulting environment which must yield a procedure to use as the
7000module's eval transformer: every expression evaluated in this module
7001is passed to this function, and the result passed to the Guile
6c0201ad 7002interpreter.
8cd57bd0
JB
7003
7004*** macro-eval! is removed. Use local-eval instead.
29521173 7005
8d9dcb3c
MV
7006** Some magic has been added to the printer to better handle user
7007written printing routines (like record printers, closure printers).
7008
7009The problem is that these user written routines must have access to
7fbd77df 7010the current `print-state' to be able to handle fancy things like
8d9dcb3c
MV
7011detection of circular references. These print-states have to be
7012passed to the builtin printing routines (display, write, etc) to
7013properly continue the print chain.
7014
7015We didn't want to change all existing print code so that it
8cd57bd0 7016explicitly passes thru a print state in addition to a port. Instead,
8d9dcb3c
MV
7017we extented the possible values that the builtin printing routines
7018accept as a `port'. In addition to a normal port, they now also take
7019a pair of a normal port and a print-state. Printing will go to the
7020port and the print-state will be used to control the detection of
7021circular references, etc. If the builtin function does not care for a
7022print-state, it is simply ignored.
7023
7024User written callbacks are now called with such a pair as their
7025`port', but because every function now accepts this pair as a PORT
7026argument, you don't have to worry about that. In fact, it is probably
7027safest to not check for these pairs.
7028
7029However, it is sometimes necessary to continue a print chain on a
7030different port, for example to get a intermediate string
7031representation of the printed value, mangle that string somehow, and
7032then to finally print the mangled string. Use the new function
7033
7034 inherit-print-state OLD-PORT NEW-PORT
7035
7036for this. It constructs a new `port' that prints to NEW-PORT but
7037inherits the print-state of OLD-PORT.
7038
ef1ea498
MD
7039** struct-vtable-offset renamed to vtable-offset-user
7040
7041** New constants: vtable-index-layout, vtable-index-vtable, vtable-index-printer
7042
e478dffa
MD
7043** There is now a third optional argument to make-vtable-vtable
7044 (and fourth to make-struct) when constructing new types (vtables).
7045 This argument initializes field vtable-index-printer of the vtable.
ef1ea498 7046
4851dc57
MV
7047** The detection of circular references has been extended to structs.
7048That is, a structure that -- in the process of being printed -- prints
7049itself does not lead to infinite recursion.
7050
7051** There is now some basic support for fluids. Please read
7052"libguile/fluid.h" to find out more. It is accessible from Scheme with
7053the following functions and macros:
7054
9c3fb66f
MV
7055Function: make-fluid
7056
7057 Create a new fluid object. Fluids are not special variables or
7058 some other extension to the semantics of Scheme, but rather
7059 ordinary Scheme objects. You can store them into variables (that
7060 are still lexically scoped, of course) or into any other place you
7061 like. Every fluid has a initial value of `#f'.
04c76b58 7062
9c3fb66f 7063Function: fluid? OBJ
04c76b58 7064
9c3fb66f 7065 Test whether OBJ is a fluid.
04c76b58 7066
9c3fb66f
MV
7067Function: fluid-ref FLUID
7068Function: fluid-set! FLUID VAL
04c76b58
MV
7069
7070 Access/modify the fluid FLUID. Modifications are only visible
7071 within the current dynamic root (that includes threads).
7072
9c3fb66f
MV
7073Function: with-fluids* FLUIDS VALUES THUNK
7074
7075 FLUIDS is a list of fluids and VALUES a corresponding list of
7076 values for these fluids. Before THUNK gets called the values are
6c0201ad 7077 installed in the fluids and the old values of the fluids are
9c3fb66f
MV
7078 saved in the VALUES list. When the flow of control leaves THUNK
7079 or reenters it, the values get swapped again. You might think of
7080 this as a `safe-fluid-excursion'. Note that the VALUES list is
7081 modified by `with-fluids*'.
7082
7083Macro: with-fluids ((FLUID VALUE) ...) FORM ...
7084
7085 The same as `with-fluids*' but with a different syntax. It looks
7086 just like `let', but both FLUID and VALUE are evaluated. Remember,
7087 fluids are not special variables but ordinary objects. FLUID
7088 should evaluate to a fluid.
04c76b58 7089
e2d6569c 7090** Changes to system call interfaces:
64d01d13 7091
e2d6569c 7092*** close-port, close-input-port and close-output-port now return a
64d01d13
GH
7093boolean instead of an `unspecified' object. #t means that the port
7094was successfully closed, while #f means it was already closed. It is
7095also now possible for these procedures to raise an exception if an
7096error occurs (some errors from write can be delayed until close.)
7097
e2d6569c 7098*** the first argument to chmod, fcntl, ftell and fseek can now be a
6afcd3b2
GH
7099file descriptor.
7100
e2d6569c 7101*** the third argument to fcntl is now optional.
6afcd3b2 7102
e2d6569c 7103*** the first argument to chown can now be a file descriptor or a port.
6afcd3b2 7104
e2d6569c 7105*** the argument to stat can now be a port.
6afcd3b2 7106
e2d6569c 7107*** The following new procedures have been added (most use scsh
64d01d13
GH
7108interfaces):
7109
e2d6569c 7110*** procedure: close PORT/FD
ec4ab4fd
GH
7111 Similar to close-port (*note close-port: Closing Ports.), but also
7112 works on file descriptors. A side effect of closing a file
7113 descriptor is that any ports using that file descriptor are moved
7114 to a different file descriptor and have their revealed counts set
7115 to zero.
7116
e2d6569c 7117*** procedure: port->fdes PORT
ec4ab4fd
GH
7118 Returns the integer file descriptor underlying PORT. As a side
7119 effect the revealed count of PORT is incremented.
7120
e2d6569c 7121*** procedure: fdes->ports FDES
ec4ab4fd
GH
7122 Returns a list of existing ports which have FDES as an underlying
7123 file descriptor, without changing their revealed counts.
7124
e2d6569c 7125*** procedure: fdes->inport FDES
ec4ab4fd
GH
7126 Returns an existing input port which has FDES as its underlying
7127 file descriptor, if one exists, and increments its revealed count.
7128 Otherwise, returns a new input port with a revealed count of 1.
7129
e2d6569c 7130*** procedure: fdes->outport FDES
ec4ab4fd
GH
7131 Returns an existing output port which has FDES as its underlying
7132 file descriptor, if one exists, and increments its revealed count.
7133 Otherwise, returns a new output port with a revealed count of 1.
7134
7135 The next group of procedures perform a `dup2' system call, if NEWFD
7136(an integer) is supplied, otherwise a `dup'. The file descriptor to be
7137duplicated can be supplied as an integer or contained in a port. The
64d01d13
GH
7138type of value returned varies depending on which procedure is used.
7139
ec4ab4fd
GH
7140 All procedures also have the side effect when performing `dup2' that
7141any ports using NEWFD are moved to a different file descriptor and have
64d01d13
GH
7142their revealed counts set to zero.
7143
e2d6569c 7144*** procedure: dup->fdes PORT/FD [NEWFD]
ec4ab4fd 7145 Returns an integer file descriptor.
64d01d13 7146
e2d6569c 7147*** procedure: dup->inport PORT/FD [NEWFD]
ec4ab4fd 7148 Returns a new input port using the new file descriptor.
64d01d13 7149
e2d6569c 7150*** procedure: dup->outport PORT/FD [NEWFD]
ec4ab4fd 7151 Returns a new output port using the new file descriptor.
64d01d13 7152
e2d6569c 7153*** procedure: dup PORT/FD [NEWFD]
ec4ab4fd
GH
7154 Returns a new port if PORT/FD is a port, with the same mode as the
7155 supplied port, otherwise returns an integer file descriptor.
64d01d13 7156
e2d6569c 7157*** procedure: dup->port PORT/FD MODE [NEWFD]
ec4ab4fd
GH
7158 Returns a new port using the new file descriptor. MODE supplies a
7159 mode string for the port (*note open-file: File Ports.).
64d01d13 7160
e2d6569c 7161*** procedure: setenv NAME VALUE
ec4ab4fd
GH
7162 Modifies the environment of the current process, which is also the
7163 default environment inherited by child processes.
64d01d13 7164
ec4ab4fd
GH
7165 If VALUE is `#f', then NAME is removed from the environment.
7166 Otherwise, the string NAME=VALUE is added to the environment,
7167 replacing any existing string with name matching NAME.
64d01d13 7168
ec4ab4fd 7169 The return value is unspecified.
956055a9 7170
e2d6569c 7171*** procedure: truncate-file OBJ SIZE
6afcd3b2
GH
7172 Truncates the file referred to by OBJ to at most SIZE bytes. OBJ
7173 can be a string containing a file name or an integer file
7174 descriptor or port open for output on the file. The underlying
7175 system calls are `truncate' and `ftruncate'.
7176
7177 The return value is unspecified.
7178
e2d6569c 7179*** procedure: setvbuf PORT MODE [SIZE]
7a6f1ffa
GH
7180 Set the buffering mode for PORT. MODE can be:
7181 `_IONBF'
7182 non-buffered
7183
7184 `_IOLBF'
7185 line buffered
7186
7187 `_IOFBF'
7188 block buffered, using a newly allocated buffer of SIZE bytes.
7189 However if SIZE is zero or unspecified, the port will be made
7190 non-buffered.
7191
7192 This procedure should not be used after I/O has been performed with
7193 the port.
7194
7195 Ports are usually block buffered by default, with a default buffer
7196 size. Procedures e.g., *Note open-file: File Ports, which accept a
7197 mode string allow `0' to be added to request an unbuffered port.
7198
e2d6569c 7199*** procedure: fsync PORT/FD
6afcd3b2
GH
7200 Copies any unwritten data for the specified output file descriptor
7201 to disk. If PORT/FD is a port, its buffer is flushed before the
7202 underlying file descriptor is fsync'd. The return value is
7203 unspecified.
7204
e2d6569c 7205*** procedure: open-fdes PATH FLAGS [MODES]
6afcd3b2
GH
7206 Similar to `open' but returns a file descriptor instead of a port.
7207
e2d6569c 7208*** procedure: execle PATH ENV [ARG] ...
6afcd3b2
GH
7209 Similar to `execl', but the environment of the new process is
7210 specified by ENV, which must be a list of strings as returned by
7211 the `environ' procedure.
7212
7213 This procedure is currently implemented using the `execve' system
7214 call, but we call it `execle' because of its Scheme calling
7215 interface.
7216
e2d6569c 7217*** procedure: strerror ERRNO
ec4ab4fd
GH
7218 Returns the Unix error message corresponding to ERRNO, an integer.
7219
e2d6569c 7220*** procedure: primitive-exit [STATUS]
6afcd3b2
GH
7221 Terminate the current process without unwinding the Scheme stack.
7222 This is would typically be useful after a fork. The exit status
7223 is STATUS if supplied, otherwise zero.
7224
e2d6569c 7225*** procedure: times
6afcd3b2
GH
7226 Returns an object with information about real and processor time.
7227 The following procedures accept such an object as an argument and
7228 return a selected component:
7229
7230 `tms:clock'
7231 The current real time, expressed as time units relative to an
7232 arbitrary base.
7233
7234 `tms:utime'
7235 The CPU time units used by the calling process.
7236
7237 `tms:stime'
7238 The CPU time units used by the system on behalf of the
7239 calling process.
7240
7241 `tms:cutime'
7242 The CPU time units used by terminated child processes of the
7243 calling process, whose status has been collected (e.g., using
7244 `waitpid').
7245
7246 `tms:cstime'
7247 Similarly, the CPU times units used by the system on behalf of
7248 terminated child processes.
7ad3c1e7 7249
e2d6569c
JB
7250** Removed: list-length
7251** Removed: list-append, list-append!
7252** Removed: list-reverse, list-reverse!
7253
7254** array-map renamed to array-map!
7255
7256** serial-array-map renamed to serial-array-map!
7257
660f41fa
MD
7258** catch doesn't take #f as first argument any longer
7259
7260Previously, it was possible to pass #f instead of a key to `catch'.
7261That would cause `catch' to pass a jump buffer object to the procedure
7262passed as second argument. The procedure could then use this jump
7263buffer objekt as an argument to throw.
7264
7265This mechanism has been removed since its utility doesn't motivate the
7266extra complexity it introduces.
7267
332d00f6
JB
7268** The `#/' notation for lists now provokes a warning message from Guile.
7269This syntax will be removed from Guile in the near future.
7270
7271To disable the warning message, set the GUILE_HUSH environment
7272variable to any non-empty value.
7273
8cd57bd0
JB
7274** The newline character now prints as `#\newline', following the
7275normal Scheme notation, not `#\nl'.
7276
c484bf7f
JB
7277* Changes to the gh_ interface
7278
8986901b
JB
7279** The gh_enter function now takes care of loading the Guile startup files.
7280gh_enter works by calling scm_boot_guile; see the remarks below.
7281
5424b4f7
MD
7282** Function: void gh_write (SCM x)
7283
7284Write the printed representation of the scheme object x to the current
7285output port. Corresponds to the scheme level `write'.
7286
3a97e020
MD
7287** gh_list_length renamed to gh_length.
7288
8d6787b6
MG
7289** vector handling routines
7290
7291Several major changes. In particular, gh_vector() now resembles
7292(vector ...) (with a caveat -- see manual), and gh_make_vector() now
956328d2
MG
7293exists and behaves like (make-vector ...). gh_vset() and gh_vref()
7294have been renamed gh_vector_set_x() and gh_vector_ref(). Some missing
8d6787b6
MG
7295vector-related gh_ functions have been implemented.
7296
7fee59bd
MG
7297** pair and list routines
7298
7299Implemented several of the R4RS pair and list functions that were
7300missing.
7301
171422a9
MD
7302** gh_scm2doubles, gh_doubles2scm, gh_doubles2dvect
7303
7304New function. Converts double arrays back and forth between Scheme
7305and C.
7306
c484bf7f
JB
7307* Changes to the scm_ interface
7308
8986901b
JB
7309** The function scm_boot_guile now takes care of loading the startup files.
7310
7311Guile's primary initialization function, scm_boot_guile, now takes
7312care of loading `boot-9.scm', in the `ice-9' module, to initialize
7313Guile, define the module system, and put together some standard
7314bindings. It also loads `init.scm', which is intended to hold
7315site-specific initialization code.
7316
7317Since Guile cannot operate properly until boot-9.scm is loaded, there
7318is no reason to separate loading boot-9.scm from Guile's other
7319initialization processes.
7320
7321This job used to be done by scm_compile_shell_switches, which didn't
7322make much sense; in particular, it meant that people using Guile for
7323non-shell-like applications had to jump through hoops to get Guile
7324initialized properly.
7325
7326** The function scm_compile_shell_switches no longer loads the startup files.
7327Now, Guile always loads the startup files, whenever it is initialized;
7328see the notes above for scm_boot_guile and scm_load_startup_files.
7329
7330** Function: scm_load_startup_files
7331This new function takes care of loading Guile's initialization file
7332(`boot-9.scm'), and the site initialization file, `init.scm'. Since
7333this is always called by the Guile initialization process, it's
7334probably not too useful to call this yourself, but it's there anyway.
7335
87148d9e
JB
7336** The semantics of smob marking have changed slightly.
7337
7338The smob marking function (the `mark' member of the scm_smobfuns
7339structure) is no longer responsible for setting the mark bit on the
7340smob. The generic smob handling code in the garbage collector will
7341set this bit. The mark function need only ensure that any other
7342objects the smob refers to get marked.
7343
7344Note that this change means that the smob's GC8MARK bit is typically
7345already set upon entry to the mark function. Thus, marking functions
7346which look like this:
7347
7348 {
7349 if (SCM_GC8MARKP (ptr))
7350 return SCM_BOOL_F;
7351 SCM_SETGC8MARK (ptr);
7352 ... mark objects to which the smob refers ...
7353 }
7354
7355are now incorrect, since they will return early, and fail to mark any
7356other objects the smob refers to. Some code in the Guile library used
7357to work this way.
7358
1cf84ea5
JB
7359** The semantics of the I/O port functions in scm_ptobfuns have changed.
7360
7361If you have implemented your own I/O port type, by writing the
7362functions required by the scm_ptobfuns and then calling scm_newptob,
7363you will need to change your functions slightly.
7364
7365The functions in a scm_ptobfuns structure now expect the port itself
7366as their argument; they used to expect the `stream' member of the
7367port's scm_port_table structure. This allows functions in an
7368scm_ptobfuns structure to easily access the port's cell (and any flags
7369it its CAR), and the port's scm_port_table structure.
7370
7371Guile now passes the I/O port itself as the `port' argument in the
7372following scm_ptobfuns functions:
7373
7374 int (*free) (SCM port);
7375 int (*fputc) (int, SCM port);
7376 int (*fputs) (char *, SCM port);
7377 scm_sizet (*fwrite) SCM_P ((char *ptr,
7378 scm_sizet size,
7379 scm_sizet nitems,
7380 SCM port));
7381 int (*fflush) (SCM port);
7382 int (*fgetc) (SCM port);
7383 int (*fclose) (SCM port);
7384
7385The interfaces to the `mark', `print', `equalp', and `fgets' methods
7386are unchanged.
7387
7388If you have existing code which defines its own port types, it is easy
7389to convert your code to the new interface; simply apply SCM_STREAM to
7390the port argument to yield the value you code used to expect.
7391
7392Note that since both the port and the stream have the same type in the
7393C code --- they are both SCM values --- the C compiler will not remind
7394you if you forget to update your scm_ptobfuns functions.
7395
7396
933a7411
MD
7397** Function: int scm_internal_select (int fds,
7398 SELECT_TYPE *rfds,
7399 SELECT_TYPE *wfds,
7400 SELECT_TYPE *efds,
7401 struct timeval *timeout);
7402
7403This is a replacement for the `select' function provided by the OS.
7404It enables I/O blocking and sleeping to happen for one cooperative
7405thread without blocking other threads. It also avoids busy-loops in
7406these situations. It is intended that all I/O blocking and sleeping
7407will finally go through this function. Currently, this function is
7408only available on systems providing `gettimeofday' and `select'.
7409
5424b4f7
MD
7410** Function: SCM scm_internal_stack_catch (SCM tag,
7411 scm_catch_body_t body,
7412 void *body_data,
7413 scm_catch_handler_t handler,
7414 void *handler_data)
7415
7416A new sibling to the other two C level `catch' functions
7417scm_internal_catch and scm_internal_lazy_catch. Use it if you want
7418the stack to be saved automatically into the variable `the-last-stack'
7419(scm_the_last_stack_var) on error. This is necessary if you want to
7420use advanced error reporting, such as calling scm_display_error and
7421scm_display_backtrace. (They both take a stack object as argument.)
7422
df366c26
MD
7423** Function: SCM scm_spawn_thread (scm_catch_body_t body,
7424 void *body_data,
7425 scm_catch_handler_t handler,
7426 void *handler_data)
7427
7428Spawns a new thread. It does a job similar to
7429scm_call_with_new_thread but takes arguments more suitable when
7430spawning threads from application C code.
7431
88482b31
MD
7432** The hook scm_error_callback has been removed. It was originally
7433intended as a way for the user to install his own error handler. But
7434that method works badly since it intervenes between throw and catch,
7435thereby changing the semantics of expressions like (catch #t ...).
7436The correct way to do it is to use one of the C level catch functions
7437in throw.c: scm_internal_catch/lazy_catch/stack_catch.
7438
3a97e020
MD
7439** Removed functions:
7440
7441scm_obj_length, scm_list_length, scm_list_append, scm_list_append_x,
7442scm_list_reverse, scm_list_reverse_x
7443
7444** New macros: SCM_LISTn where n is one of the integers 0-9.
7445
7446These can be used for pretty list creation from C. The idea is taken
7447from Erick Gallesio's STk.
7448
298aa6e3
MD
7449** scm_array_map renamed to scm_array_map_x
7450
527da704
MD
7451** mbstrings are now removed
7452
7453This means that the type codes scm_tc7_mb_string and
7454scm_tc7_mb_substring has been removed.
7455
8cd57bd0
JB
7456** scm_gen_putc, scm_gen_puts, scm_gen_write, and scm_gen_getc have changed.
7457
7458Since we no longer support multi-byte strings, these I/O functions
7459have been simplified, and renamed. Here are their old names, and
7460their new names and arguments:
7461
7462scm_gen_putc -> void scm_putc (int c, SCM port);
7463scm_gen_puts -> void scm_puts (char *s, SCM port);
7464scm_gen_write -> void scm_lfwrite (char *ptr, scm_sizet size, SCM port);
7465scm_gen_getc -> void scm_getc (SCM port);
7466
7467
527da704
MD
7468** The macros SCM_TYP7D and SCM_TYP7SD has been removed.
7469
7470** The macro SCM_TYP7S has taken the role of the old SCM_TYP7D
7471
7472SCM_TYP7S now masks away the bit which distinguishes substrings from
7473strings.
7474
660f41fa
MD
7475** scm_catch_body_t: Backward incompatible change!
7476
7477Body functions to scm_internal_catch and friends do not any longer
7478take a second argument. This is because it is no longer possible to
7479pass a #f arg to catch.
7480
a8e05009
JB
7481** Calls to scm_protect_object and scm_unprotect now nest properly.
7482
7483The function scm_protect_object protects its argument from being freed
7484by the garbage collector. scm_unprotect_object removes that
7485protection.
7486
7487These functions now nest properly. That is, for every object O, there
7488is a counter which scm_protect_object(O) increments and
7489scm_unprotect_object(O) decrements, if the counter is greater than
7490zero. Every object's counter is zero when it is first created. If an
7491object's counter is greater than zero, the garbage collector will not
7492reclaim its storage.
7493
7494This allows you to use scm_protect_object in your code without
7495worrying that some other function you call will call
7496scm_unprotect_object, and allow it to be freed. Assuming that the
7497functions you call are well-behaved, and unprotect only those objects
7498they protect, you can follow the same rule and have confidence that
7499objects will be freed only at appropriate times.
7500
c484bf7f
JB
7501\f
7502Changes in Guile 1.2 (released Tuesday, June 24 1997):
cf78e9e8 7503
737c9113
JB
7504* Changes to the distribution
7505
832b09ed
JB
7506** Nightly snapshots are now available from ftp.red-bean.com.
7507The old server, ftp.cyclic.com, has been relinquished to its rightful
7508owner.
7509
7510Nightly snapshots of the Guile development sources are now available via
7511anonymous FTP from ftp.red-bean.com, as /pub/guile/guile-snap.tar.gz.
7512
7513Via the web, that's: ftp://ftp.red-bean.com/pub/guile/guile-snap.tar.gz
7514For getit, that's: ftp.red-bean.com:/pub/guile/guile-snap.tar.gz
7515
0fcab5ed
JB
7516** To run Guile without installing it, the procedure has changed a bit.
7517
7518If you used a separate build directory to compile Guile, you'll need
7519to include the build directory in SCHEME_LOAD_PATH, as well as the
7520source directory. See the `INSTALL' file for examples.
7521
737c9113
JB
7522* Changes to the procedure for linking libguile with your programs
7523
94982a4e
JB
7524** The standard Guile load path for Scheme code now includes
7525$(datadir)/guile (usually /usr/local/share/guile). This means that
7526you can install your own Scheme files there, and Guile will find them.
7527(Previous versions of Guile only checked a directory whose name
7528contained the Guile version number, so you had to re-install or move
7529your Scheme sources each time you installed a fresh version of Guile.)
7530
7531The load path also includes $(datadir)/guile/site; we recommend
7532putting individual Scheme files there. If you want to install a
7533package with multiple source files, create a directory for them under
7534$(datadir)/guile.
7535
7536** Guile 1.2 will now use the Rx regular expression library, if it is
7537installed on your system. When you are linking libguile into your own
7538programs, this means you will have to link against -lguile, -lqt (if
7539you configured Guile with thread support), and -lrx.
27590f82
JB
7540
7541If you are using autoconf to generate configuration scripts for your
7542application, the following lines should suffice to add the appropriate
7543libraries to your link command:
7544
7545### Find Rx, quickthreads and libguile.
7546AC_CHECK_LIB(rx, main)
7547AC_CHECK_LIB(qt, main)
7548AC_CHECK_LIB(guile, scm_shell)
7549
94982a4e
JB
7550The Guile 1.2 distribution does not contain sources for the Rx
7551library, as Guile 1.0 did. If you want to use Rx, you'll need to
7552retrieve it from a GNU FTP site and install it separately.
7553
b83b8bee
JB
7554* Changes to Scheme functions and syntax
7555
e035e7e6
MV
7556** The dynamic linking features of Guile are now enabled by default.
7557You can disable them by giving the `--disable-dynamic-linking' option
7558to configure.
7559
e035e7e6
MV
7560 (dynamic-link FILENAME)
7561
7562 Find the object file denoted by FILENAME (a string) and link it
7563 into the running Guile application. When everything works out,
7564 return a Scheme object suitable for representing the linked object
7565 file. Otherwise an error is thrown. How object files are
7566 searched is system dependent.
7567
7568 (dynamic-object? VAL)
7569
7570 Determine whether VAL represents a dynamically linked object file.
7571
7572 (dynamic-unlink DYNOBJ)
7573
7574 Unlink the indicated object file from the application. DYNOBJ
7575 should be one of the values returned by `dynamic-link'.
7576
7577 (dynamic-func FUNCTION DYNOBJ)
7578
7579 Search the C function indicated by FUNCTION (a string or symbol)
7580 in DYNOBJ and return some Scheme object that can later be used
7581 with `dynamic-call' to actually call this function. Right now,
7582 these Scheme objects are formed by casting the address of the
7583 function to `long' and converting this number to its Scheme
7584 representation.
7585
7586 (dynamic-call FUNCTION DYNOBJ)
7587
7588 Call the C function indicated by FUNCTION and DYNOBJ. The
7589 function is passed no arguments and its return value is ignored.
7590 When FUNCTION is something returned by `dynamic-func', call that
7591 function and ignore DYNOBJ. When FUNCTION is a string (or symbol,
7592 etc.), look it up in DYNOBJ; this is equivalent to
7593
7594 (dynamic-call (dynamic-func FUNCTION DYNOBJ) #f)
7595
7596 Interrupts are deferred while the C function is executing (with
7597 SCM_DEFER_INTS/SCM_ALLOW_INTS).
7598
7599 (dynamic-args-call FUNCTION DYNOBJ ARGS)
7600
7601 Call the C function indicated by FUNCTION and DYNOBJ, but pass it
7602 some arguments and return its return value. The C function is
7603 expected to take two arguments and return an `int', just like
7604 `main':
7605
7606 int c_func (int argc, char **argv);
7607
7608 ARGS must be a list of strings and is converted into an array of
7609 `char *'. The array is passed in ARGV and its size in ARGC. The
7610 return value is converted to a Scheme number and returned from the
7611 call to `dynamic-args-call'.
7612
0fcab5ed
JB
7613When dynamic linking is disabled or not supported on your system,
7614the above functions throw errors, but they are still available.
7615
e035e7e6
MV
7616Here is a small example that works on GNU/Linux:
7617
7618 (define libc-obj (dynamic-link "libc.so"))
7619 (dynamic-args-call 'rand libc-obj '())
7620
7621See the file `libguile/DYNAMIC-LINKING' for additional comments.
7622
27590f82 7623** The #/ syntax for module names is depreciated, and will be removed
6c0201ad 7624in a future version of Guile. Instead of
27590f82
JB
7625
7626 #/foo/bar/baz
7627
7628instead write
7629
7630 (foo bar baz)
7631
7632The latter syntax is more consistent with existing Lisp practice.
7633
5dade857
MV
7634** Guile now does fancier printing of structures. Structures are the
7635underlying implementation for records, which in turn are used to
7636implement modules, so all of these object now print differently and in
7637a more informative way.
7638
161029df
JB
7639The Scheme printer will examine the builtin variable *struct-printer*
7640whenever it needs to print a structure object. When this variable is
7641not `#f' it is deemed to be a procedure and will be applied to the
7642structure object and the output port. When *struct-printer* is `#f'
7643or the procedure return `#f' the structure object will be printed in
7644the boring #<struct 80458270> form.
5dade857
MV
7645
7646This hook is used by some routines in ice-9/boot-9.scm to implement
7647type specific printing routines. Please read the comments there about
7648"printing structs".
7649
7650One of the more specific uses of structs are records. The printing
7651procedure that could be passed to MAKE-RECORD-TYPE is now actually
7652called. It should behave like a *struct-printer* procedure (described
7653above).
7654
b83b8bee
JB
7655** Guile now supports a new R4RS-compliant syntax for keywords. A
7656token of the form #:NAME, where NAME has the same syntax as a Scheme
7657symbol, is the external representation of the keyword named NAME.
7658Keyword objects print using this syntax as well, so values containing
1e5afba0
JB
7659keyword objects can be read back into Guile. When used in an
7660expression, keywords are self-quoting objects.
b83b8bee
JB
7661
7662Guile suports this read syntax, and uses this print syntax, regardless
7663of the current setting of the `keyword' read option. The `keyword'
7664read option only controls whether Guile recognizes the `:NAME' syntax,
7665which is incompatible with R4RS. (R4RS says such token represent
7666symbols.)
737c9113
JB
7667
7668** Guile has regular expression support again. Guile 1.0 included
7669functions for matching regular expressions, based on the Rx library.
7670In Guile 1.1, the Guile/Rx interface was removed to simplify the
7671distribution, and thus Guile had no regular expression support. Guile
94982a4e
JB
76721.2 again supports the most commonly used functions, and supports all
7673of SCSH's regular expression functions.
2409cdfa 7674
94982a4e
JB
7675If your system does not include a POSIX regular expression library,
7676and you have not linked Guile with a third-party regexp library such as
7677Rx, these functions will not be available. You can tell whether your
7678Guile installation includes regular expression support by checking
7679whether the `*features*' list includes the `regex' symbol.
737c9113 7680
94982a4e 7681*** regexp functions
161029df 7682
94982a4e
JB
7683By default, Guile supports POSIX extended regular expressions. That
7684means that the characters `(', `)', `+' and `?' are special, and must
7685be escaped if you wish to match the literal characters.
e1a191a8 7686
94982a4e
JB
7687This regular expression interface was modeled after that implemented
7688by SCSH, the Scheme Shell. It is intended to be upwardly compatible
7689with SCSH regular expressions.
7690
7691**** Function: string-match PATTERN STR [START]
7692 Compile the string PATTERN into a regular expression and compare
7693 it with STR. The optional numeric argument START specifies the
7694 position of STR at which to begin matching.
7695
7696 `string-match' returns a "match structure" which describes what,
7697 if anything, was matched by the regular expression. *Note Match
7698 Structures::. If STR does not match PATTERN at all,
7699 `string-match' returns `#f'.
7700
7701 Each time `string-match' is called, it must compile its PATTERN
7702argument into a regular expression structure. This operation is
7703expensive, which makes `string-match' inefficient if the same regular
7704expression is used several times (for example, in a loop). For better
7705performance, you can compile a regular expression in advance and then
7706match strings against the compiled regexp.
7707
7708**** Function: make-regexp STR [FLAGS]
7709 Compile the regular expression described by STR, and return the
7710 compiled regexp structure. If STR does not describe a legal
7711 regular expression, `make-regexp' throws a
7712 `regular-expression-syntax' error.
7713
7714 FLAGS may be the bitwise-or of one or more of the following:
7715
7716**** Constant: regexp/extended
7717 Use POSIX Extended Regular Expression syntax when interpreting
7718 STR. If not set, POSIX Basic Regular Expression syntax is used.
7719 If the FLAGS argument is omitted, we assume regexp/extended.
7720
7721**** Constant: regexp/icase
7722 Do not differentiate case. Subsequent searches using the
7723 returned regular expression will be case insensitive.
7724
7725**** Constant: regexp/newline
7726 Match-any-character operators don't match a newline.
7727
7728 A non-matching list ([^...]) not containing a newline matches a
7729 newline.
7730
7731 Match-beginning-of-line operator (^) matches the empty string
7732 immediately after a newline, regardless of whether the FLAGS
7733 passed to regexp-exec contain regexp/notbol.
7734
7735 Match-end-of-line operator ($) matches the empty string
7736 immediately before a newline, regardless of whether the FLAGS
7737 passed to regexp-exec contain regexp/noteol.
7738
7739**** Function: regexp-exec REGEXP STR [START [FLAGS]]
7740 Match the compiled regular expression REGEXP against `str'. If
7741 the optional integer START argument is provided, begin matching
7742 from that position in the string. Return a match structure
7743 describing the results of the match, or `#f' if no match could be
7744 found.
7745
7746 FLAGS may be the bitwise-or of one or more of the following:
7747
7748**** Constant: regexp/notbol
7749 The match-beginning-of-line operator always fails to match (but
7750 see the compilation flag regexp/newline above) This flag may be
7751 used when different portions of a string are passed to
7752 regexp-exec and the beginning of the string should not be
7753 interpreted as the beginning of the line.
7754
7755**** Constant: regexp/noteol
7756 The match-end-of-line operator always fails to match (but see the
7757 compilation flag regexp/newline above)
7758
7759**** Function: regexp? OBJ
7760 Return `#t' if OBJ is a compiled regular expression, or `#f'
7761 otherwise.
7762
7763 Regular expressions are commonly used to find patterns in one string
7764and replace them with the contents of another string.
7765
7766**** Function: regexp-substitute PORT MATCH [ITEM...]
7767 Write to the output port PORT selected contents of the match
7768 structure MATCH. Each ITEM specifies what should be written, and
7769 may be one of the following arguments:
7770
7771 * A string. String arguments are written out verbatim.
7772
7773 * An integer. The submatch with that number is written.
7774
7775 * The symbol `pre'. The portion of the matched string preceding
7776 the regexp match is written.
7777
7778 * The symbol `post'. The portion of the matched string
7779 following the regexp match is written.
7780
7781 PORT may be `#f', in which case nothing is written; instead,
7782 `regexp-substitute' constructs a string from the specified ITEMs
7783 and returns that.
7784
7785**** Function: regexp-substitute/global PORT REGEXP TARGET [ITEM...]
7786 Similar to `regexp-substitute', but can be used to perform global
7787 substitutions on STR. Instead of taking a match structure as an
7788 argument, `regexp-substitute/global' takes two string arguments: a
7789 REGEXP string describing a regular expression, and a TARGET string
7790 which should be matched against this regular expression.
7791
7792 Each ITEM behaves as in REGEXP-SUBSTITUTE, with the following
7793 exceptions:
7794
7795 * A function may be supplied. When this function is called, it
7796 will be passed one argument: a match structure for a given
7797 regular expression match. It should return a string to be
7798 written out to PORT.
7799
7800 * The `post' symbol causes `regexp-substitute/global' to recurse
7801 on the unmatched portion of STR. This *must* be supplied in
7802 order to perform global search-and-replace on STR; if it is
7803 not present among the ITEMs, then `regexp-substitute/global'
7804 will return after processing a single match.
7805
7806*** Match Structures
7807
7808 A "match structure" is the object returned by `string-match' and
7809`regexp-exec'. It describes which portion of a string, if any, matched
7810the given regular expression. Match structures include: a reference to
7811the string that was checked for matches; the starting and ending
7812positions of the regexp match; and, if the regexp included any
7813parenthesized subexpressions, the starting and ending positions of each
7814submatch.
7815
7816 In each of the regexp match functions described below, the `match'
7817argument must be a match structure returned by a previous call to
7818`string-match' or `regexp-exec'. Most of these functions return some
7819information about the original target string that was matched against a
7820regular expression; we will call that string TARGET for easy reference.
7821
7822**** Function: regexp-match? OBJ
7823 Return `#t' if OBJ is a match structure returned by a previous
7824 call to `regexp-exec', or `#f' otherwise.
7825
7826**** Function: match:substring MATCH [N]
7827 Return the portion of TARGET matched by subexpression number N.
7828 Submatch 0 (the default) represents the entire regexp match. If
7829 the regular expression as a whole matched, but the subexpression
7830 number N did not match, return `#f'.
7831
7832**** Function: match:start MATCH [N]
7833 Return the starting position of submatch number N.
7834
7835**** Function: match:end MATCH [N]
7836 Return the ending position of submatch number N.
7837
7838**** Function: match:prefix MATCH
7839 Return the unmatched portion of TARGET preceding the regexp match.
7840
7841**** Function: match:suffix MATCH
7842 Return the unmatched portion of TARGET following the regexp match.
7843
7844**** Function: match:count MATCH
7845 Return the number of parenthesized subexpressions from MATCH.
7846 Note that the entire regular expression match itself counts as a
7847 subexpression, and failed submatches are included in the count.
7848
7849**** Function: match:string MATCH
7850 Return the original TARGET string.
7851
7852*** Backslash Escapes
7853
7854 Sometimes you will want a regexp to match characters like `*' or `$'
7855exactly. For example, to check whether a particular string represents
7856a menu entry from an Info node, it would be useful to match it against
7857a regexp like `^* [^:]*::'. However, this won't work; because the
7858asterisk is a metacharacter, it won't match the `*' at the beginning of
7859the string. In this case, we want to make the first asterisk un-magic.
7860
7861 You can do this by preceding the metacharacter with a backslash
7862character `\'. (This is also called "quoting" the metacharacter, and
7863is known as a "backslash escape".) When Guile sees a backslash in a
7864regular expression, it considers the following glyph to be an ordinary
7865character, no matter what special meaning it would ordinarily have.
7866Therefore, we can make the above example work by changing the regexp to
7867`^\* [^:]*::'. The `\*' sequence tells the regular expression engine
7868to match only a single asterisk in the target string.
7869
7870 Since the backslash is itself a metacharacter, you may force a
7871regexp to match a backslash in the target string by preceding the
7872backslash with itself. For example, to find variable references in a
7873TeX program, you might want to find occurrences of the string `\let\'
7874followed by any number of alphabetic characters. The regular expression
7875`\\let\\[A-Za-z]*' would do this: the double backslashes in the regexp
7876each match a single backslash in the target string.
7877
7878**** Function: regexp-quote STR
7879 Quote each special character found in STR with a backslash, and
7880 return the resulting string.
7881
7882 *Very important:* Using backslash escapes in Guile source code (as
7883in Emacs Lisp or C) can be tricky, because the backslash character has
7884special meaning for the Guile reader. For example, if Guile encounters
7885the character sequence `\n' in the middle of a string while processing
7886Scheme code, it replaces those characters with a newline character.
7887Similarly, the character sequence `\t' is replaced by a horizontal tab.
7888Several of these "escape sequences" are processed by the Guile reader
7889before your code is executed. Unrecognized escape sequences are
7890ignored: if the characters `\*' appear in a string, they will be
7891translated to the single character `*'.
7892
7893 This translation is obviously undesirable for regular expressions,
7894since we want to be able to include backslashes in a string in order to
7895escape regexp metacharacters. Therefore, to make sure that a backslash
7896is preserved in a string in your Guile program, you must use *two*
7897consecutive backslashes:
7898
7899 (define Info-menu-entry-pattern (make-regexp "^\\* [^:]*"))
7900
7901 The string in this example is preprocessed by the Guile reader before
7902any code is executed. The resulting argument to `make-regexp' is the
7903string `^\* [^:]*', which is what we really want.
7904
7905 This also means that in order to write a regular expression that
7906matches a single backslash character, the regular expression string in
7907the source code must include *four* backslashes. Each consecutive pair
7908of backslashes gets translated by the Guile reader to a single
7909backslash, and the resulting double-backslash is interpreted by the
7910regexp engine as matching a single backslash character. Hence:
7911
7912 (define tex-variable-pattern (make-regexp "\\\\let\\\\=[A-Za-z]*"))
7913
7914 The reason for the unwieldiness of this syntax is historical. Both
7915regular expression pattern matchers and Unix string processing systems
7916have traditionally used backslashes with the special meanings described
7917above. The POSIX regular expression specification and ANSI C standard
7918both require these semantics. Attempting to abandon either convention
7919would cause other kinds of compatibility problems, possibly more severe
7920ones. Therefore, without extending the Scheme reader to support
7921strings with different quoting conventions (an ungainly and confusing
7922extension when implemented in other languages), we must adhere to this
7923cumbersome escape syntax.
7924
7ad3c1e7
GH
7925* Changes to the gh_ interface
7926
7927* Changes to the scm_ interface
7928
7929* Changes to system call interfaces:
94982a4e 7930
7ad3c1e7 7931** The value returned by `raise' is now unspecified. It throws an exception
e1a191a8
GH
7932if an error occurs.
7933
94982a4e 7934*** A new procedure `sigaction' can be used to install signal handlers
115b09a5
GH
7935
7936(sigaction signum [action] [flags])
7937
7938signum is the signal number, which can be specified using the value
7939of SIGINT etc.
7940
7941If action is omitted, sigaction returns a pair: the CAR is the current
7942signal hander, which will be either an integer with the value SIG_DFL
7943(default action) or SIG_IGN (ignore), or the Scheme procedure which
7944handles the signal, or #f if a non-Scheme procedure handles the
7945signal. The CDR contains the current sigaction flags for the handler.
7946
7947If action is provided, it is installed as the new handler for signum.
7948action can be a Scheme procedure taking one argument, or the value of
7949SIG_DFL (default action) or SIG_IGN (ignore), or #f to restore
7950whatever signal handler was installed before sigaction was first used.
7951Flags can optionally be specified for the new handler (SA_RESTART is
7952always used if the system provides it, so need not be specified.) The
7953return value is a pair with information about the old handler as
7954described above.
7955
7956This interface does not provide access to the "signal blocking"
7957facility. Maybe this is not needed, since the thread support may
7958provide solutions to the problem of consistent access to data
7959structures.
e1a191a8 7960
94982a4e 7961*** A new procedure `flush-all-ports' is equivalent to running
89ea5b7c
GH
7962`force-output' on every port open for output.
7963
94982a4e
JB
7964** Guile now provides information on how it was built, via the new
7965global variable, %guile-build-info. This variable records the values
7966of the standard GNU makefile directory variables as an assocation
7967list, mapping variable names (symbols) onto directory paths (strings).
7968For example, to find out where the Guile link libraries were
7969installed, you can say:
7970
7971guile -c "(display (assq-ref %guile-build-info 'libdir)) (newline)"
7972
7973
7974* Changes to the scm_ interface
7975
7976** The new function scm_handle_by_message_noexit is just like the
7977existing scm_handle_by_message function, except that it doesn't call
7978exit to terminate the process. Instead, it prints a message and just
7979returns #f. This might be a more appropriate catch-all handler for
7980new dynamic roots and threads.
7981
cf78e9e8 7982\f
c484bf7f 7983Changes in Guile 1.1 (released Friday, May 16 1997):
f3b1485f
JB
7984
7985* Changes to the distribution.
7986
7987The Guile 1.0 distribution has been split up into several smaller
7988pieces:
7989guile-core --- the Guile interpreter itself.
7990guile-tcltk --- the interface between the Guile interpreter and
7991 Tcl/Tk; Tcl is an interpreter for a stringy language, and Tk
7992 is a toolkit for building graphical user interfaces.
7993guile-rgx-ctax --- the interface between Guile and the Rx regular
7994 expression matcher, and the translator for the Ctax
7995 programming language. These are packaged together because the
7996 Ctax translator uses Rx to parse Ctax source code.
7997
095936d2
JB
7998This NEWS file describes the changes made to guile-core since the 1.0
7999release.
8000
48d224d7
JB
8001We no longer distribute the documentation, since it was either out of
8002date, or incomplete. As soon as we have current documentation, we
8003will distribute it.
8004
0fcab5ed
JB
8005
8006
f3b1485f
JB
8007* Changes to the stand-alone interpreter
8008
48d224d7
JB
8009** guile now accepts command-line arguments compatible with SCSH, Olin
8010Shivers' Scheme Shell.
8011
8012In general, arguments are evaluated from left to right, but there are
8013exceptions. The following switches stop argument processing, and
8014stash all remaining command-line arguments as the value returned by
8015the (command-line) function.
8016 -s SCRIPT load Scheme source code from FILE, and exit
8017 -c EXPR evalute Scheme expression EXPR, and exit
8018 -- stop scanning arguments; run interactively
8019
8020The switches below are processed as they are encountered.
8021 -l FILE load Scheme source code from FILE
8022 -e FUNCTION after reading script, apply FUNCTION to
8023 command line arguments
8024 -ds do -s script at this point
8025 --emacs enable Emacs protocol (experimental)
8026 -h, --help display this help and exit
8027 -v, --version display version information and exit
8028 \ read arguments from following script lines
8029
8030So, for example, here is a Guile script named `ekko' (thanks, Olin)
8031which re-implements the traditional "echo" command:
8032
8033#!/usr/local/bin/guile -s
8034!#
8035(define (main args)
8036 (map (lambda (arg) (display arg) (display " "))
8037 (cdr args))
8038 (newline))
8039
8040(main (command-line))
8041
8042Suppose we invoke this script as follows:
8043
8044 ekko a speckled gecko
8045
8046Through the magic of Unix script processing (triggered by the `#!'
8047token at the top of the file), /usr/local/bin/guile receives the
8048following list of command-line arguments:
8049
8050 ("-s" "./ekko" "a" "speckled" "gecko")
8051
8052Unix inserts the name of the script after the argument specified on
8053the first line of the file (in this case, "-s"), and then follows that
8054with the arguments given to the script. Guile loads the script, which
8055defines the `main' function, and then applies it to the list of
8056remaining command-line arguments, ("a" "speckled" "gecko").
8057
095936d2
JB
8058In Unix, the first line of a script file must take the following form:
8059
8060#!INTERPRETER ARGUMENT
8061
8062where INTERPRETER is the absolute filename of the interpreter
8063executable, and ARGUMENT is a single command-line argument to pass to
8064the interpreter.
8065
8066You may only pass one argument to the interpreter, and its length is
8067limited. These restrictions can be annoying to work around, so Guile
8068provides a general mechanism (borrowed from, and compatible with,
8069SCSH) for circumventing them.
8070
8071If the ARGUMENT in a Guile script is a single backslash character,
8072`\', Guile will open the script file, parse arguments from its second
8073and subsequent lines, and replace the `\' with them. So, for example,
8074here is another implementation of the `ekko' script:
8075
8076#!/usr/local/bin/guile \
8077-e main -s
8078!#
8079(define (main args)
8080 (for-each (lambda (arg) (display arg) (display " "))
8081 (cdr args))
8082 (newline))
8083
8084If the user invokes this script as follows:
8085
8086 ekko a speckled gecko
8087
8088Unix expands this into
8089
8090 /usr/local/bin/guile \ ekko a speckled gecko
8091
8092When Guile sees the `\' argument, it replaces it with the arguments
8093read from the second line of the script, producing:
8094
8095 /usr/local/bin/guile -e main -s ekko a speckled gecko
8096
8097This tells Guile to load the `ekko' script, and apply the function
8098`main' to the argument list ("a" "speckled" "gecko").
8099
8100Here is how Guile parses the command-line arguments:
8101- Each space character terminates an argument. This means that two
8102 spaces in a row introduce an empty-string argument.
8103- The tab character is not permitted (unless you quote it with the
8104 backslash character, as described below), to avoid confusion.
8105- The newline character terminates the sequence of arguments, and will
8106 also terminate a final non-empty argument. (However, a newline
8107 following a space will not introduce a final empty-string argument;
8108 it only terminates the argument list.)
8109- The backslash character is the escape character. It escapes
8110 backslash, space, tab, and newline. The ANSI C escape sequences
8111 like \n and \t are also supported. These produce argument
8112 constituents; the two-character combination \n doesn't act like a
8113 terminating newline. The escape sequence \NNN for exactly three
8114 octal digits reads as the character whose ASCII code is NNN. As
8115 above, characters produced this way are argument constituents.
8116 Backslash followed by other characters is not allowed.
8117
48d224d7
JB
8118* Changes to the procedure for linking libguile with your programs
8119
8120** Guile now builds and installs a shared guile library, if your
8121system support shared libraries. (It still builds a static library on
8122all systems.) Guile automatically detects whether your system
8123supports shared libraries. To prevent Guile from buildisg shared
8124libraries, pass the `--disable-shared' flag to the configure script.
8125
8126Guile takes longer to compile when it builds shared libraries, because
8127it must compile every file twice --- once to produce position-
8128independent object code, and once to produce normal object code.
8129
8130** The libthreads library has been merged into libguile.
8131
8132To link a program against Guile, you now need only link against
8133-lguile and -lqt; -lthreads is no longer needed. If you are using
8134autoconf to generate configuration scripts for your application, the
8135following lines should suffice to add the appropriate libraries to
8136your link command:
8137
8138### Find quickthreads and libguile.
8139AC_CHECK_LIB(qt, main)
8140AC_CHECK_LIB(guile, scm_shell)
f3b1485f
JB
8141
8142* Changes to Scheme functions
8143
095936d2
JB
8144** Guile Scheme's special syntax for keyword objects is now optional,
8145and disabled by default.
8146
8147The syntax variation from R4RS made it difficult to port some
8148interesting packages to Guile. The routines which accepted keyword
8149arguments (mostly in the module system) have been modified to also
8150accept symbols whose names begin with `:'.
8151
8152To change the keyword syntax, you must first import the (ice-9 debug)
8153module:
8154 (use-modules (ice-9 debug))
8155
8156Then you can enable the keyword syntax as follows:
8157 (read-set! keywords 'prefix)
8158
8159To disable keyword syntax, do this:
8160 (read-set! keywords #f)
8161
8162** Many more primitive functions accept shared substrings as
8163arguments. In the past, these functions required normal, mutable
8164strings as arguments, although they never made use of this
8165restriction.
8166
8167** The uniform array functions now operate on byte vectors. These
8168functions are `array-fill!', `serial-array-copy!', `array-copy!',
8169`serial-array-map', `array-map', `array-for-each', and
8170`array-index-map!'.
8171
8172** The new functions `trace' and `untrace' implement simple debugging
8173support for Scheme functions.
8174
8175The `trace' function accepts any number of procedures as arguments,
8176and tells the Guile interpreter to display each procedure's name and
8177arguments each time the procedure is invoked. When invoked with no
8178arguments, `trace' returns the list of procedures currently being
8179traced.
8180
8181The `untrace' function accepts any number of procedures as arguments,
8182and tells the Guile interpreter not to trace them any more. When
8183invoked with no arguments, `untrace' untraces all curretly traced
8184procedures.
8185
8186The tracing in Guile has an advantage over most other systems: we
8187don't create new procedure objects, but mark the procedure objects
8188themselves. This means that anonymous and internal procedures can be
8189traced.
8190
8191** The function `assert-repl-prompt' has been renamed to
8192`set-repl-prompt!'. It takes one argument, PROMPT.
8193- If PROMPT is #f, the Guile read-eval-print loop will not prompt.
8194- If PROMPT is a string, we use it as a prompt.
8195- If PROMPT is a procedure accepting no arguments, we call it, and
8196 display the result as a prompt.
8197- Otherwise, we display "> ".
8198
8199** The new function `eval-string' reads Scheme expressions from a
8200string and evaluates them, returning the value of the last expression
8201in the string. If the string contains no expressions, it returns an
8202unspecified value.
8203
8204** The new function `thunk?' returns true iff its argument is a
8205procedure of zero arguments.
8206
8207** `defined?' is now a builtin function, instead of syntax. This
8208means that its argument should be quoted. It returns #t iff its
8209argument is bound in the current module.
8210
8211** The new syntax `use-modules' allows you to add new modules to your
8212environment without re-typing a complete `define-module' form. It
8213accepts any number of module names as arguments, and imports their
8214public bindings into the current module.
8215
8216** The new function (module-defined? NAME MODULE) returns true iff
8217NAME, a symbol, is defined in MODULE, a module object.
8218
8219** The new function `builtin-bindings' creates and returns a hash
8220table containing copies of all the root module's bindings.
8221
8222** The new function `builtin-weak-bindings' does the same as
8223`builtin-bindings', but creates a doubly-weak hash table.
8224
8225** The `equal?' function now considers variable objects to be
8226equivalent if they have the same name and the same value.
8227
8228** The new function `command-line' returns the command-line arguments
8229given to Guile, as a list of strings.
8230
8231When using guile as a script interpreter, `command-line' returns the
8232script's arguments; those processed by the interpreter (like `-s' or
8233`-c') are omitted. (In other words, you get the normal, expected
8234behavior.) Any application that uses scm_shell to process its
8235command-line arguments gets this behavior as well.
8236
8237** The new function `load-user-init' looks for a file called `.guile'
8238in the user's home directory, and loads it if it exists. This is
8239mostly for use by the code generated by scm_compile_shell_switches,
8240but we thought it might also be useful in other circumstances.
8241
8242** The new function `log10' returns the base-10 logarithm of its
8243argument.
8244
8245** Changes to I/O functions
8246
6c0201ad 8247*** The functions `read', `primitive-load', `read-and-eval!', and
095936d2
JB
8248`primitive-load-path' no longer take optional arguments controlling
8249case insensitivity and a `#' parser.
8250
8251Case sensitivity is now controlled by a read option called
8252`case-insensitive'. The user can add new `#' syntaxes with the
8253`read-hash-extend' function (see below).
8254
8255*** The new function `read-hash-extend' allows the user to change the
8256syntax of Guile Scheme in a somewhat controlled way.
8257
8258(read-hash-extend CHAR PROC)
8259 When parsing S-expressions, if we read a `#' character followed by
8260 the character CHAR, use PROC to parse an object from the stream.
8261 If PROC is #f, remove any parsing procedure registered for CHAR.
8262
8263 The reader applies PROC to two arguments: CHAR and an input port.
8264
6c0201ad 8265*** The new functions read-delimited and read-delimited! provide a
095936d2
JB
8266general mechanism for doing delimited input on streams.
8267
8268(read-delimited DELIMS [PORT HANDLE-DELIM])
8269 Read until we encounter one of the characters in DELIMS (a string),
8270 or end-of-file. PORT is the input port to read from; it defaults to
8271 the current input port. The HANDLE-DELIM parameter determines how
8272 the terminating character is handled; it should be one of the
8273 following symbols:
8274
8275 'trim omit delimiter from result
8276 'peek leave delimiter character in input stream
8277 'concat append delimiter character to returned value
8278 'split return a pair: (RESULT . TERMINATOR)
8279
8280 HANDLE-DELIM defaults to 'peek.
8281
8282(read-delimited! DELIMS BUF [PORT HANDLE-DELIM START END])
8283 A side-effecting variant of `read-delimited'.
8284
8285 The data is written into the string BUF at the indices in the
8286 half-open interval [START, END); the default interval is the whole
8287 string: START = 0 and END = (string-length BUF). The values of
8288 START and END must specify a well-defined interval in BUF, i.e.
8289 0 <= START <= END <= (string-length BUF).
8290
8291 It returns NBYTES, the number of bytes read. If the buffer filled
8292 up without a delimiter character being found, it returns #f. If the
8293 port is at EOF when the read starts, it returns the EOF object.
8294
8295 If an integer is returned (i.e., the read is successfully terminated
8296 by reading a delimiter character), then the HANDLE-DELIM parameter
8297 determines how to handle the terminating character. It is described
8298 above, and defaults to 'peek.
8299
8300(The descriptions of these functions were borrowed from the SCSH
8301manual, by Olin Shivers and Brian Carlstrom.)
8302
8303*** The `%read-delimited!' function is the primitive used to implement
8304`read-delimited' and `read-delimited!'.
8305
8306(%read-delimited! DELIMS BUF GOBBLE? [PORT START END])
8307
8308This returns a pair of values: (TERMINATOR . NUM-READ).
8309- TERMINATOR describes why the read was terminated. If it is a
8310 character or the eof object, then that is the value that terminated
8311 the read. If it is #f, the function filled the buffer without finding
8312 a delimiting character.
8313- NUM-READ is the number of characters read into BUF.
8314
8315If the read is successfully terminated by reading a delimiter
8316character, then the gobble? parameter determines what to do with the
8317terminating character. If true, the character is removed from the
8318input stream; if false, the character is left in the input stream
8319where a subsequent read operation will retrieve it. In either case,
8320the character is also the first value returned by the procedure call.
8321
8322(The descriptions of this function was borrowed from the SCSH manual,
8323by Olin Shivers and Brian Carlstrom.)
8324
8325*** The `read-line' and `read-line!' functions have changed; they now
8326trim the terminator by default; previously they appended it to the
8327returned string. For the old behavior, use (read-line PORT 'concat).
8328
8329*** The functions `uniform-array-read!' and `uniform-array-write!' now
8330take new optional START and END arguments, specifying the region of
8331the array to read and write.
8332
f348c807
JB
8333*** The `ungetc-char-ready?' function has been removed. We feel it's
8334inappropriate for an interface to expose implementation details this
8335way.
095936d2
JB
8336
8337** Changes to the Unix library and system call interface
8338
8339*** The new fcntl function provides access to the Unix `fcntl' system
8340call.
8341
8342(fcntl PORT COMMAND VALUE)
8343 Apply COMMAND to PORT's file descriptor, with VALUE as an argument.
8344 Values for COMMAND are:
8345
8346 F_DUPFD duplicate a file descriptor
8347 F_GETFD read the descriptor's close-on-exec flag
8348 F_SETFD set the descriptor's close-on-exec flag to VALUE
8349 F_GETFL read the descriptor's flags, as set on open
8350 F_SETFL set the descriptor's flags, as set on open to VALUE
8351 F_GETOWN return the process ID of a socket's owner, for SIGIO
8352 F_SETOWN set the process that owns a socket to VALUE, for SIGIO
8353 FD_CLOEXEC not sure what this is
8354
8355For details, see the documentation for the fcntl system call.
8356
8357*** The arguments to `select' have changed, for compatibility with
8358SCSH. The TIMEOUT parameter may now be non-integral, yielding the
8359expected behavior. The MILLISECONDS parameter has been changed to
8360MICROSECONDS, to more closely resemble the underlying system call.
8361The RVEC, WVEC, and EVEC arguments can now be vectors; the type of the
8362corresponding return set will be the same.
8363
8364*** The arguments to the `mknod' system call have changed. They are
8365now:
8366
8367(mknod PATH TYPE PERMS DEV)
8368 Create a new file (`node') in the file system. PATH is the name of
8369 the file to create. TYPE is the kind of file to create; it should
8370 be 'fifo, 'block-special, or 'char-special. PERMS specifies the
8371 permission bits to give the newly created file. If TYPE is
8372 'block-special or 'char-special, DEV specifies which device the
8373 special file refers to; its interpretation depends on the kind of
8374 special file being created.
8375
8376*** The `fork' function has been renamed to `primitive-fork', to avoid
8377clashing with various SCSH forks.
8378
8379*** The `recv' and `recvfrom' functions have been renamed to `recv!'
8380and `recvfrom!'. They no longer accept a size for a second argument;
8381you must pass a string to hold the received value. They no longer
8382return the buffer. Instead, `recv' returns the length of the message
8383received, and `recvfrom' returns a pair containing the packet's length
6c0201ad 8384and originating address.
095936d2
JB
8385
8386*** The file descriptor datatype has been removed, as have the
8387`read-fd', `write-fd', `close', `lseek', and `dup' functions.
8388We plan to replace these functions with a SCSH-compatible interface.
8389
8390*** The `create' function has been removed; it's just a special case
8391of `open'.
8392
8393*** There are new functions to break down process termination status
8394values. In the descriptions below, STATUS is a value returned by
8395`waitpid'.
8396
8397(status:exit-val STATUS)
8398 If the child process exited normally, this function returns the exit
8399 code for the child process (i.e., the value passed to exit, or
8400 returned from main). If the child process did not exit normally,
8401 this function returns #f.
8402
8403(status:stop-sig STATUS)
8404 If the child process was suspended by a signal, this function
8405 returns the signal that suspended the child. Otherwise, it returns
8406 #f.
8407
8408(status:term-sig STATUS)
8409 If the child process terminated abnormally, this function returns
8410 the signal that terminated the child. Otherwise, this function
8411 returns false.
8412
8413POSIX promises that exactly one of these functions will return true on
8414a valid STATUS value.
8415
8416These functions are compatible with SCSH.
8417
8418*** There are new accessors and setters for the broken-out time vectors
48d224d7
JB
8419returned by `localtime', `gmtime', and that ilk. They are:
8420
8421 Component Accessor Setter
8422 ========================= ============ ============
8423 seconds tm:sec set-tm:sec
8424 minutes tm:min set-tm:min
8425 hours tm:hour set-tm:hour
8426 day of the month tm:mday set-tm:mday
8427 month tm:mon set-tm:mon
8428 year tm:year set-tm:year
8429 day of the week tm:wday set-tm:wday
8430 day in the year tm:yday set-tm:yday
8431 daylight saving time tm:isdst set-tm:isdst
8432 GMT offset, seconds tm:gmtoff set-tm:gmtoff
8433 name of time zone tm:zone set-tm:zone
8434
095936d2
JB
8435*** There are new accessors for the vectors returned by `uname',
8436describing the host system:
48d224d7
JB
8437
8438 Component Accessor
8439 ============================================== ================
8440 name of the operating system implementation utsname:sysname
8441 network name of this machine utsname:nodename
8442 release level of the operating system utsname:release
8443 version level of the operating system utsname:version
8444 machine hardware platform utsname:machine
8445
095936d2
JB
8446*** There are new accessors for the vectors returned by `getpw',
8447`getpwnam', `getpwuid', and `getpwent', describing entries from the
8448system's user database:
8449
8450 Component Accessor
8451 ====================== =================
8452 user name passwd:name
8453 user password passwd:passwd
8454 user id passwd:uid
8455 group id passwd:gid
8456 real name passwd:gecos
8457 home directory passwd:dir
8458 shell program passwd:shell
8459
8460*** There are new accessors for the vectors returned by `getgr',
8461`getgrnam', `getgrgid', and `getgrent', describing entries from the
8462system's group database:
8463
8464 Component Accessor
8465 ======================= ============
8466 group name group:name
8467 group password group:passwd
8468 group id group:gid
8469 group members group:mem
8470
8471*** There are new accessors for the vectors returned by `gethost',
8472`gethostbyaddr', `gethostbyname', and `gethostent', describing
8473internet hosts:
8474
8475 Component Accessor
8476 ========================= ===============
8477 official name of host hostent:name
8478 alias list hostent:aliases
8479 host address type hostent:addrtype
8480 length of address hostent:length
8481 list of addresses hostent:addr-list
8482
8483*** There are new accessors for the vectors returned by `getnet',
8484`getnetbyaddr', `getnetbyname', and `getnetent', describing internet
8485networks:
8486
8487 Component Accessor
8488 ========================= ===============
8489 official name of net netent:name
8490 alias list netent:aliases
8491 net number type netent:addrtype
8492 net number netent:net
8493
8494*** There are new accessors for the vectors returned by `getproto',
8495`getprotobyname', `getprotobynumber', and `getprotoent', describing
8496internet protocols:
8497
8498 Component Accessor
8499 ========================= ===============
8500 official protocol name protoent:name
8501 alias list protoent:aliases
8502 protocol number protoent:proto
8503
8504*** There are new accessors for the vectors returned by `getserv',
8505`getservbyname', `getservbyport', and `getservent', describing
8506internet protocols:
8507
8508 Component Accessor
8509 ========================= ===============
6c0201ad 8510 official service name servent:name
095936d2 8511 alias list servent:aliases
6c0201ad
TTN
8512 port number servent:port
8513 protocol to use servent:proto
095936d2
JB
8514
8515*** There are new accessors for the sockaddr structures returned by
8516`accept', `getsockname', `getpeername', `recvfrom!':
8517
8518 Component Accessor
8519 ======================================== ===============
6c0201ad 8520 address format (`family') sockaddr:fam
095936d2
JB
8521 path, for file domain addresses sockaddr:path
8522 address, for internet domain addresses sockaddr:addr
8523 TCP or UDP port, for internet sockaddr:port
8524
8525*** The `getpwent', `getgrent', `gethostent', `getnetent',
8526`getprotoent', and `getservent' functions now return #f at the end of
8527the user database. (They used to throw an exception.)
8528
8529Note that calling MUMBLEent function is equivalent to calling the
8530corresponding MUMBLE function with no arguments.
8531
8532*** The `setpwent', `setgrent', `sethostent', `setnetent',
8533`setprotoent', and `setservent' routines now take no arguments.
8534
8535*** The `gethost', `getproto', `getnet', and `getserv' functions now
8536provide more useful information when they throw an exception.
8537
8538*** The `lnaof' function has been renamed to `inet-lnaof'.
8539
8540*** Guile now claims to have the `current-time' feature.
8541
8542*** The `mktime' function now takes an optional second argument ZONE,
8543giving the time zone to use for the conversion. ZONE should be a
8544string, in the same format as expected for the "TZ" environment variable.
8545
8546*** The `strptime' function now returns a pair (TIME . COUNT), where
8547TIME is the parsed time as a vector, and COUNT is the number of
8548characters from the string left unparsed. This function used to
8549return the remaining characters as a string.
8550
8551*** The `gettimeofday' function has replaced the old `time+ticks' function.
8552The return value is now (SECONDS . MICROSECONDS); the fractional
8553component is no longer expressed in "ticks".
8554
8555*** The `ticks/sec' constant has been removed, in light of the above change.
6685dc83 8556
ea00ecba
MG
8557* Changes to the gh_ interface
8558
8559** gh_eval_str() now returns an SCM object which is the result of the
8560evaluation
8561
aaef0d2a
MG
8562** gh_scm2str() now copies the Scheme data to a caller-provided C
8563array
8564
8565** gh_scm2newstr() now makes a C array, copies the Scheme data to it,
8566and returns the array
8567
8568** gh_scm2str0() is gone: there is no need to distinguish
8569null-terminated from non-null-terminated, since gh_scm2newstr() allows
8570the user to interpret the data both ways.
8571
f3b1485f
JB
8572* Changes to the scm_ interface
8573
095936d2
JB
8574** The new function scm_symbol_value0 provides an easy way to get a
8575symbol's value from C code:
8576
8577SCM scm_symbol_value0 (char *NAME)
8578 Return the value of the symbol named by the null-terminated string
8579 NAME in the current module. If the symbol named NAME is unbound in
8580 the current module, return SCM_UNDEFINED.
8581
8582** The new function scm_sysintern0 creates new top-level variables,
8583without assigning them a value.
8584
8585SCM scm_sysintern0 (char *NAME)
8586 Create a new Scheme top-level variable named NAME. NAME is a
8587 null-terminated string. Return the variable's value cell.
8588
8589** The function scm_internal_catch is the guts of catch. It handles
8590all the mechanics of setting up a catch target, invoking the catch
8591body, and perhaps invoking the handler if the body does a throw.
8592
8593The function is designed to be usable from C code, but is general
8594enough to implement all the semantics Guile Scheme expects from throw.
8595
8596TAG is the catch tag. Typically, this is a symbol, but this function
8597doesn't actually care about that.
8598
8599BODY is a pointer to a C function which runs the body of the catch;
8600this is the code you can throw from. We call it like this:
8601 BODY (BODY_DATA, JMPBUF)
8602where:
8603 BODY_DATA is just the BODY_DATA argument we received; we pass it
8604 through to BODY as its first argument. The caller can make
8605 BODY_DATA point to anything useful that BODY might need.
8606 JMPBUF is the Scheme jmpbuf object corresponding to this catch,
8607 which we have just created and initialized.
8608
8609HANDLER is a pointer to a C function to deal with a throw to TAG,
8610should one occur. We call it like this:
8611 HANDLER (HANDLER_DATA, THROWN_TAG, THROW_ARGS)
8612where
8613 HANDLER_DATA is the HANDLER_DATA argument we recevied; it's the
8614 same idea as BODY_DATA above.
8615 THROWN_TAG is the tag that the user threw to; usually this is
8616 TAG, but it could be something else if TAG was #t (i.e., a
8617 catch-all), or the user threw to a jmpbuf.
8618 THROW_ARGS is the list of arguments the user passed to the THROW
8619 function.
8620
8621BODY_DATA is just a pointer we pass through to BODY. HANDLER_DATA
8622is just a pointer we pass through to HANDLER. We don't actually
8623use either of those pointers otherwise ourselves. The idea is
8624that, if our caller wants to communicate something to BODY or
8625HANDLER, it can pass a pointer to it as MUMBLE_DATA, which BODY and
8626HANDLER can then use. Think of it as a way to make BODY and
8627HANDLER closures, not just functions; MUMBLE_DATA points to the
8628enclosed variables.
8629
8630Of course, it's up to the caller to make sure that any data a
8631MUMBLE_DATA needs is protected from GC. A common way to do this is
8632to make MUMBLE_DATA a pointer to data stored in an automatic
8633structure variable; since the collector must scan the stack for
8634references anyway, this assures that any references in MUMBLE_DATA
8635will be found.
8636
8637** The new function scm_internal_lazy_catch is exactly like
8638scm_internal_catch, except:
8639
8640- It does not unwind the stack (this is the major difference).
8641- If handler returns, its value is returned from the throw.
8642- BODY always receives #f as its JMPBUF argument (since there's no
8643 jmpbuf associated with a lazy catch, because we don't unwind the
8644 stack.)
8645
8646** scm_body_thunk is a new body function you can pass to
8647scm_internal_catch if you want the body to be like Scheme's `catch'
8648--- a thunk, or a function of one argument if the tag is #f.
8649
8650BODY_DATA is a pointer to a scm_body_thunk_data structure, which
8651contains the Scheme procedure to invoke as the body, and the tag
8652we're catching. If the tag is #f, then we pass JMPBUF (created by
8653scm_internal_catch) to the body procedure; otherwise, the body gets
8654no arguments.
8655
8656** scm_handle_by_proc is a new handler function you can pass to
8657scm_internal_catch if you want the handler to act like Scheme's catch
8658--- call a procedure with the tag and the throw arguments.
8659
8660If the user does a throw to this catch, this function runs a handler
8661procedure written in Scheme. HANDLER_DATA is a pointer to an SCM
8662variable holding the Scheme procedure object to invoke. It ought to
8663be a pointer to an automatic variable (i.e., one living on the stack),
8664or the procedure object should be otherwise protected from GC.
8665
8666** scm_handle_by_message is a new handler function to use with
8667`scm_internal_catch' if you want Guile to print a message and die.
8668It's useful for dealing with throws to uncaught keys at the top level.
8669
8670HANDLER_DATA, if non-zero, is assumed to be a char * pointing to a
8671message header to print; if zero, we use "guile" instead. That
8672text is followed by a colon, then the message described by ARGS.
8673
8674** The return type of scm_boot_guile is now void; the function does
8675not return a value, and indeed, never returns at all.
8676
f3b1485f
JB
8677** The new function scm_shell makes it easy for user applications to
8678process command-line arguments in a way that is compatible with the
8679stand-alone guile interpreter (which is in turn compatible with SCSH,
8680the Scheme shell).
8681
8682To use the scm_shell function, first initialize any guile modules
8683linked into your application, and then call scm_shell with the values
7ed46dc8 8684of ARGC and ARGV your `main' function received. scm_shell will add
f3b1485f
JB
8685any SCSH-style meta-arguments from the top of the script file to the
8686argument vector, and then process the command-line arguments. This
8687generally means loading a script file or starting up an interactive
8688command interpreter. For details, see "Changes to the stand-alone
8689interpreter" above.
8690
095936d2 8691** The new functions scm_get_meta_args and scm_count_argv help you
6c0201ad 8692implement the SCSH-style meta-argument, `\'.
095936d2
JB
8693
8694char **scm_get_meta_args (int ARGC, char **ARGV)
8695 If the second element of ARGV is a string consisting of a single
8696 backslash character (i.e. "\\" in Scheme notation), open the file
8697 named by the following argument, parse arguments from it, and return
8698 the spliced command line. The returned array is terminated by a
8699 null pointer.
6c0201ad 8700
095936d2
JB
8701 For details of argument parsing, see above, under "guile now accepts
8702 command-line arguments compatible with SCSH..."
8703
8704int scm_count_argv (char **ARGV)
8705 Count the arguments in ARGV, assuming it is terminated by a null
8706 pointer.
8707
8708For an example of how these functions might be used, see the source
8709code for the function scm_shell in libguile/script.c.
8710
8711You will usually want to use scm_shell instead of calling this
8712function yourself.
8713
8714** The new function scm_compile_shell_switches turns an array of
8715command-line arguments into Scheme code to carry out the actions they
8716describe. Given ARGC and ARGV, it returns a Scheme expression to
8717evaluate, and calls scm_set_program_arguments to make any remaining
8718command-line arguments available to the Scheme code. For example,
8719given the following arguments:
8720
8721 -e main -s ekko a speckled gecko
8722
8723scm_set_program_arguments will return the following expression:
8724
8725 (begin (load "ekko") (main (command-line)) (quit))
8726
8727You will usually want to use scm_shell instead of calling this
8728function yourself.
8729
8730** The function scm_shell_usage prints a usage message appropriate for
8731an interpreter that uses scm_compile_shell_switches to handle its
8732command-line arguments.
8733
8734void scm_shell_usage (int FATAL, char *MESSAGE)
8735 Print a usage message to the standard error output. If MESSAGE is
8736 non-zero, write it before the usage message, followed by a newline.
8737 If FATAL is non-zero, exit the process, using FATAL as the
8738 termination status. (If you want to be compatible with Guile,
8739 always use 1 as the exit status when terminating due to command-line
8740 usage problems.)
8741
8742You will usually want to use scm_shell instead of calling this
8743function yourself.
48d224d7
JB
8744
8745** scm_eval_0str now returns SCM_UNSPECIFIED if the string contains no
095936d2
JB
8746expressions. It used to return SCM_EOL. Earth-shattering.
8747
8748** The macros for declaring scheme objects in C code have been
8749rearranged slightly. They are now:
8750
8751SCM_SYMBOL (C_NAME, SCHEME_NAME)
8752 Declare a static SCM variable named C_NAME, and initialize it to
8753 point to the Scheme symbol whose name is SCHEME_NAME. C_NAME should
8754 be a C identifier, and SCHEME_NAME should be a C string.
8755
8756SCM_GLOBAL_SYMBOL (C_NAME, SCHEME_NAME)
8757 Just like SCM_SYMBOL, but make C_NAME globally visible.
8758
8759SCM_VCELL (C_NAME, SCHEME_NAME)
8760 Create a global variable at the Scheme level named SCHEME_NAME.
8761 Declare a static SCM variable named C_NAME, and initialize it to
8762 point to the Scheme variable's value cell.
8763
8764SCM_GLOBAL_VCELL (C_NAME, SCHEME_NAME)
8765 Just like SCM_VCELL, but make C_NAME globally visible.
8766
8767The `guile-snarf' script writes initialization code for these macros
8768to its standard output, given C source code as input.
8769
8770The SCM_GLOBAL macro is gone.
8771
8772** The scm_read_line and scm_read_line_x functions have been replaced
8773by Scheme code based on the %read-delimited! procedure (known to C
8774code as scm_read_delimited_x). See its description above for more
8775information.
48d224d7 8776
095936d2
JB
8777** The function scm_sys_open has been renamed to scm_open. It now
8778returns a port instead of an FD object.
ea00ecba 8779
095936d2
JB
8780* The dynamic linking support has changed. For more information, see
8781libguile/DYNAMIC-LINKING.
ea00ecba 8782
f7b47737
JB
8783\f
8784Guile 1.0b3
3065a62a 8785
f3b1485f
JB
8786User-visible changes from Thursday, September 5, 1996 until Guile 1.0
8787(Sun 5 Jan 1997):
3065a62a 8788
4b521edb 8789* Changes to the 'guile' program:
3065a62a 8790
4b521edb
JB
8791** Guile now loads some new files when it starts up. Guile first
8792searches the load path for init.scm, and loads it if found. Then, if
8793Guile is not being used to execute a script, and the user's home
8794directory contains a file named `.guile', Guile loads that.
c6486f8a 8795
4b521edb 8796** You can now use Guile as a shell script interpreter.
3065a62a
JB
8797
8798To paraphrase the SCSH manual:
8799
8800 When Unix tries to execute an executable file whose first two
8801 characters are the `#!', it treats the file not as machine code to
8802 be directly executed by the native processor, but as source code
8803 to be executed by some interpreter. The interpreter to use is
8804 specified immediately after the #! sequence on the first line of
8805 the source file. The kernel reads in the name of the interpreter,
8806 and executes that instead. It passes the interpreter the source
8807 filename as its first argument, with the original arguments
8808 following. Consult the Unix man page for the `exec' system call
8809 for more information.
8810
1a1945be
JB
8811Now you can use Guile as an interpreter, using a mechanism which is a
8812compatible subset of that provided by SCSH.
8813
3065a62a
JB
8814Guile now recognizes a '-s' command line switch, whose argument is the
8815name of a file of Scheme code to load. It also treats the two
8816characters `#!' as the start of a comment, terminated by `!#'. Thus,
8817to make a file of Scheme code directly executable by Unix, insert the
8818following two lines at the top of the file:
8819
8820#!/usr/local/bin/guile -s
8821!#
8822
8823Guile treats the argument of the `-s' command-line switch as the name
8824of a file of Scheme code to load, and treats the sequence `#!' as the
8825start of a block comment, terminated by `!#'.
8826
8827For example, here's a version of 'echo' written in Scheme:
8828
8829#!/usr/local/bin/guile -s
8830!#
8831(let loop ((args (cdr (program-arguments))))
8832 (if (pair? args)
8833 (begin
8834 (display (car args))
8835 (if (pair? (cdr args))
8836 (display " "))
8837 (loop (cdr args)))))
8838(newline)
8839
8840Why does `#!' start a block comment terminated by `!#', instead of the
8841end of the line? That is the notation SCSH uses, and although we
8842don't yet support the other SCSH features that motivate that choice,
8843we would like to be backward-compatible with any existing Guile
3763761c
JB
8844scripts once we do. Furthermore, if the path to Guile on your system
8845is too long for your kernel, you can start the script with this
8846horrible hack:
8847
8848#!/bin/sh
8849exec /really/long/path/to/guile -s "$0" ${1+"$@"}
8850!#
3065a62a
JB
8851
8852Note that some very old Unix systems don't support the `#!' syntax.
8853
c6486f8a 8854
4b521edb 8855** You can now run Guile without installing it.
6685dc83
JB
8856
8857Previous versions of the interactive Guile interpreter (`guile')
8858couldn't start up unless Guile's Scheme library had been installed;
8859they used the value of the environment variable `SCHEME_LOAD_PATH'
8860later on in the startup process, but not to find the startup code
8861itself. Now Guile uses `SCHEME_LOAD_PATH' in all searches for Scheme
8862code.
8863
8864To run Guile without installing it, build it in the normal way, and
8865then set the environment variable `SCHEME_LOAD_PATH' to a
8866colon-separated list of directories, including the top-level directory
8867of the Guile sources. For example, if you unpacked Guile so that the
8868full filename of this NEWS file is /home/jimb/guile-1.0b3/NEWS, then
8869you might say
8870
8871 export SCHEME_LOAD_PATH=/home/jimb/my-scheme:/home/jimb/guile-1.0b3
8872
c6486f8a 8873
4b521edb
JB
8874** Guile's read-eval-print loop no longer prints #<unspecified>
8875results. If the user wants to see this, she can evaluate the
8876expression (assert-repl-print-unspecified #t), perhaps in her startup
48d224d7 8877file.
6685dc83 8878
4b521edb
JB
8879** Guile no longer shows backtraces by default when an error occurs;
8880however, it does display a message saying how to get one, and how to
8881request that they be displayed by default. After an error, evaluate
8882 (backtrace)
8883to see a backtrace, and
8884 (debug-enable 'backtrace)
8885to see them by default.
6685dc83 8886
6685dc83 8887
d9fb83d9 8888
4b521edb
JB
8889* Changes to Guile Scheme:
8890
8891** Guile now distinguishes between #f and the empty list.
8892
8893This is for compatibility with the IEEE standard, the (possibly)
8894upcoming Revised^5 Report on Scheme, and many extant Scheme
8895implementations.
8896
8897Guile used to have #f and '() denote the same object, to make Scheme's
8898type system more compatible with Emacs Lisp's. However, the change
8899caused too much trouble for Scheme programmers, and we found another
8900way to reconcile Emacs Lisp with Scheme that didn't require this.
8901
8902
8903** Guile's delq, delv, delete functions, and their destructive
c6486f8a
JB
8904counterparts, delq!, delv!, and delete!, now remove all matching
8905elements from the list, not just the first. This matches the behavior
8906of the corresponding Emacs Lisp functions, and (I believe) the Maclisp
8907functions which inspired them.
8908
8909I recognize that this change may break code in subtle ways, but it
8910seems best to make the change before the FSF's first Guile release,
8911rather than after.
8912
8913
4b521edb 8914** The compiled-library-path function has been deleted from libguile.
6685dc83 8915
4b521edb 8916** The facilities for loading Scheme source files have changed.
c6486f8a 8917
4b521edb 8918*** The variable %load-path now tells Guile which directories to search
6685dc83
JB
8919for Scheme code. Its value is a list of strings, each of which names
8920a directory.
8921
4b521edb
JB
8922*** The variable %load-extensions now tells Guile which extensions to
8923try appending to a filename when searching the load path. Its value
8924is a list of strings. Its default value is ("" ".scm").
8925
8926*** (%search-load-path FILENAME) searches the directories listed in the
8927value of the %load-path variable for a Scheme file named FILENAME,
8928with all the extensions listed in %load-extensions. If it finds a
8929match, then it returns its full filename. If FILENAME is absolute, it
8930returns it unchanged. Otherwise, it returns #f.
6685dc83 8931
4b521edb
JB
8932%search-load-path will not return matches that refer to directories.
8933
8934*** (primitive-load FILENAME :optional CASE-INSENSITIVE-P SHARP)
8935uses %seach-load-path to find a file named FILENAME, and loads it if
8936it finds it. If it can't read FILENAME for any reason, it throws an
8937error.
6685dc83
JB
8938
8939The arguments CASE-INSENSITIVE-P and SHARP are interpreted as by the
4b521edb
JB
8940`read' function.
8941
8942*** load uses the same searching semantics as primitive-load.
8943
8944*** The functions %try-load, try-load-with-path, %load, load-with-path,
8945basic-try-load-with-path, basic-load-with-path, try-load-module-with-
8946path, and load-module-with-path have been deleted. The functions
8947above should serve their purposes.
8948
8949*** If the value of the variable %load-hook is a procedure,
8950`primitive-load' applies its value to the name of the file being
8951loaded (without the load path directory name prepended). If its value
8952is #f, it is ignored. Otherwise, an error occurs.
8953
8954This is mostly useful for printing load notification messages.
8955
8956
8957** The function `eval!' is no longer accessible from the scheme level.
8958We can't allow operations which introduce glocs into the scheme level,
8959because Guile's type system can't handle these as data. Use `eval' or
8960`read-and-eval!' (see below) as replacement.
8961
8962** The new function read-and-eval! reads an expression from PORT,
8963evaluates it, and returns the result. This is more efficient than
8964simply calling `read' and `eval', since it is not necessary to make a
8965copy of the expression for the evaluator to munge.
8966
8967Its optional arguments CASE_INSENSITIVE_P and SHARP are interpreted as
8968for the `read' function.
8969
8970
8971** The function `int?' has been removed; its definition was identical
8972to that of `integer?'.
8973
8974** The functions `<?', `<?', `<=?', `=?', `>?', and `>=?'. Code should
8975use the R4RS names for these functions.
8976
8977** The function object-properties no longer returns the hash handle;
8978it simply returns the object's property list.
8979
8980** Many functions have been changed to throw errors, instead of
8981returning #f on failure. The point of providing exception handling in
8982the language is to simplify the logic of user code, but this is less
8983useful if Guile's primitives don't throw exceptions.
8984
8985** The function `fileno' has been renamed from `%fileno'.
8986
8987** The function primitive-mode->fdes returns #t or #f now, not 1 or 0.
8988
8989
8990* Changes to Guile's C interface:
8991
8992** The library's initialization procedure has been simplified.
8993scm_boot_guile now has the prototype:
8994
8995void scm_boot_guile (int ARGC,
8996 char **ARGV,
8997 void (*main_func) (),
8998 void *closure);
8999
9000scm_boot_guile calls MAIN_FUNC, passing it CLOSURE, ARGC, and ARGV.
9001MAIN_FUNC should do all the work of the program (initializing other
9002packages, reading user input, etc.) before returning. When MAIN_FUNC
9003returns, call exit (0); this function never returns. If you want some
9004other exit value, MAIN_FUNC may call exit itself.
9005
9006scm_boot_guile arranges for program-arguments to return the strings
9007given by ARGC and ARGV. If MAIN_FUNC modifies ARGC/ARGV, should call
9008scm_set_program_arguments with the final list, so Scheme code will
9009know which arguments have been processed.
9010
9011scm_boot_guile establishes a catch-all catch handler which prints an
9012error message and exits the process. This means that Guile exits in a
9013coherent way when system errors occur and the user isn't prepared to
9014handle it. If the user doesn't like this behavior, they can establish
9015their own universal catcher in MAIN_FUNC to shadow this one.
9016
9017Why must the caller do all the real work from MAIN_FUNC? The garbage
9018collector assumes that all local variables of type SCM will be above
9019scm_boot_guile's stack frame on the stack. If you try to manipulate
9020SCM values after this function returns, it's the luck of the draw
9021whether the GC will be able to find the objects you allocate. So,
9022scm_boot_guile function exits, rather than returning, to discourage
9023people from making that mistake.
9024
9025The IN, OUT, and ERR arguments were removed; there are other
9026convenient ways to override these when desired.
9027
9028The RESULT argument was deleted; this function should never return.
9029
9030The BOOT_CMD argument was deleted; the MAIN_FUNC argument is more
9031general.
9032
9033
9034** Guile's header files should no longer conflict with your system's
9035header files.
9036
9037In order to compile code which #included <libguile.h>, previous
9038versions of Guile required you to add a directory containing all the
9039Guile header files to your #include path. This was a problem, since
9040Guile's header files have names which conflict with many systems'
9041header files.
9042
9043Now only <libguile.h> need appear in your #include path; you must
9044refer to all Guile's other header files as <libguile/mumble.h>.
9045Guile's installation procedure puts libguile.h in $(includedir), and
9046the rest in $(includedir)/libguile.
9047
9048
9049** Two new C functions, scm_protect_object and scm_unprotect_object,
9050have been added to the Guile library.
9051
9052scm_protect_object (OBJ) protects OBJ from the garbage collector.
9053OBJ will not be freed, even if all other references are dropped,
9054until someone does scm_unprotect_object (OBJ). Both functions
9055return OBJ.
9056
9057Note that calls to scm_protect_object do not nest. You can call
9058scm_protect_object any number of times on a given object, and the
9059next call to scm_unprotect_object will unprotect it completely.
9060
9061Basically, scm_protect_object and scm_unprotect_object just
9062maintain a list of references to things. Since the GC knows about
9063this list, all objects it mentions stay alive. scm_protect_object
9064adds its argument to the list; scm_unprotect_object remove its
9065argument from the list.
9066
9067
9068** scm_eval_0str now returns the value of the last expression
9069evaluated.
9070
9071** The new function scm_read_0str reads an s-expression from a
9072null-terminated string, and returns it.
9073
9074** The new function `scm_stdio_to_port' converts a STDIO file pointer
9075to a Scheme port object.
9076
9077** The new function `scm_set_program_arguments' allows C code to set
e80c8fea 9078the value returned by the Scheme `program-arguments' function.
6685dc83 9079
6685dc83 9080\f
1a1945be
JB
9081Older changes:
9082
9083* Guile no longer includes sophisticated Tcl/Tk support.
9084
9085The old Tcl/Tk support was unsatisfying to us, because it required the
9086user to link against the Tcl library, as well as Tk and Guile. The
9087interface was also un-lispy, in that it preserved Tcl/Tk's practice of
9088referring to widgets by names, rather than exporting widgets to Scheme
9089code as a special datatype.
9090
9091In the Usenix Tk Developer's Workshop held in July 1996, the Tcl/Tk
9092maintainers described some very interesting changes in progress to the
9093Tcl/Tk internals, which would facilitate clean interfaces between lone
9094Tk and other interpreters --- even for garbage-collected languages
9095like Scheme. They expected the new Tk to be publicly available in the
9096fall of 1996.
9097
9098Since it seems that Guile might soon have a new, cleaner interface to
9099lone Tk, and that the old Guile/Tk glue code would probably need to be
9100completely rewritten, we (Jim Blandy and Richard Stallman) have
9101decided not to support the old code. We'll spend the time instead on
9102a good interface to the newer Tk, as soon as it is available.
5c54da76 9103
8512dea6 9104Until then, gtcltk-lib provides trivial, low-maintenance functionality.
deb95d71 9105
5c54da76
JB
9106\f
9107Copyright information:
9108
4f416616 9109Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2006 Free Software Foundation, Inc.
5c54da76
JB
9110
9111 Permission is granted to anyone to make or distribute verbatim copies
9112 of this document as received, in any medium, provided that the
9113 copyright notice and this permission notice are preserved,
9114 thus giving the recipient permission to redistribute in turn.
9115
9116 Permission is granted to distribute modified versions
9117 of this document, or of portions of it,
9118 under the above conditions, provided also that they
9119 carry prominent notices stating who last changed them.
9120
48d224d7
JB
9121\f
9122Local variables:
9123mode: outline
9124paragraph-separate: "[ \f]*$"
9125end: