*** empty log message ***
[bpt/guile.git] / NEWS
CommitLineData
f7b47737 1Guile NEWS --- history of user-visible changes. -*- text -*-
6fe692e9 2Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
5c54da76
JB
3See the end for copying conditions.
4
e1b6c710 5Please send Guile bug reports to bug-guile@gnu.org.
5c54da76 6\f
c299f186
MD
7Changes since Guile 1.4:
8
9* Changes to the distribution
10
0109c4bf
MD
11** New module (ice-9 stack-catch):
12
13stack-catch is like catch, but saves the current state of the stack in
14the the-last-stack fluid for the debugger to inspect or in able to
15re-throw an error.
16
fbf0c8c7
MV
17** The module (ice-9 and-let*) has been renamed to (ice-9 and-let-star)
18
19This has been done to prevent problems on lesser operating systems
20that can't tolerate `*'s in file names. The exported macro continues
21to be named `and-let*', of course.
22
4f60cc33 23On systems that support it, there is also a compatibility module named
fbf0c8c7
MV
24(ice-9 and-let*). It will go away in the next release.
25
9d774814 26** New modules (oop goops) etc.:
14f1d9fe
MD
27
28 (oop goops)
29 (oop goops describe)
30 (oop goops save)
31 (oop goops active-slot)
32 (oop goops composite-slot)
33
9d774814
GH
34The Guile Object Oriented Programming System (GOOPS) has been
35integrated into Guile.
14f1d9fe
MD
36
37Type
38
39 (use-modules (oop goops))
40
41access GOOPS bindings.
42
43We're now ready to try some basic GOOPS functionality.
44
45Generic functions
46
47 (define-method (+ (x <string>) (y <string>))
48 (string-append x y))
49
50 (+ 1 2) --> 3
51 (+ "abc" "de") --> "abcde"
52
53User-defined types
54
55 (define-class <2D-vector> ()
56 (x #:init-value 0 #:accessor x-component #:init-keyword #:x)
57 (y #:init-value 0 #:accessor y-component #:init-keyword #:y))
58
59 (define-method write ((obj <2D-vector>) port)
60 (display (format #f "<~S, ~S>" (x-component obj) (y-component obj))
61 port))
62
63 (define v (make <2D-vector> #:x 3 #:y 4))
64 v --> <3, 4>
65
66 (define-method + ((x <2D-vector>) (y <2D-vector>))
67 (make <2D-vector>
68 #:x (+ (x-component x) (x-component y))
69 #:y (+ (y-component x) (y-component y))))
70
71 (+ v v) --> <6, 8>
72
73Asking for the type of an object
74
75 (class-of v) --> #<<class> <2D-vector> 40241ac0>
76 <2D-vector> --> #<<class> <2D-vector> 40241ac0>
77 (class-of 1) --> #<<class> <integer> 401b2a98>
78 <integer> --> #<<class> <integer> 401b2a98>
79
80 (is-a? v <2D-vector>) --> #t
81
4f60cc33
NJ
82See further in the GOOPS manual and tutorial in the `doc' directory,
83in info (goops.info) and texinfo formats.
14f1d9fe 84
9d774814
GH
85** New module (ice-9 rdelim).
86
87This exports the following procedures which were previously defined
1c8cbd62 88in the default environment:
9d774814 89
1c8cbd62
GH
90read-line read-line! read-delimited read-delimited! %read-delimited!
91%read-line write-line
9d774814 92
1c8cbd62
GH
93For backwards compatibility the definitions are still imported into the
94default environment in this version of Guile. However you should add:
9d774814
GH
95
96(use-modules (ice-9 rdelim))
97
1c8cbd62
GH
98to any program which uses the definitions, since this may change in
99future.
9d774814
GH
100
101Alternatively, if guile-scsh is installed, the (scsh rdelim) module
102can be used for similar functionality.
103
e5005373
KN
104** New module (ice-9 match)
105
106This module includes Andrew K. Wright's pattern matcher:
107
108(use-modules (ice-9 match))
109
110(match '(+ 1 2)
111 (('+ x) x)
112 (('+ x y) `(add ,x ,y))
113 (('- x y) `(sub ,x ,y))) => (add 1 2)
114
115See ice-9/match.scm for brief description or
116http://www.star-lab.com/wright/code.html for complete documentation.
117
4ce31633
KN
118This module requires SLIB to be installed and available from Guile.
119
4f60cc33
NJ
120** New module (ice-9 buffered-input)
121
122This module provides procedures to construct an input port from an
123underlying source of input that reads and returns its input in chunks.
124The underlying input source is a Scheme procedure, specified by the
125caller, which the port invokes whenever it needs more input.
126
127This is useful when building an input port whose back end is Readline
128or a UI element such as the GtkEntry widget.
129
130** Documentation
131
132The reference and tutorial documentation that was previously
133distributed separately, as `guile-doc', is now included in the core
134Guile distribution. The documentation consists of the following
135manuals.
136
137- The Guile Tutorial (guile-tut.texi) contains a tutorial introduction
138 to using Guile.
139
140- The Guile Reference Manual (guile.texi) contains (or is intended to
141 contain) reference documentation on all aspects of Guile.
142
143- The GOOPS Manual (goops.texi) contains both tutorial-style and
144 reference documentation for using GOOPS, Guile's Object Oriented
145 Programming System.
146
147- The Revised^4 and Revised^5 Reports on the Algorithmic Language
148 Scheme (r4rs.texi and r5rs.texi).
149
150See the README file in the `doc' directory for more details.
151
9d774814
GH
152* Changes to the stand-alone interpreter
153
14fe4fe9
MV
154** Evaluation of "()", the empty list, is now an error.
155
156Previously, you could for example write (cons 1 ()); now you need to
157be more explicit and write (cons 1 '()).
158
c0997079
MD
159** It's now possible to create modules with controlled environments
160
161Example:
162
03cd374d
MD
163(use-modules (ice-9 safe))
164(define m (make-safe-module))
c0997079 165;;; m will now be a module containing only a safe subset of R5RS
9e07b666
DH
166(eval '(+ 1 2) m) --> 3
167(eval 'load m) --> ERROR: Unbound variable: load
c0997079 168
c299f186
MD
169* Changes to Scheme functions and syntax
170
8c2c9967
MV
171** The empty combination is no longer valid syntax.
172
173Previously, the expression "()" evaluated to the empty list. This has
174been changed to signal a "missing expression" error. The correct way
175to write the empty list as a literal constant is to use quote: "'()".
176
177** Auto-loading of compiled-code modules is deprecated.
178
179Guile used to be able to automatically find and link a shared
180libraries to satisfy requests for a module. For example, the module
181`(foo bar)' could be implemented by placing a shared library named
182"foo/libbar.so" (or with a different extension) in a directory on the
183load path of Guile.
184
185This has been found to be too tricky, and is no longer supported.
186What you should do instead now is to write a small Scheme file that
187explicitly calls `dynamic-link' to load the shared library and
188`dynamic-call' to initialize it.
189
190The shared libraries themselves should be installed in the usual
191places for shared libraries, with names like "libguile-foo-bar".
192
193For example, place this into a file "foo/bar.scm"
194
195 (define-module (foo bar))
196
197 (dynamic-call "foobar_init" (dynamic-link "libguile-foo-bar"))
198
199The file name passed to `dynamic-link' should not contain an
200extension. It will be provided automatically.
201
6f76852b
MV
202** The module system has been made more disciplined.
203
204The function `eval' will now save and restore the current module
205around the evaluation of the specified expression. While this
206expression is evaluated, `(current-module)' will now return the right
207module, which is the module specified as the second argument to
208`eval'.
209
210A consequence of this change is that `eval' is not particularily
211useful when you want allow the evaluated code to change what module is
212designated as the current module and have this change persist from one
213call to `eval' to the next. The read-eval-print-loop is an example
214where `eval' is now inadequate. To compensate, there is a new
215function `primitive-eval' that does not take a module specifier and
216that does not save/restore the current module. You should use this
217function together with `set-current-module', `current-module', etc
218when you want to have more control over the state that is carried from
219one eval to the next.
220
221Additionally, it has been made sure that forms that are evaluated at
222the top level are always evaluated with respect to the current module.
223Previously, subforms of top-level forms such as `begin', `case',
224etc. did not respect changes to the current module although these
225subforms are at the top-level as well.
226
227To prevent strange behaviour, the forms `define-module',
228`use-modules', `use-syntax', and `export' have been restricted to only
229work on the top level. The forms `define-public' and
230`defmacro-public' only export the new binding on the top level. They
231behave just like `define' and `defmacro', respectively, when they are
232used in a lexical environment.
233
a6dfbbbb
MV
234** `port-for-each' makes an additional guarantee.
235
236From the docstring: @var{proc} is applied exactly once to every port
237that exists in the system at the time @var{port-for-each} is invoked.
238Changes to the port table while @var{port-for-each} is running have no
239effect as far as @var{port-for-each} is concerned.
240
241This guarantee is important to make (ice-9 popen) work reliable.
242
b7d69200 243** The semantics of guardians have changed.
56495472 244
b7d69200 245The changes are for the most part compatible. An important criterion
c0a5d888
ML
246was to keep the typical usage of guardians as simple as before, but to
247make the semantics safer and (as a result) more useful.
56495472 248
c0a5d888 249*** All objects returned from guardians are now properly alive.
56495472 250
c0a5d888
ML
251It is now guaranteed that any object referenced by an object returned
252from a guardian is alive. It's now impossible for a guardian to
253return a "contained" object before its "containing" object.
56495472
ML
254
255One incompatible (but probably not very important) change resulting
256from this is that it is no longer possible to guard objects that
257indirectly reference themselves (i.e. are parts of cycles). If you do
258so accidentally, you'll get a warning.
259
c0a5d888
ML
260*** There are now two types of guardians: greedy and sharing.
261
262If you call (make-guardian #t) or just (make-guardian), you'll get a
263greedy guardian, and for (make-guardian #f) a sharing guardian.
264
265Greedy guardians are the default because they are more "defensive".
266You can only greedily guard an object once. If you guard an object
267more than once, once in a greedy guardian and the rest of times in
268sharing guardians, then it is guaranteed that the object won't be
269returned from sharing guardians as long as it is greedily guarded
270and/or alive.
271
272Guardians returned by calls to `make-guardian' can now take one more
273optional parameter, which says whether to throw an error in case an
274attempt is made to greedily guard an object that is already greedily
275guarded. The default is true, i.e. throw an error. If the parameter
276is false, the guardian invocation returns #t if guarding was
277successful and #f if it wasn't.
278
279Also, since greedy guarding is, in effect, a side-effecting operation
280on objects, a new function is introduced: `destroy-guardian!'.
281Invoking this function on a guardian renders it unoperative and, if
282the guardian is greedy, clears the "greedily guarded" property of the
283objects that were guarded by it, thus undoing the side effect.
284
285Note that all this hair is hardly very important, since guardian
286objects are usually permanent.
287
818febc0
GH
288** Escape procedures created by call-with-current-continuation now
289accept any number of arguments, as required by R5RS.
290
56426fdb
KN
291** New function `call-with-deprecation'
292
293Call a thunk, displaying a deprecation message at the first call:
294
295 (define (id x)
296 (call-with-deprecation "`id' is deprecated. Use `identity' instead."
297 (lambda ()
298 (identity x))))
299
300 guile> (id 1)
301 ;; `id' is deprecated. Use `identity' instead.
302 1
303 guile> (id 1)
304 1
305
17f367e0
MV
306** New function `make-object-property'
307
308This function returns a new `procedure with setter' P that can be used
309to attach a property to objects. When calling P as
310
311 (set! (P obj) val)
312
313where `obj' is any kind of object, it attaches `val' to `obj' in such
314a way that it can be retrieved by calling P as
315
316 (P obj)
317
318This function will replace procedure properties, symbol properties and
319source properties eventually.
320
76ef92f3
MV
321** Module (ice-9 optargs) now uses keywords instead of `#&'.
322
323Instead of #&optional, #&key, etc you should now use #:optional,
324#:key, etc. Since #:optional is a keyword, you can write it as just
325:optional when (read-set! keywords 'prefix) is active.
326
327The old reader syntax `#&' is still supported, but deprecated. It
328will be removed in the next release.
329
41d7d2af
MD
330** Backward incompatible change: eval EXP ENVIRONMENT-SPECIFIER
331
332`eval' is now R5RS, that is it takes two arguments.
333The second argument is an environment specifier, i.e. either
334
335 (scheme-report-environment 5)
336 (null-environment 5)
337 (interaction-environment)
338
339or
340
341 any module.
342
c0997079
MD
343** New define-module option: pure
344
345Tells the module system not to include any bindings from the root
346module.
347
348Example:
349
350(define-module (totally-empty-module)
351 :pure)
352
353** New define-module option: export NAME1 ...
354
355Export names NAME1 ...
356
357This option is required if you want to be able to export bindings from
358a module which doesn't import one of `define-public' or `export'.
359
360Example:
361
362(define-module (foo)
363 :pure
364 :use-module (ice-9 r5rs)
365 :export (bar))
366
367;;; Note that we're pure R5RS below this point!
368
369(define (bar)
370 ...)
371
69b5f65a
MD
372** Deprecated: scm_make_shared_substring
373
374Explicit shared substrings will disappear from Guile.
375
376Instead, "normal" strings will be implemented using sharing
377internally, combined with a copy-on-write strategy.
378
379** Deprecated: scm_read_only_string_p
380
381The concept of read-only strings will disappear in next release of
382Guile.
383
daa6ba18
DH
384** Deprecated: scm_sloppy_memq, scm_sloppy_memv, scm_sloppy_member
385
79a3dafe 386Instead, use scm_c_memq or scm_memq, scm_memv, scm_member.
daa6ba18 387
264e9cbc
GH
388** New function: read-string!/partial str [port_or_fdes [start [end]]]
389
390 Read characters from an fport or file descriptor into a string
391 STR. This procedure is scsh-compatible and can efficiently read
392 large strings. It will:
393
394 * attempt to fill the entire string, unless the START and/or
395 END arguments are supplied. i.e., START defaults to 0 and
396 END defaults to `(string-length str)'
397
398 * use the current input port if PORT_OR_FDES is not supplied.
399
400 * read any characters that are currently available, without
401 waiting for the rest (short reads are possible).
402
403 * wait for as long as it needs to for the first character to
404 become available, unless the port is in non-blocking mode
405
406 * return `#f' if end-of-file is encountered before reading any
407 characters, otherwise return the number of characters read.
408
409 * return 0 if the port is in non-blocking mode and no characters
410 are immediately available.
411
412 * return 0 if the request is for 0 bytes, with no end-of-file
413 check
414
1f3908c4
KN
415** New function: object->string OBJ
416
417Return a Scheme string obtained by printing a given object.
418
eb5c0a2a
GH
419** New function: port? X
420
421Returns a boolean indicating whether X is a port. Equivalent to
422`(or (input-port? X) (output-port? X))'.
423
efa40607
DH
424** New function: file-port?
425
426Determines whether a given object is a port that is related to a file.
427
34b56ec4
GH
428** New function: port-for-each proc
429
430Apply PROC to each port in the Guile port table in turn. The
431return value is unspecified.
432
433** New function: dup2 oldfd newfd
434
435A simple wrapper for the `dup2' system call. Copies the file
436descriptor OLDFD to descriptor number NEWFD, replacing the
437previous meaning of NEWFD. Both OLDFD and NEWFD must be integers.
438Unlike for dup->fdes or primitive-move->fdes, no attempt is made
264e9cbc 439to move away ports which are using NEWFD. The return value is
34b56ec4
GH
440unspecified.
441
442** New function: close-fdes fd
443
444A simple wrapper for the `close' system call. Close file
445descriptor FD, which must be an integer. Unlike close (*note
446close: Ports and File Descriptors.), the file descriptor will be
447closed even if a port is using it. The return value is
448unspecified.
449
94e6d793
MG
450** New function: crypt password salt
451
452Encrypts `password' using the standard unix password encryption
453algorithm.
454
455** New function: chroot path
456
457Change the root directory of the running process to `path'.
458
459** New functions: getlogin, cuserid
460
461Return the login name or the user name of the current effective user
462id, respectively.
463
464** New functions: getpriority which who, setpriority which who prio
465
466Get or set the priority of the running process.
467
468** New function: getpass prompt
469
470Read a password from the terminal, first displaying `prompt' and
471disabling echoing.
472
473** New function: flock file operation
474
475Set/remove an advisory shared or exclusive lock on `file'.
476
477** New functions: sethostname name, gethostname
478
479Set or get the hostname of the machine the current process is running
480on.
481
6d163216 482** New function: mkstemp! tmpl
4f60cc33 483
6d163216
GH
484mkstemp creates a new unique file in the file system and returns a
485new buffered port open for reading and writing to the file. TMPL
486is a string specifying where the file should be created: it must
487end with `XXXXXX' and will be changed in place to return the name
488of the temporary file.
489
62e63ba9
MG
490** New function: open-input-string string
491
492Return an input string port which delivers the characters from
4f60cc33 493`string'. This procedure, together with `open-output-string' and
62e63ba9
MG
494`get-output-string' implements SRFI-6.
495
496** New function: open-output-string
497
498Return an output string port which collects all data written to it.
499The data can then be retrieved by `get-output-string'.
500
501** New function: get-output-string
502
503Return the contents of an output string port.
504
56426fdb
KN
505** New function: identity
506
507Return the argument.
508
509** Deprecated: id
510
511Use `identity' instead.
512
4f60cc33
NJ
513** Deprecated: close-all-ports-except.
514
515This was intended for closing ports in a child process after a fork,
516but it has the undesirable side effect of flushing buffers.
517port-for-each is more flexible.
34b56ec4
GH
518
519** The (ice-9 popen) module now attempts to set up file descriptors in
520the child process from the current Scheme ports, instead of using the
521current values of file descriptors 0, 1, and 2 in the parent process.
522
b52e071b
DH
523** Removed function: builtin-weak-bindings
524
525There is no such concept as a weak binding any more.
526
9d774814 527** Removed constants: bignum-radix, scm-line-incrementors
0f979f3f 528
7d435120
MD
529** define-method: New syntax mandatory.
530
531The new method syntax is now mandatory:
532
533(define-method (NAME ARG-SPEC ...) BODY ...)
534(define-method (NAME ARG-SPEC ... . REST-ARG) BODY ...)
535
536 ARG-SPEC ::= ARG-NAME | (ARG-NAME TYPE)
537 REST-ARG ::= ARG-NAME
538
539If you have old code using the old syntax, import
540(oop goops old-define-method) before (oop goops) as in:
541
542 (use-modules (oop goops old-define-method) (oop goops))
543
c299f186
MD
544* Changes to the gh_ interface
545
546* Changes to the scm_ interface
547
6fe692e9
MD
548** New function: scm_c_read (SCM port, void *buffer, scm_sizet size)
549
550Used by an application to read arbitrary number of bytes from a port.
551Same semantics as libc read, except that scm_c_read only returns less
552than SIZE bytes if at end-of-file.
553
554Warning: Doesn't update port line and column counts!
555
556** New function: scm_c_write (SCM port, const void *ptr, scm_sizet size)
557
558Used by an application to write arbitrary number of bytes to an SCM
559port. Similar semantics as libc write. However, unlike libc
560write, scm_c_write writes the requested number of bytes and has no
561return value.
562
563Warning: Doesn't update port line and column counts!
564
17f367e0
MV
565** New function: scm_init_guile ()
566
567In contrast to scm_boot_guile, scm_init_guile will return normally
568after initializing Guile. It is not available on all systems, tho.
569
23ade5e7
DH
570** New functions: scm_str2symbol, scm_mem2symbol
571
572The function scm_str2symbol takes a const char* pointing to a zero-terminated
573field of characters and creates a scheme symbol object from that C string.
574The function scm_mem2symbol takes a const char* and a number of characters and
575creates a symbol from the characters in that memory area.
576
17f367e0
MV
577** New functions: scm_primitive_make_property
578 scm_primitive_property_ref
579 scm_primitive_property_set_x
580 scm_primitive_property_del_x
581
582These functions implement a new way to deal with object properties.
583See libguile/properties.c for their documentation.
584
9d47a1e6
ML
585** New function: scm_done_free (long size)
586
587This function is the inverse of scm_done_malloc. Use it to report the
588amount of smob memory you free. The previous method, which involved
589calling scm_done_malloc with negative argument, was somewhat
590unintuitive (and is still available, of course).
591
79a3dafe
DH
592** New function: scm_c_memq (SCM obj, SCM list)
593
594This function provides a fast C level alternative for scm_memq for the case
595that the list parameter is known to be a proper list. The function is a
596replacement for scm_sloppy_memq, but is stricter in its requirements on its
597list input parameter, since for anything else but a proper list the function's
598behaviour is undefined - it may even crash or loop endlessly. Further, for
599the case that the object is not found in the list, scm_c_memq returns #f which
600is similar to scm_memq, but different from scm_sloppy_memq's behaviour.
601
5d2b97cd
DH
602** New functions: scm_remember_upto_here_1, scm_remember_upto_here_2,
603scm_remember_upto_here
604
605These functions replace the function scm_remember.
606
607** Deprecated function: scm_remember
608
609Use one of the new functions scm_remember_upto_here_1,
610scm_remember_upto_here_2 or scm_remember_upto_here instead.
611
be54b15d
DH
612** New function: scm_allocate_string
613
614This function replaces the function scm_makstr.
615
616** Deprecated function: scm_makstr
617
618Use the new function scm_allocate_string instead.
619
32d0d4b1
DH
620** New global variable scm_gc_running_p introduced.
621
622Use this variable to find out if garbage collection is being executed. Up to
623now applications have used scm_gc_heap_lock to test if garbage collection was
624running, which also works because of the fact that up to know only the garbage
625collector has set this variable. But, this is an implementation detail that
626may change. Further, scm_gc_heap_lock is not set throughout gc, thus the use
627of this variable is (and has been) not fully safe anyway.
628
5b9eb8ae
DH
629** New macros: SCM_BITVECTOR_MAX_LENGTH, SCM_UVECTOR_MAX_LENGTH
630
631Use these instead of SCM_LENGTH_MAX.
632
a6d9e5ab
DH
633** New macros: SCM_CONTINUATION_LENGTH, SCM_CCLO_LENGTH, SCM_STACK_LENGTH,
634SCM_STRING_LENGTH, SCM_SYMBOL_LENGTH, SCM_UVECTOR_LENGTH,
635SCM_BITVECTOR_LENGTH, SCM_VECTOR_LENGTH.
636
637Use these instead of SCM_LENGTH.
638
93778877
DH
639** New macros: SCM_SET_CONTINUATION_LENGTH, SCM_SET_STRING_LENGTH,
640SCM_SET_SYMBOL_LENGTH, SCM_SET_VECTOR_LENGTH, SCM_SET_UVECTOR_LENGTH,
641SCM_SET_BITVECTOR_LENGTH
bc0eaf7b
DH
642
643Use these instead of SCM_SETLENGTH
644
a6d9e5ab
DH
645** New macros: SCM_STRING_CHARS, SCM_SYMBOL_CHARS, SCM_CCLO_BASE,
646SCM_VECTOR_BASE, SCM_UVECTOR_BASE, SCM_BITVECTOR_BASE, SCM_COMPLEX_MEM,
647SCM_ARRAY_MEM
648
e51fe79c
DH
649Use these instead of SCM_CHARS, SCM_UCHARS, SCM_ROCHARS, SCM_ROUCHARS or
650SCM_VELTS.
a6d9e5ab 651
6a0476fd
DH
652** New macros: SCM_SET_BIGNUM_BASE, SCM_SET_STRING_CHARS,
653SCM_SET_SYMBOL_CHARS, SCM_SET_UVECTOR_BASE, SCM_SET_BITVECTOR_BASE,
654SCM_SET_VECTOR_BASE
655
656Use these instead of SCM_SETCHARS.
657
a6d9e5ab
DH
658** New macro: SCM_BITVECTOR_P
659
660** New macro: SCM_STRING_COERCE_0TERMINATION_X
661
662Use instead of SCM_COERCE_SUBSTR.
663
30ea841d
DH
664** New macros: SCM_DIR_OPEN_P, SCM_DIR_FLAG_OPEN
665
666For directory objects, use these instead of SCM_OPDIRP and SCM_OPN.
667
b63a956d
DH
668** Deprecated macros: SCM_OUTOFRANGE, SCM_NALLOC, SCM_HUP_SIGNAL,
669SCM_INT_SIGNAL, SCM_FPE_SIGNAL, SCM_BUS_SIGNAL, SCM_SEGV_SIGNAL,
670SCM_ALRM_SIGNAL, SCM_GC_SIGNAL, SCM_TICK_SIGNAL, SCM_SIG_ORD,
d1ca2c64 671SCM_ORD_SIG, SCM_NUM_SIGS, SCM_SYMBOL_SLOTS, SCM_SLOTS, SCM_SLOPPY_STRINGP,
a6d9e5ab
DH
672SCM_VALIDATE_STRINGORSUBSTR, SCM_FREEP, SCM_NFREEP, SCM_CHARS, SCM_UCHARS,
673SCM_VALIDATE_ROSTRING, SCM_VALIDATE_ROSTRING_COPY,
674SCM_VALIDATE_NULLORROSTRING_COPY, SCM_ROLENGTH, SCM_LENGTH, SCM_HUGE_LENGTH,
b24b5e13 675SCM_SUBSTRP, SCM_SUBSTR_STR, SCM_SUBSTR_OFFSET, SCM_COERCE_SUBSTR,
34f0f2b8 676SCM_ROSTRINGP, SCM_RWSTRINGP, SCM_VALIDATE_RWSTRING, SCM_ROCHARS,
fd336365 677SCM_ROUCHARS, SCM_SETLENGTH, SCM_SETCHARS, SCM_LENGTH_MAX, SCM_GC8MARKP,
30ea841d 678SCM_SETGC8MARK, SCM_CLRGC8MARK, SCM_GCTYP16, SCM_GCCDR, SCM_SUBR_DOC,
b3fcac34
DH
679SCM_OPDIRP, SCM_VALIDATE_OPDIR, SCM_WTA, RETURN_SCM_WTA, SCM_CONST_LONG,
680SCM_WNA, SCM_FUNC_NAME, SCM_VALIDATE_NUMBER_COPY,
61045190
DH
681SCM_VALIDATE_NUMBER_DEF_COPY, SCM_SLOPPY_CONSP, SCM_SLOPPY_NCONSP,
682SCM_SETAND_CDR, SCM_SETOR_CDR
b63a956d
DH
683
684Use SCM_ASSERT_RANGE or SCM_VALIDATE_XXX_RANGE instead of SCM_OUTOFRANGE.
685Use scm_memory_error instead of SCM_NALLOC.
c1aef037 686Use SCM_STRINGP instead of SCM_SLOPPY_STRINGP.
d1ca2c64
DH
687Use SCM_VALIDATE_STRING instead of SCM_VALIDATE_STRINGORSUBSTR.
688Use SCM_FREE_CELL_P instead of SCM_FREEP/SCM_NFREEP
a6d9e5ab
DH
689Use a type specific accessor macro instead of SCM_CHARS/SCM_UCHARS.
690Use a type specific accessor instead of SCM(_|_RO|_HUGE_)LENGTH.
691Use SCM_VALIDATE_(SYMBOL|STRING) instead of SCM_VALIDATE_ROSTRING.
692Use SCM_STRING_COERCE_0TERMINATION_X instead of SCM_COERCE_SUBSTR.
b24b5e13 693Use SCM_STRINGP or SCM_SYMBOLP instead of SCM_ROSTRINGP.
f0942910
DH
694Use SCM_STRINGP instead of SCM_RWSTRINGP.
695Use SCM_VALIDATE_STRING instead of SCM_VALIDATE_RWSTRING.
34f0f2b8
DH
696Use SCM_STRING_CHARS instead of SCM_ROCHARS.
697Use SCM_STRING_UCHARS instead of SCM_ROUCHARS.
93778877 698Use a type specific setter macro instead of SCM_SETLENGTH.
6a0476fd 699Use a type specific setter macro instead of SCM_SETCHARS.
5b9eb8ae 700Use a type specific length macro instead of SCM_LENGTH_MAX.
fd336365
DH
701Use SCM_GCMARKP instead of SCM_GC8MARKP.
702Use SCM_SETGCMARK instead of SCM_SETGC8MARK.
703Use SCM_CLRGCMARK instead of SCM_CLRGC8MARK.
704Use SCM_TYP16 instead of SCM_GCTYP16.
705Use SCM_CDR instead of SCM_GCCDR.
30ea841d 706Use SCM_DIR_OPEN_P instead of SCM_OPDIRP.
276dd677
DH
707Use SCM_MISC_ERROR or SCM_WRONG_TYPE_ARG instead of SCM_WTA.
708Use SCM_MISC_ERROR or SCM_WRONG_TYPE_ARG instead of RETURN_SCM_WTA.
8dea8611 709Use SCM_VCELL_INIT instead of SCM_CONST_LONG.
b3fcac34 710Use SCM_WRONG_NUM_ARGS instead of SCM_WNA.
ced99e92
DH
711Use SCM_CONSP instead of SCM_SLOPPY_CONSP.
712Use !SCM_CONSP instead of SCM_SLOPPY_NCONSP.
b63a956d 713
f7620510
DH
714** Removed function: scm_struct_init
715
93d40df2
DH
716** Removed variable: scm_symhash_dim
717
818febc0
GH
718** Renamed function: scm_make_cont has been replaced by
719scm_make_continuation, which has a different interface.
720
cc4feeca
DH
721** Deprecated function: scm_call_catching_errors
722
723Use scm_catch or scm_lazy_catch from throw.[ch] instead.
724
28b06554
DH
725** Deprecated function: scm_strhash
726
727Use scm_string_hash instead.
728
1b9be268
DH
729** Deprecated function: scm_vector_set_length_x
730
731Instead, create a fresh vector of the desired size and copy the contents.
732
302f229e
MD
733** scm_gensym has changed prototype
734
735scm_gensym now only takes one argument.
736
737** New function: scm_gentemp (SCM prefix, SCM obarray)
738
739The builtin `gentemp' has now become a primitive.
740
1660782e
DH
741** Deprecated type tags: scm_tc7_ssymbol, scm_tc7_msymbol, scm_tcs_symbols,
742scm_tc7_lvector
28b06554
DH
743
744There is now only a single symbol type scm_tc7_symbol.
1660782e 745The tag scm_tc7_lvector was not used anyway.
28b06554 746
2f6fb7c5
KN
747** Deprecated function: scm_make_smob_type_mfpe, scm_set_smob_mfpe.
748
749Use scm_make_smob_type and scm_set_smob_XXX instead.
750
751** New function scm_set_smob_apply.
752
753This can be used to set an apply function to a smob type.
754
1f3908c4
KN
755** Deprecated function: scm_strprint_obj
756
757Use scm_object_to_string instead.
758
b3fcac34
DH
759** Deprecated function: scm_wta
760
761Use scm_wrong_type_arg, or another appropriate error signalling function
762instead.
763
c299f186 764\f
cc36e791
JB
765Changes since Guile 1.3.4:
766
80f27102
JB
767* Changes to the distribution
768
ce358662
JB
769** Trees from nightly snapshots and CVS now require you to run autogen.sh.
770
771We've changed the way we handle generated files in the Guile source
772repository. As a result, the procedure for building trees obtained
773from the nightly FTP snapshots or via CVS has changed:
774- You must have appropriate versions of autoconf, automake, and
775 libtool installed on your system. See README for info on how to
776 obtain these programs.
777- Before configuring the tree, you must first run the script
778 `autogen.sh' at the top of the source tree.
779
780The Guile repository used to contain not only source files, written by
781humans, but also some generated files, like configure scripts and
782Makefile.in files. Even though the contents of these files could be
783derived mechanically from other files present, we thought it would
784make the tree easier to build if we checked them into CVS.
785
786However, this approach means that minor differences between
787developer's installed tools and habits affected the whole team.
788So we have removed the generated files from the repository, and
789added the autogen.sh script, which will reconstruct them
790appropriately.
791
792
dc914156
GH
793** configure now has experimental options to remove support for certain
794features:
52cfc69b 795
dc914156
GH
796--disable-arrays omit array and uniform array support
797--disable-posix omit posix interfaces
798--disable-networking omit networking interfaces
799--disable-regex omit regular expression interfaces
52cfc69b
GH
800
801These are likely to become separate modules some day.
802
9764c29b 803** New configure option --enable-debug-freelist
e1b0d0ac 804
38a15cfd
GB
805This enables a debugging version of SCM_NEWCELL(), and also registers
806an extra primitive, the setter `gc-set-debug-check-freelist!'.
807
808Configure with the --enable-debug-freelist option to enable
809the gc-set-debug-check-freelist! primitive, and then use:
810
811(gc-set-debug-check-freelist! #t) # turn on checking of the freelist
812(gc-set-debug-check-freelist! #f) # turn off checking
813
814Checking of the freelist forces a traversal of the freelist and
815a garbage collection before each allocation of a cell. This can
816slow down the interpreter dramatically, so the setter should be used to
817turn on this extra processing only when necessary.
e1b0d0ac 818
9764c29b
MD
819** New configure option --enable-debug-malloc
820
821Include code for debugging of calls to scm_must_malloc/realloc/free.
822
823Checks that
824
8251. objects freed by scm_must_free has been mallocated by scm_must_malloc
8262. objects reallocated by scm_must_realloc has been allocated by
827 scm_must_malloc
8283. reallocated objects are reallocated with the same what string
829
830But, most importantly, it records the number of allocated objects of
831each kind. This is useful when searching for memory leaks.
832
833A Guile compiled with this option provides the primitive
834`malloc-stats' which returns an alist with pairs of kind and the
835number of objects of that kind.
836
e415cb06
MD
837** All includes are now referenced relative to the root directory
838
839Since some users have had problems with mixups between Guile and
840system headers, we have decided to always refer to Guile headers via
841their parent directories. This essentially creates a "private name
842space" for Guile headers. This means that the compiler only is given
843-I options for the root build and root source directory.
844
341f78c9
MD
845** Header files kw.h and genio.h have been removed.
846
847** The module (ice-9 getopt-gnu-style) has been removed.
848
e8855f8d
MD
849** New module (ice-9 documentation)
850
851Implements the interface to documentation strings associated with
852objects.
853
0c0ffe09
KN
854** New module (ice-9 time)
855
856Provides a macro `time', which displays execution time of a given form.
857
cf7a5ee5
KN
858** New module (ice-9 history)
859
860Loading this module enables value history in the repl.
861
0af43c4a 862* Changes to the stand-alone interpreter
bd9e24b3 863
67ef2dca
MD
864** New command line option --debug
865
866Start Guile with debugging evaluator and backtraces enabled.
867
868This is useful when debugging your .guile init file or scripts.
869
aa4bb95d
MD
870** New help facility
871
341f78c9
MD
872Usage: (help NAME) gives documentation about objects named NAME (a symbol)
873 (help REGEXP) ditto for objects with names matching REGEXP (a string)
874 (help ,EXPR) gives documentation for object returned by EXPR
875 (help) gives this text
876
877`help' searches among bindings exported from loaded modules, while
878`apropos' searches among bindings visible from the "current" module.
879
880Examples: (help help)
881 (help cons)
882 (help "output-string")
aa4bb95d 883
e8855f8d
MD
884** `help' and `apropos' now prints full module names
885
0af43c4a 886** Dynamic linking now uses libltdl from the libtool package.
bd9e24b3 887
0af43c4a
MD
888The old system dependent code for doing dynamic linking has been
889replaced with calls to the libltdl functions which do all the hairy
890details for us.
bd9e24b3 891
0af43c4a
MD
892The major improvement is that you can now directly pass libtool
893library names like "libfoo.la" to `dynamic-link' and `dynamic-link'
894will be able to do the best shared library job you can get, via
895libltdl.
bd9e24b3 896
0af43c4a
MD
897The way dynamic libraries are found has changed and is not really
898portable across platforms, probably. It is therefore recommended to
899use absolute filenames when possible.
900
901If you pass a filename without an extension to `dynamic-link', it will
902try a few appropriate ones. Thus, the most platform ignorant way is
903to specify a name like "libfoo", without any directories and
904extensions.
0573ddae 905
91163914
MD
906** Guile COOP threads are now compatible with LinuxThreads
907
908Previously, COOP threading wasn't possible in applications linked with
909Linux POSIX threads due to their use of the stack pointer to find the
910thread context. This has now been fixed with a workaround which uses
911the pthreads to allocate the stack.
912
62b82274
GB
913** New primitives: `pkgdata-dir', `site-dir', `library-dir'
914
9770d235
MD
915** Positions of erring expression in scripts
916
917With version 1.3.4, the location of the erring expression in Guile
918scipts is no longer automatically reported. (This should have been
919documented before the 1.3.4 release.)
920
921You can get this information by enabling recording of positions of
922source expressions and running the debugging evaluator. Put this at
923the top of your script (or in your "site" file):
924
925 (read-enable 'positions)
926 (debug-enable 'debug)
927
0573ddae
MD
928** Backtraces in scripts
929
930It is now possible to get backtraces in scripts.
931
932Put
933
934 (debug-enable 'debug 'backtrace)
935
936at the top of the script.
937
938(The first options enables the debugging evaluator.
939 The second enables backtraces.)
940
e8855f8d
MD
941** Part of module system symbol lookup now implemented in C
942
943The eval closure of most modules is now implemented in C. Since this
944was one of the bottlenecks for loading speed, Guile now loads code
945substantially faster than before.
946
f25f761d
GH
947** Attempting to get the value of an unbound variable now produces
948an exception with a key of 'unbound-variable instead of 'misc-error.
949
1a35eadc
GH
950** The initial default output port is now unbuffered if it's using a
951tty device. Previously in this situation it was line-buffered.
952
820920e6
MD
953** gc-thunk is deprecated
954
955gc-thunk will be removed in next release of Guile. It has been
956replaced by after-gc-hook.
957
958** New hook: after-gc-hook
959
960after-gc-hook takes over the role of gc-thunk. This hook is run at
961the first SCM_TICK after a GC. (Thus, the code is run at the same
962point during evaluation as signal handlers.)
963
964Note that this hook should be used only for diagnostic and debugging
965purposes. It is not certain that it will continue to be well-defined
966when this hook is run in the future.
967
968C programmers: Note the new C level hooks scm_before_gc_c_hook,
969scm_before_sweep_c_hook, scm_after_gc_c_hook.
970
b5074b23
MD
971** Improvements to garbage collector
972
973Guile 1.4 has a new policy for triggering heap allocation and
974determining the sizes of heap segments. It fixes a number of problems
975in the old GC.
976
9771. The new policy can handle two separate pools of cells
978 (2-word/4-word) better. (The old policy would run wild, allocating
979 more and more memory for certain programs.)
980
9812. The old code would sometimes allocate far too much heap so that the
982 Guile process became gigantic. The new code avoids this.
983
9843. The old code would sometimes allocate too little so that few cells
985 were freed at GC so that, in turn, too much time was spent in GC.
986
9874. The old code would often trigger heap allocation several times in a
988 row. (The new scheme predicts how large the segments needs to be
989 in order not to need further allocation.)
990
e8855f8d
MD
991All in all, the new GC policy will make larger applications more
992efficient.
993
b5074b23
MD
994The new GC scheme also is prepared for POSIX threading. Threads can
995allocate private pools of cells ("clusters") with just a single
996function call. Allocation of single cells from such a cluster can
997then proceed without any need of inter-thread synchronization.
998
999** New environment variables controlling GC parameters
1000
1001GUILE_MAX_SEGMENT_SIZE Maximal segment size
1002 (default = 2097000)
1003
1004Allocation of 2-word cell heaps:
1005
1006GUILE_INIT_SEGMENT_SIZE_1 Size of initial heap segment in bytes
1007 (default = 360000)
1008
1009GUILE_MIN_YIELD_1 Minimum number of freed cells at each
1010 GC in percent of total heap size
1011 (default = 40)
1012
1013Allocation of 4-word cell heaps
1014(used for real numbers and misc other objects):
1015
1016GUILE_INIT_SEGMENT_SIZE_2, GUILE_MIN_YIELD_2
1017
1018(See entry "Way for application to customize GC parameters" under
1019 section "Changes to the scm_ interface" below.)
1020
67ef2dca
MD
1021** Guile now implements reals using 4-word cells
1022
1023This speeds up computation with reals. (They were earlier allocated
1024with `malloc'.) There is still some room for optimizations, however.
1025
1026** Some further steps toward POSIX thread support have been taken
1027
1028*** Guile's critical sections (SCM_DEFER/ALLOW_INTS)
1029don't have much effect any longer, and many of them will be removed in
1030next release.
1031
1032*** Signals
1033are only handled at the top of the evaluator loop, immediately after
1034I/O, and in scm_equalp.
1035
1036*** The GC can allocate thread private pools of pairs.
1037
0af43c4a
MD
1038* Changes to Scheme functions and syntax
1039
a0128ebe 1040** close-input-port and close-output-port are now R5RS
7c1e0b12 1041
a0128ebe 1042These procedures have been turned into primitives and have R5RS behaviour.
7c1e0b12 1043
0af43c4a
MD
1044** New procedure: simple-format PORT MESSAGE ARG1 ...
1045
1046(ice-9 boot) makes `format' an alias for `simple-format' until possibly
1047extended by the more sophisticated version in (ice-9 format)
1048
1049(simple-format port message . args)
1050Write MESSAGE to DESTINATION, defaulting to `current-output-port'.
1051MESSAGE can contain ~A (was %s) and ~S (was %S) escapes. When printed,
1052the escapes are replaced with corresponding members of ARGS:
1053~A formats using `display' and ~S formats using `write'.
1054If DESTINATION is #t, then use the `current-output-port',
1055if DESTINATION is #f, then return a string containing the formatted text.
1056Does not add a trailing newline."
1057
1058** string-ref: the second argument is no longer optional.
1059
1060** string, list->string: no longer accept strings in their arguments,
1061only characters, for compatibility with R5RS.
1062
1063** New procedure: port-closed? PORT
1064Returns #t if PORT is closed or #f if it is open.
1065
0a9e521f
MD
1066** Deprecated: list*
1067
1068The list* functionality is now provided by cons* (SRFI-1 compliant)
1069
b5074b23
MD
1070** New procedure: cons* ARG1 ARG2 ... ARGn
1071
1072Like `list', but the last arg provides the tail of the constructed list,
1073returning (cons ARG1 (cons ARG2 (cons ... ARGn))).
1074
1075Requires at least one argument. If given one argument, that argument
1076is returned as result.
1077
1078This function is called `list*' in some other Schemes and in Common LISP.
1079
341f78c9
MD
1080** Removed deprecated: serial-map, serial-array-copy!, serial-array-map!
1081
e8855f8d
MD
1082** New procedure: object-documentation OBJECT
1083
1084Returns the documentation string associated with OBJECT. The
1085procedure uses a caching mechanism so that subsequent lookups are
1086faster.
1087
1088Exported by (ice-9 documentation).
1089
1090** module-name now returns full names of modules
1091
1092Previously, only the last part of the name was returned (`session' for
1093`(ice-9 session)'). Ex: `(ice-9 session)'.
1094
894a712b
DH
1095* Changes to the gh_ interface
1096
1097** Deprecated: gh_int2scmb
1098
1099Use gh_bool2scm instead.
1100
a2349a28
GH
1101* Changes to the scm_ interface
1102
810e1aec
MD
1103** Guile primitives now carry docstrings!
1104
1105Thanks to Greg Badros!
1106
0a9e521f 1107** Guile primitives are defined in a new way: SCM_DEFINE/SCM_DEFINE1/SCM_PROC
0af43c4a 1108
0a9e521f
MD
1109Now Guile primitives are defined using the SCM_DEFINE/SCM_DEFINE1/SCM_PROC
1110macros and must contain a docstring that is extracted into foo.doc using a new
0af43c4a
MD
1111guile-doc-snarf script (that uses guile-doc-snarf.awk).
1112
0a9e521f
MD
1113However, a major overhaul of these macros is scheduled for the next release of
1114guile.
1115
0af43c4a
MD
1116** Guile primitives use a new technique for validation of arguments
1117
1118SCM_VALIDATE_* macros are defined to ease the redundancy and improve
1119the readability of argument checking.
1120
1121** All (nearly?) K&R prototypes for functions replaced with ANSI C equivalents.
1122
894a712b 1123** New macros: SCM_PACK, SCM_UNPACK
f8a72ca4
MD
1124
1125Compose/decompose an SCM value.
1126
894a712b
DH
1127The SCM type is now treated as an abstract data type and may be defined as a
1128long, a void* or as a struct, depending on the architecture and compile time
1129options. This makes it easier to find several types of bugs, for example when
1130SCM values are treated as integers without conversion. Values of the SCM type
1131should be treated as "atomic" values. These macros are used when
f8a72ca4
MD
1132composing/decomposing an SCM value, either because you want to access
1133individual bits, or because you want to treat it as an integer value.
1134
1135E.g., in order to set bit 7 in an SCM value x, use the expression
1136
1137 SCM_PACK (SCM_UNPACK (x) | 0x80)
1138
e11f8b42
DH
1139** The name property of hooks is deprecated.
1140Thus, the use of SCM_HOOK_NAME and scm_make_hook_with_name is deprecated.
1141
1142You can emulate this feature by using object properties.
1143
894a712b
DH
1144** Deprecated macros: SCM_INPORTP, SCM_OUTPORTP, SCM_CRDY, SCM_ICHRP,
1145SCM_ICHR, SCM_MAKICHR, SCM_SETJMPBUF, SCM_NSTRINGP, SCM_NRWSTRINGP,
1146SCM_NVECTORP
f8a72ca4 1147
894a712b 1148These macros will be removed in a future release of Guile.
7c1e0b12 1149
0a9e521f
MD
1150** The following types, functions and macros from numbers.h are deprecated:
1151scm_dblproc, SCM_UNEGFIXABLE, SCM_FLOBUFLEN, SCM_INEXP, SCM_CPLXP, SCM_REAL,
1152SCM_IMAG, SCM_REALPART, scm_makdbl, SCM_SINGP, SCM_NUM2DBL, SCM_NO_BIGDIG
1153
1154Further, it is recommended not to rely on implementation details for guile's
1155current implementation of bignums. It is planned to replace this
1156implementation with gmp in the future.
1157
a2349a28
GH
1158** Port internals: the rw_random variable in the scm_port structure
1159must be set to non-zero in any random access port. In recent Guile
1160releases it was only set for bidirectional random-access ports.
1161
7dcb364d
GH
1162** Port internals: the seek ptob procedure is now responsible for
1163resetting the buffers if required. The change was made so that in the
1164special case of reading the current position (i.e., seek p 0 SEEK_CUR)
1165the fport and strport ptobs can avoid resetting the buffers,
1166in particular to avoid discarding unread chars. An existing port
1167type can be fixed by adding something like the following to the
1168beginning of the ptob seek procedure:
1169
1170 if (pt->rw_active == SCM_PORT_READ)
1171 scm_end_input (object);
1172 else if (pt->rw_active == SCM_PORT_WRITE)
1173 ptob->flush (object);
1174
1175although to actually avoid resetting the buffers and discard unread
1176chars requires further hacking that depends on the characteristics
1177of the ptob.
1178
894a712b
DH
1179** Deprecated functions: scm_fseek, scm_tag
1180
1181These functions are no longer used and will be removed in a future version.
1182
f25f761d
GH
1183** The scm_sysmissing procedure is no longer used in libguile.
1184Unless it turns out to be unexpectedly useful to somebody, it will be
1185removed in a future version.
1186
0af43c4a
MD
1187** The format of error message strings has changed
1188
1189The two C procedures: scm_display_error and scm_error, as well as the
1190primitive `scm-error', now use scm_simple_format to do their work.
1191This means that the message strings of all code must be updated to use
1192~A where %s was used before, and ~S where %S was used before.
1193
1194During the period when there still are a lot of old Guiles out there,
1195you might want to support both old and new versions of Guile.
1196
1197There are basically two methods to achieve this. Both methods use
1198autoconf. Put
1199
1200 AC_CHECK_FUNCS(scm_simple_format)
1201
1202in your configure.in.
1203
1204Method 1: Use the string concatenation features of ANSI C's
1205 preprocessor.
1206
1207In C:
1208
1209#ifdef HAVE_SCM_SIMPLE_FORMAT
1210#define FMT_S "~S"
1211#else
1212#define FMT_S "%S"
1213#endif
1214
1215Then represent each of your error messages using a preprocessor macro:
1216
1217#define E_SPIDER_ERROR "There's a spider in your " ## FMT_S ## "!!!"
1218
1219In Scheme:
1220
1221(define fmt-s (if (defined? 'simple-format) "~S" "%S"))
1222(define make-message string-append)
1223
1224(define e-spider-error (make-message "There's a spider in your " fmt-s "!!!"))
1225
1226Method 2: Use the oldfmt function found in doc/oldfmt.c.
1227
1228In C:
1229
1230scm_misc_error ("picnic", scm_c_oldfmt0 ("There's a spider in your ~S!!!"),
1231 ...);
1232
1233In Scheme:
1234
1235(scm-error 'misc-error "picnic" (oldfmt "There's a spider in your ~S!!!")
1236 ...)
1237
1238
f3b5e185
MD
1239** Deprecated: coop_mutex_init, coop_condition_variable_init
1240
1241Don't use the functions coop_mutex_init and
1242coop_condition_variable_init. They will change.
1243
1244Use scm_mutex_init and scm_cond_init instead.
1245
f3b5e185
MD
1246** New function: int scm_cond_timedwait (scm_cond_t *COND, scm_mutex_t *MUTEX, const struct timespec *ABSTIME)
1247 `scm_cond_timedwait' atomically unlocks MUTEX and waits on
1248 COND, as `scm_cond_wait' does, but it also bounds the duration
1249 of the wait. If COND has not been signaled before time ABSTIME,
1250 the mutex MUTEX is re-acquired and `scm_cond_timedwait'
1251 returns the error code `ETIMEDOUT'.
1252
1253 The ABSTIME parameter specifies an absolute time, with the same
1254 origin as `time' and `gettimeofday': an ABSTIME of 0 corresponds
1255 to 00:00:00 GMT, January 1, 1970.
1256
1257** New function: scm_cond_broadcast (scm_cond_t *COND)
1258 `scm_cond_broadcast' restarts all the threads that are waiting
1259 on the condition variable COND. Nothing happens if no threads are
1260 waiting on COND.
1261
1262** New function: scm_key_create (scm_key_t *KEY, void (*destr_function) (void *))
1263 `scm_key_create' allocates a new TSD key. The key is stored in
1264 the location pointed to by KEY. There is no limit on the number
1265 of keys allocated at a given time. The value initially associated
1266 with the returned key is `NULL' in all currently executing threads.
1267
1268 The DESTR_FUNCTION argument, if not `NULL', specifies a destructor
1269 function associated with the key. When a thread terminates,
1270 DESTR_FUNCTION is called on the value associated with the key in
1271 that thread. The DESTR_FUNCTION is not called if a key is deleted
1272 with `scm_key_delete' or a value is changed with
1273 `scm_setspecific'. The order in which destructor functions are
1274 called at thread termination time is unspecified.
1275
1276 Destructors are not yet implemented.
1277
1278** New function: scm_setspecific (scm_key_t KEY, const void *POINTER)
1279 `scm_setspecific' changes the value associated with KEY in the
1280 calling thread, storing the given POINTER instead.
1281
1282** New function: scm_getspecific (scm_key_t KEY)
1283 `scm_getspecific' returns the value currently associated with
1284 KEY in the calling thread.
1285
1286** New function: scm_key_delete (scm_key_t KEY)
1287 `scm_key_delete' deallocates a TSD key. It does not check
1288 whether non-`NULL' values are associated with that key in the
1289 currently executing threads, nor call the destructor function
1290 associated with the key.
1291
820920e6
MD
1292** New function: scm_c_hook_init (scm_c_hook_t *HOOK, void *HOOK_DATA, scm_c_hook_type_t TYPE)
1293
1294Initialize a C level hook HOOK with associated HOOK_DATA and type
1295TYPE. (See scm_c_hook_run ().)
1296
1297** New function: scm_c_hook_add (scm_c_hook_t *HOOK, scm_c_hook_function_t FUNC, void *FUNC_DATA, int APPENDP)
1298
1299Add hook function FUNC with associated FUNC_DATA to HOOK. If APPENDP
1300is true, add it last, otherwise first. The same FUNC can be added
1301multiple times if FUNC_DATA differ and vice versa.
1302
1303** New function: scm_c_hook_remove (scm_c_hook_t *HOOK, scm_c_hook_function_t FUNC, void *FUNC_DATA)
1304
1305Remove hook function FUNC with associated FUNC_DATA from HOOK. A
1306function is only removed if both FUNC and FUNC_DATA matches.
1307
1308** New function: void *scm_c_hook_run (scm_c_hook_t *HOOK, void *DATA)
1309
1310Run hook HOOK passing DATA to the hook functions.
1311
1312If TYPE is SCM_C_HOOK_NORMAL, all hook functions are run. The value
1313returned is undefined.
1314
1315If TYPE is SCM_C_HOOK_OR, hook functions are run until a function
1316returns a non-NULL value. This value is returned as the result of
1317scm_c_hook_run. If all functions return NULL, NULL is returned.
1318
1319If TYPE is SCM_C_HOOK_AND, hook functions are run until a function
1320returns a NULL value, and NULL is returned. If all functions returns
1321a non-NULL value, the last value is returned.
1322
1323** New C level GC hooks
1324
1325Five new C level hooks has been added to the garbage collector.
1326
1327 scm_before_gc_c_hook
1328 scm_after_gc_c_hook
1329
1330are run before locking and after unlocking the heap. The system is
1331thus in a mode where evaluation can take place. (Except that
1332scm_before_gc_c_hook must not allocate new cells.)
1333
1334 scm_before_mark_c_hook
1335 scm_before_sweep_c_hook
1336 scm_after_sweep_c_hook
1337
1338are run when the heap is locked. These are intended for extension of
1339the GC in a modular fashion. Examples are the weaks and guardians
1340modules.
1341
b5074b23
MD
1342** Way for application to customize GC parameters
1343
1344The application can set up other default values for the GC heap
1345allocation parameters
1346
1347 GUILE_INIT_HEAP_SIZE_1, GUILE_MIN_YIELD_1,
1348 GUILE_INIT_HEAP_SIZE_2, GUILE_MIN_YIELD_2,
1349 GUILE_MAX_SEGMENT_SIZE,
1350
1351by setting
1352
1353 scm_default_init_heap_size_1, scm_default_min_yield_1,
1354 scm_default_init_heap_size_2, scm_default_min_yield_2,
1355 scm_default_max_segment_size
1356
1357respectively before callong scm_boot_guile.
1358
1359(See entry "New environment variables ..." in section
1360"Changes to the stand-alone interpreter" above.)
1361
9704841c
MD
1362** scm_protect_object/scm_unprotect_object now nest
1363
67ef2dca
MD
1364This means that you can call scm_protect_object multiple times on an
1365object and count on the object being protected until
1366scm_unprotect_object has been call the same number of times.
1367
1368The functions also have better time complexity.
1369
1370Still, it is usually possible to structure the application in a way
1371that you don't need to use these functions. For example, if you use a
1372protected standard Guile list to keep track of live objects rather
1373than some custom data type, objects will die a natural death when they
1374are no longer needed.
1375
0a9e521f
MD
1376** Deprecated type tags: scm_tc16_flo, scm_tc_flo, scm_tc_dblr, scm_tc_dblc
1377
1378Guile does not provide the float representation for inexact real numbers any
1379more. Now, only doubles are used to represent inexact real numbers. Further,
1380the tag names scm_tc_dblr and scm_tc_dblc have been changed to scm_tc16_real
1381and scm_tc16_complex, respectively.
1382
341f78c9
MD
1383** Removed deprecated type scm_smobfuns
1384
1385** Removed deprecated function scm_newsmob
1386
b5074b23
MD
1387** Warning: scm_make_smob_type_mfpe might become deprecated in a future release
1388
1389There is an ongoing discussion among the developers whether to
1390deprecate `scm_make_smob_type_mfpe' or not. Please use the current
1391standard interface (scm_make_smob_type, scm_set_smob_XXX) in new code
1392until this issue has been settled.
1393
341f78c9
MD
1394** Removed deprecated type tag scm_tc16_kw
1395
2728d7f4
MD
1396** Added type tag scm_tc16_keyword
1397
1398(This was introduced already in release 1.3.4 but was not documented
1399 until now.)
1400
67ef2dca
MD
1401** gdb_print now prints "*** Guile not initialized ***" until Guile initialized
1402
f25f761d
GH
1403* Changes to system call interfaces:
1404
28d77376
GH
1405** The "select" procedure now tests port buffers for the ability to
1406provide input or accept output. Previously only the underlying file
1407descriptors were checked.
1408
bd9e24b3
GH
1409** New variable PIPE_BUF: the maximum number of bytes that can be
1410atomically written to a pipe.
1411
f25f761d
GH
1412** If a facility is not available on the system when Guile is
1413compiled, the corresponding primitive procedure will not be defined.
1414Previously it would have been defined but would throw a system-error
1415exception if called. Exception handlers which catch this case may
1416need minor modification: an error will be thrown with key
1417'unbound-variable instead of 'system-error. Alternatively it's
1418now possible to use `defined?' to check whether the facility is
1419available.
1420
38c1d3c4
GH
1421** Procedures which depend on the timezone should now give the correct
1422result on systems which cache the TZ environment variable, even if TZ
1423is changed without calling tzset.
1424
5c11cc9d
GH
1425* Changes to the networking interfaces:
1426
1427** New functions: htons, ntohs, htonl, ntohl: for converting short and
1428long integers between network and host format. For now, it's not
1429particularly convenient to do this kind of thing, but consider:
1430
1431(define write-network-long
1432 (lambda (value port)
1433 (let ((v (make-uniform-vector 1 1 0)))
1434 (uniform-vector-set! v 0 (htonl value))
1435 (uniform-vector-write v port))))
1436
1437(define read-network-long
1438 (lambda (port)
1439 (let ((v (make-uniform-vector 1 1 0)))
1440 (uniform-vector-read! v port)
1441 (ntohl (uniform-vector-ref v 0)))))
1442
1443** If inet-aton fails, it now throws an error with key 'misc-error
1444instead of 'system-error, since errno is not relevant.
1445
1446** Certain gethostbyname/gethostbyaddr failures now throw errors with
1447specific keys instead of 'system-error. The latter is inappropriate
1448since errno will not have been set. The keys are:
afe5177e 1449'host-not-found, 'try-again, 'no-recovery and 'no-data.
5c11cc9d
GH
1450
1451** sethostent, setnetent, setprotoent, setservent: now take an
1452optional argument STAYOPEN, which specifies whether the database
1453remains open after a database entry is accessed randomly (e.g., using
1454gethostbyname for the hosts database.) The default is #f. Previously
1455#t was always used.
1456
cc36e791 1457\f
43fa9a05
JB
1458Changes since Guile 1.3.2:
1459
0fdcbcaa
MD
1460* Changes to the stand-alone interpreter
1461
1462** Debugger
1463
1464An initial version of the Guile debugger written by Chris Hanson has
1465been added. The debugger is still under development but is included
1466in the distribution anyway since it is already quite useful.
1467
1468Type
1469
1470 (debug)
1471
1472after an error to enter the debugger. Type `help' inside the debugger
1473for a description of available commands.
1474
1475If you prefer to have stack frames numbered and printed in
1476anti-chronological order and prefer up in the stack to be down on the
1477screen as is the case in gdb, you can put
1478
1479 (debug-enable 'backwards)
1480
1481in your .guile startup file. (However, this means that Guile can't
1482use indentation to indicate stack level.)
1483
1484The debugger is autoloaded into Guile at the first use.
1485
1486** Further enhancements to backtraces
1487
1488There is a new debug option `width' which controls the maximum width
1489on the screen of printed stack frames. Fancy printing parameters
1490("level" and "length" as in Common LISP) are adaptively adjusted for
1491each stack frame to give maximum information while still fitting
1492within the bounds. If the stack frame can't be made to fit by
1493adjusting parameters, it is simply cut off at the end. This is marked
1494with a `$'.
1495
1496** Some modules are now only loaded when the repl is started
1497
1498The modules (ice-9 debug), (ice-9 session), (ice-9 threads) and (ice-9
1499regex) are now loaded into (guile-user) only if the repl has been
1500started. The effect is that the startup time for scripts has been
1501reduced to 30% of what it was previously.
1502
1503Correctly written scripts load the modules they require at the top of
1504the file and should not be affected by this change.
1505
ece41168
MD
1506** Hooks are now represented as smobs
1507
6822fe53
MD
1508* Changes to Scheme functions and syntax
1509
0ce204b0
MV
1510** Readline support has changed again.
1511
1512The old (readline-activator) module is gone. Use (ice-9 readline)
1513instead, which now contains all readline functionality. So the code
1514to activate readline is now
1515
1516 (use-modules (ice-9 readline))
1517 (activate-readline)
1518
1519This should work at any time, including from the guile prompt.
1520
5d195868
JB
1521To avoid confusion about the terms of Guile's license, please only
1522enable readline for your personal use; please don't make it the
1523default for others. Here is why we make this rather odd-sounding
1524request:
1525
1526Guile is normally licensed under a weakened form of the GNU General
1527Public License, which allows you to link code with Guile without
1528placing that code under the GPL. This exception is important to some
1529people.
1530
1531However, since readline is distributed under the GNU General Public
1532License, when you link Guile with readline, either statically or
1533dynamically, you effectively change Guile's license to the strict GPL.
1534Whenever you link any strictly GPL'd code into Guile, uses of Guile
1535which are normally permitted become forbidden. This is a rather
1536non-obvious consequence of the licensing terms.
1537
1538So, to make sure things remain clear, please let people choose for
1539themselves whether to link GPL'd libraries like readline with Guile.
1540
25b0654e
JB
1541** regexp-substitute/global has changed slightly, but incompatibly.
1542
1543If you include a function in the item list, the string of the match
1544object it receives is the same string passed to
1545regexp-substitute/global, not some suffix of that string.
1546Correspondingly, the match's positions are relative to the entire
1547string, not the suffix.
1548
1549If the regexp can match the empty string, the way matches are chosen
1550from the string has changed. regexp-substitute/global recognizes the
1551same set of matches that list-matches does; see below.
1552
1553** New function: list-matches REGEXP STRING [FLAGS]
1554
1555Return a list of match objects, one for every non-overlapping, maximal
1556match of REGEXP in STRING. The matches appear in left-to-right order.
1557list-matches only reports matches of the empty string if there are no
1558other matches which begin on, end at, or include the empty match's
1559position.
1560
1561If present, FLAGS is passed as the FLAGS argument to regexp-exec.
1562
1563** New function: fold-matches REGEXP STRING INIT PROC [FLAGS]
1564
1565For each match of REGEXP in STRING, apply PROC to the match object,
1566and the last value PROC returned, or INIT for the first call. Return
1567the last value returned by PROC. We apply PROC to the matches as they
1568appear from left to right.
1569
1570This function recognizes matches according to the same criteria as
1571list-matches.
1572
1573Thus, you could define list-matches like this:
1574
1575 (define (list-matches regexp string . flags)
1576 (reverse! (apply fold-matches regexp string '() cons flags)))
1577
1578If present, FLAGS is passed as the FLAGS argument to regexp-exec.
1579
bc848f7f
MD
1580** Hooks
1581
1582*** New function: hook? OBJ
1583
1584Return #t if OBJ is a hook, otherwise #f.
1585
ece41168
MD
1586*** New function: make-hook-with-name NAME [ARITY]
1587
1588Return a hook with name NAME and arity ARITY. The default value for
1589ARITY is 0. The only effect of NAME is that it will appear when the
1590hook object is printed to ease debugging.
1591
bc848f7f
MD
1592*** New function: hook-empty? HOOK
1593
1594Return #t if HOOK doesn't contain any procedures, otherwise #f.
1595
1596*** New function: hook->list HOOK
1597
1598Return a list of the procedures that are called when run-hook is
1599applied to HOOK.
1600
b074884f
JB
1601** `map' signals an error if its argument lists are not all the same length.
1602
1603This is the behavior required by R5RS, so this change is really a bug
1604fix. But it seems to affect a lot of people's code, so we're
1605mentioning it here anyway.
1606
6822fe53
MD
1607** Print-state handling has been made more transparent
1608
1609Under certain circumstances, ports are represented as a port with an
1610associated print state. Earlier, this pair was represented as a pair
1611(see "Some magic has been added to the printer" below). It is now
1612indistinguishable (almost; see `get-print-state') from a port on the
1613user level.
1614
1615*** New function: port-with-print-state OUTPUT-PORT PRINT-STATE
1616
1617Return a new port with the associated print state PRINT-STATE.
1618
1619*** New function: get-print-state OUTPUT-PORT
1620
1621Return the print state associated with this port if it exists,
1622otherwise return #f.
1623
340a8770 1624*** New function: directory-stream? OBJECT
77242ff9 1625
340a8770 1626Returns true iff OBJECT is a directory stream --- the sort of object
77242ff9
GH
1627returned by `opendir'.
1628
0fdcbcaa
MD
1629** New function: using-readline?
1630
1631Return #t if readline is in use in the current repl.
1632
26405bc1
MD
1633** structs will be removed in 1.4
1634
1635Structs will be replaced in Guile 1.4. We will merge GOOPS into Guile
1636and use GOOPS objects as the fundamental record type.
1637
49199eaa
MD
1638* Changes to the scm_ interface
1639
26405bc1
MD
1640** structs will be removed in 1.4
1641
1642The entire current struct interface (struct.c, struct.h) will be
1643replaced in Guile 1.4. We will merge GOOPS into libguile and use
1644GOOPS objects as the fundamental record type.
1645
49199eaa
MD
1646** The internal representation of subr's has changed
1647
1648Instead of giving a hint to the subr name, the CAR field of the subr
1649now contains an index to a subr entry in scm_subr_table.
1650
1651*** New variable: scm_subr_table
1652
1653An array of subr entries. A subr entry contains the name, properties
1654and documentation associated with the subr. The properties and
1655documentation slots are not yet used.
1656
1657** A new scheme for "forwarding" calls to a builtin to a generic function
1658
1659It is now possible to extend the functionality of some Guile
1660primitives by letting them defer a call to a GOOPS generic function on
240ed66f 1661argument mismatch. This means that there is no loss of efficiency in
daf516d6 1662normal evaluation.
49199eaa
MD
1663
1664Example:
1665
daf516d6 1666 (use-modules (oop goops)) ; Must be GOOPS version 0.2.
49199eaa
MD
1667 (define-method + ((x <string>) (y <string>))
1668 (string-append x y))
1669
86a4d62e
MD
1670+ will still be as efficient as usual in numerical calculations, but
1671can also be used for concatenating strings.
49199eaa 1672
86a4d62e 1673Who will be the first one to extend Guile's numerical tower to
daf516d6
MD
1674rationals? :) [OK, there a few other things to fix before this can
1675be made in a clean way.]
49199eaa
MD
1676
1677*** New snarf macros for defining primitives: SCM_GPROC, SCM_GPROC1
1678
1679 New macro: SCM_GPROC (CNAME, SNAME, REQ, OPT, VAR, CFUNC, GENERIC)
1680
1681 New macro: SCM_GPROC1 (CNAME, SNAME, TYPE, CFUNC, GENERIC)
1682
d02cafe7 1683These do the same job as SCM_PROC and SCM_PROC1, but they also define
49199eaa
MD
1684a variable GENERIC which can be used by the dispatch macros below.
1685
1686[This is experimental code which may change soon.]
1687
1688*** New macros for forwarding control to a generic on arg type error
1689
1690 New macro: SCM_WTA_DISPATCH_1 (GENERIC, ARG1, POS, SUBR)
1691
1692 New macro: SCM_WTA_DISPATCH_2 (GENERIC, ARG1, ARG2, POS, SUBR)
1693
1694These correspond to the scm_wta function call, and have the same
1695behaviour until the user has called the GOOPS primitive
1696`enable-primitive-generic!'. After that, these macros will apply the
1697generic function GENERIC to the argument(s) instead of calling
1698scm_wta.
1699
1700[This is experimental code which may change soon.]
1701
1702*** New macros for argument testing with generic dispatch
1703
1704 New macro: SCM_GASSERT1 (COND, GENERIC, ARG1, POS, SUBR)
1705
1706 New macro: SCM_GASSERT2 (COND, GENERIC, ARG1, ARG2, POS, SUBR)
1707
1708These correspond to the SCM_ASSERT macro, but will defer control to
1709GENERIC on error after `enable-primitive-generic!' has been called.
1710
1711[This is experimental code which may change soon.]
1712
1713** New function: SCM scm_eval_body (SCM body, SCM env)
1714
1715Evaluates the body of a special form.
1716
1717** The internal representation of struct's has changed
1718
1719Previously, four slots were allocated for the procedure(s) of entities
1720and operators. The motivation for this representation had to do with
1721the structure of the evaluator, the wish to support tail-recursive
1722generic functions, and efficiency. Since the generic function
1723dispatch mechanism has changed, there is no longer a need for such an
1724expensive representation, and the representation has been simplified.
1725
1726This should not make any difference for most users.
1727
1728** GOOPS support has been cleaned up.
1729
1730Some code has been moved from eval.c to objects.c and code in both of
1731these compilation units has been cleaned up and better structured.
1732
1733*** New functions for applying generic functions
1734
1735 New function: SCM scm_apply_generic (GENERIC, ARGS)
1736 New function: SCM scm_call_generic_0 (GENERIC)
1737 New function: SCM scm_call_generic_1 (GENERIC, ARG1)
1738 New function: SCM scm_call_generic_2 (GENERIC, ARG1, ARG2)
1739 New function: SCM scm_call_generic_3 (GENERIC, ARG1, ARG2, ARG3)
1740
ece41168
MD
1741** Deprecated function: scm_make_named_hook
1742
1743It is now replaced by:
1744
1745** New function: SCM scm_create_hook (const char *name, int arity)
1746
1747Creates a hook in the same way as make-hook above but also
1748binds a variable named NAME to it.
1749
1750This is the typical way of creating a hook from C code.
1751
1752Currently, the variable is created in the "current" module.
1753This might change when we get the new module system.
1754
1755[The behaviour is identical to scm_make_named_hook.]
1756
1757
43fa9a05 1758\f
f3227c7a
JB
1759Changes since Guile 1.3:
1760
6ca345f3
JB
1761* Changes to mailing lists
1762
1763** Some of the Guile mailing lists have moved to sourceware.cygnus.com.
1764
1765See the README file to find current addresses for all the Guile
1766mailing lists.
1767
d77fb593
JB
1768* Changes to the distribution
1769
1d335863
JB
1770** Readline support is no longer included with Guile by default.
1771
1772Based on the different license terms of Guile and Readline, we
1773concluded that Guile should not *by default* cause the linking of
1774Readline into an application program. Readline support is now offered
1775as a separate module, which is linked into an application only when
1776you explicitly specify it.
1777
1778Although Guile is GNU software, its distribution terms add a special
1779exception to the usual GNU General Public License (GPL). Guile's
1780license includes a clause that allows you to link Guile with non-free
1781programs. We add this exception so as not to put Guile at a
1782disadvantage vis-a-vis other extensibility packages that support other
1783languages.
1784
1785In contrast, the GNU Readline library is distributed under the GNU
1786General Public License pure and simple. This means that you may not
1787link Readline, even dynamically, into an application unless it is
1788distributed under a free software license that is compatible the GPL.
1789
1790Because of this difference in distribution terms, an application that
1791can use Guile may not be able to use Readline. Now users will be
1792explicitly offered two independent decisions about the use of these
1793two packages.
d77fb593 1794
0e8a8468
MV
1795You can activate the readline support by issuing
1796
1797 (use-modules (readline-activator))
1798 (activate-readline)
1799
1800from your ".guile" file, for example.
1801
e4eae9b1
MD
1802* Changes to the stand-alone interpreter
1803
67ad463a
MD
1804** All builtins now print as primitives.
1805Previously builtin procedures not belonging to the fundamental subr
1806types printed as #<compiled closure #<primitive-procedure gsubr-apply>>.
1807Now, they print as #<primitive-procedure NAME>.
1808
1809** Backtraces slightly more intelligible.
1810gsubr-apply and macro transformer application frames no longer appear
1811in backtraces.
1812
69c6acbb
JB
1813* Changes to Scheme functions and syntax
1814
2a52b429
MD
1815** Guile now correctly handles internal defines by rewriting them into
1816their equivalent letrec. Previously, internal defines would
1817incrementally add to the innermost environment, without checking
1818whether the restrictions specified in RnRS were met. This lead to the
1819correct behaviour when these restriction actually were met, but didn't
1820catch all illegal uses. Such an illegal use could lead to crashes of
1821the Guile interpreter or or other unwanted results. An example of
1822incorrect internal defines that made Guile behave erratically:
1823
1824 (let ()
1825 (define a 1)
1826 (define (b) a)
1827 (define c (1+ (b)))
1828 (define d 3)
1829
1830 (b))
1831
1832 => 2
1833
1834The problem with this example is that the definition of `c' uses the
1835value of `b' directly. This confuses the meoization machine of Guile
1836so that the second call of `b' (this time in a larger environment that
1837also contains bindings for `c' and `d') refers to the binding of `c'
1838instead of `a'. You could also make Guile crash with a variation on
1839this theme:
1840
1841 (define (foo flag)
1842 (define a 1)
1843 (define (b flag) (if flag a 1))
1844 (define c (1+ (b flag)))
1845 (define d 3)
1846
1847 (b #t))
1848
1849 (foo #f)
1850 (foo #t)
1851
1852From now on, Guile will issue an `Unbound variable: b' error message
1853for both examples.
1854
36d3d540
MD
1855** Hooks
1856
1857A hook contains a list of functions which should be called on
1858particular occasions in an existing program. Hooks are used for
1859customization.
1860
1861A window manager might have a hook before-window-map-hook. The window
1862manager uses the function run-hooks to call all functions stored in
1863before-window-map-hook each time a window is mapped. The user can
1864store functions in the hook using add-hook!.
1865
1866In Guile, hooks are first class objects.
1867
1868*** New function: make-hook [N_ARGS]
1869
1870Return a hook for hook functions which can take N_ARGS arguments.
1871The default value for N_ARGS is 0.
1872
ad91d6c3
MD
1873(See also scm_make_named_hook below.)
1874
36d3d540
MD
1875*** New function: add-hook! HOOK PROC [APPEND_P]
1876
1877Put PROC at the beginning of the list of functions stored in HOOK.
1878If APPEND_P is supplied, and non-false, put PROC at the end instead.
1879
1880PROC must be able to take the number of arguments specified when the
1881hook was created.
1882
1883If PROC already exists in HOOK, then remove it first.
1884
1885*** New function: remove-hook! HOOK PROC
1886
1887Remove PROC from the list of functions in HOOK.
1888
1889*** New function: reset-hook! HOOK
1890
1891Clear the list of hook functions stored in HOOK.
1892
1893*** New function: run-hook HOOK ARG1 ...
1894
1895Run all hook functions stored in HOOK with arguments ARG1 ... .
1896The number of arguments supplied must correspond to the number given
1897when the hook was created.
1898
56a19408
MV
1899** The function `dynamic-link' now takes optional keyword arguments.
1900 The only keyword argument that is currently defined is `:global
1901 BOOL'. With it, you can control whether the shared library will be
1902 linked in global mode or not. In global mode, the symbols from the
1903 linked library can be used to resolve references from other
1904 dynamically linked libraries. In non-global mode, the linked
1905 library is essentially invisible and can only be accessed via
1906 `dynamic-func', etc. The default is now to link in global mode.
1907 Previously, the default has been non-global mode.
1908
1909 The `#:global' keyword is only effective on platforms that support
1910 the dlopen family of functions.
1911
ad226f25 1912** New function `provided?'
b7e13f65
JB
1913
1914 - Function: provided? FEATURE
1915 Return true iff FEATURE is supported by this installation of
1916 Guile. FEATURE must be a symbol naming a feature; the global
1917 variable `*features*' is a list of available features.
1918
ad226f25
JB
1919** Changes to the module (ice-9 expect):
1920
1921*** The expect-strings macro now matches `$' in a regular expression
1922 only at a line-break or end-of-file by default. Previously it would
ab711359
JB
1923 match the end of the string accumulated so far. The old behaviour
1924 can be obtained by setting the variable `expect-strings-exec-flags'
1925 to 0.
ad226f25
JB
1926
1927*** The expect-strings macro now uses a variable `expect-strings-exec-flags'
1928 for the regexp-exec flags. If `regexp/noteol' is included, then `$'
1929 in a regular expression will still match before a line-break or
1930 end-of-file. The default is `regexp/noteol'.
1931
1932*** The expect-strings macro now uses a variable
1933 `expect-strings-compile-flags' for the flags to be supplied to
1934 `make-regexp'. The default is `regexp/newline', which was previously
1935 hard-coded.
1936
1937*** The expect macro now supplies two arguments to a match procedure:
ab711359
JB
1938 the current accumulated string and a flag to indicate whether
1939 end-of-file has been reached. Previously only the string was supplied.
1940 If end-of-file is reached, the match procedure will be called an
1941 additional time with the same accumulated string as the previous call
1942 but with the flag set.
ad226f25 1943
b7e13f65
JB
1944** New module (ice-9 format), implementing the Common Lisp `format' function.
1945
1946This code, and the documentation for it that appears here, was
1947borrowed from SLIB, with minor adaptations for Guile.
1948
1949 - Function: format DESTINATION FORMAT-STRING . ARGUMENTS
1950 An almost complete implementation of Common LISP format description
1951 according to the CL reference book `Common LISP' from Guy L.
1952 Steele, Digital Press. Backward compatible to most of the
1953 available Scheme format implementations.
1954
1955 Returns `#t', `#f' or a string; has side effect of printing
1956 according to FORMAT-STRING. If DESTINATION is `#t', the output is
1957 to the current output port and `#t' is returned. If DESTINATION
1958 is `#f', a formatted string is returned as the result of the call.
1959 NEW: If DESTINATION is a string, DESTINATION is regarded as the
1960 format string; FORMAT-STRING is then the first argument and the
1961 output is returned as a string. If DESTINATION is a number, the
1962 output is to the current error port if available by the
1963 implementation. Otherwise DESTINATION must be an output port and
1964 `#t' is returned.
1965
1966 FORMAT-STRING must be a string. In case of a formatting error
1967 format returns `#f' and prints a message on the current output or
1968 error port. Characters are output as if the string were output by
1969 the `display' function with the exception of those prefixed by a
1970 tilde (~). For a detailed description of the FORMAT-STRING syntax
1971 please consult a Common LISP format reference manual. For a test
1972 suite to verify this format implementation load `formatst.scm'.
1973 Please send bug reports to `lutzeb@cs.tu-berlin.de'.
1974
1975 Note: `format' is not reentrant, i.e. only one `format'-call may
1976 be executed at a time.
1977
1978
1979*** Format Specification (Format version 3.0)
1980
1981 Please consult a Common LISP format reference manual for a detailed
1982description of the format string syntax. For a demonstration of the
1983implemented directives see `formatst.scm'.
1984
1985 This implementation supports directive parameters and modifiers (`:'
1986and `@' characters). Multiple parameters must be separated by a comma
1987(`,'). Parameters can be numerical parameters (positive or negative),
1988character parameters (prefixed by a quote character (`''), variable
1989parameters (`v'), number of rest arguments parameter (`#'), empty and
1990default parameters. Directive characters are case independent. The
1991general form of a directive is:
1992
1993DIRECTIVE ::= ~{DIRECTIVE-PARAMETER,}[:][@]DIRECTIVE-CHARACTER
1994
1995DIRECTIVE-PARAMETER ::= [ [-|+]{0-9}+ | 'CHARACTER | v | # ]
1996
1997*** Implemented CL Format Control Directives
1998
1999 Documentation syntax: Uppercase characters represent the
2000corresponding control directive characters. Lowercase characters
2001represent control directive parameter descriptions.
2002
2003`~A'
2004 Any (print as `display' does).
2005 `~@A'
2006 left pad.
2007
2008 `~MINCOL,COLINC,MINPAD,PADCHARA'
2009 full padding.
2010
2011`~S'
2012 S-expression (print as `write' does).
2013 `~@S'
2014 left pad.
2015
2016 `~MINCOL,COLINC,MINPAD,PADCHARS'
2017 full padding.
2018
2019`~D'
2020 Decimal.
2021 `~@D'
2022 print number sign always.
2023
2024 `~:D'
2025 print comma separated.
2026
2027 `~MINCOL,PADCHAR,COMMACHARD'
2028 padding.
2029
2030`~X'
2031 Hexadecimal.
2032 `~@X'
2033 print number sign always.
2034
2035 `~:X'
2036 print comma separated.
2037
2038 `~MINCOL,PADCHAR,COMMACHARX'
2039 padding.
2040
2041`~O'
2042 Octal.
2043 `~@O'
2044 print number sign always.
2045
2046 `~:O'
2047 print comma separated.
2048
2049 `~MINCOL,PADCHAR,COMMACHARO'
2050 padding.
2051
2052`~B'
2053 Binary.
2054 `~@B'
2055 print number sign always.
2056
2057 `~:B'
2058 print comma separated.
2059
2060 `~MINCOL,PADCHAR,COMMACHARB'
2061 padding.
2062
2063`~NR'
2064 Radix N.
2065 `~N,MINCOL,PADCHAR,COMMACHARR'
2066 padding.
2067
2068`~@R'
2069 print a number as a Roman numeral.
2070
2071`~:@R'
2072 print a number as an "old fashioned" Roman numeral.
2073
2074`~:R'
2075 print a number as an ordinal English number.
2076
2077`~:@R'
2078 print a number as a cardinal English number.
2079
2080`~P'
2081 Plural.
2082 `~@P'
2083 prints `y' and `ies'.
2084
2085 `~:P'
2086 as `~P but jumps 1 argument backward.'
2087
2088 `~:@P'
2089 as `~@P but jumps 1 argument backward.'
2090
2091`~C'
2092 Character.
2093 `~@C'
2094 prints a character as the reader can understand it (i.e. `#\'
2095 prefixing).
2096
2097 `~:C'
2098 prints a character as emacs does (eg. `^C' for ASCII 03).
2099
2100`~F'
2101 Fixed-format floating-point (prints a flonum like MMM.NNN).
2102 `~WIDTH,DIGITS,SCALE,OVERFLOWCHAR,PADCHARF'
2103 `~@F'
2104 If the number is positive a plus sign is printed.
2105
2106`~E'
2107 Exponential floating-point (prints a flonum like MMM.NNN`E'EE).
2108 `~WIDTH,DIGITS,EXPONENTDIGITS,SCALE,OVERFLOWCHAR,PADCHAR,EXPONENTCHARE'
2109 `~@E'
2110 If the number is positive a plus sign is printed.
2111
2112`~G'
2113 General floating-point (prints a flonum either fixed or
2114 exponential).
2115 `~WIDTH,DIGITS,EXPONENTDIGITS,SCALE,OVERFLOWCHAR,PADCHAR,EXPONENTCHARG'
2116 `~@G'
2117 If the number is positive a plus sign is printed.
2118
2119`~$'
2120 Dollars floating-point (prints a flonum in fixed with signs
2121 separated).
2122 `~DIGITS,SCALE,WIDTH,PADCHAR$'
2123 `~@$'
2124 If the number is positive a plus sign is printed.
2125
2126 `~:@$'
2127 A sign is always printed and appears before the padding.
2128
2129 `~:$'
2130 The sign appears before the padding.
2131
2132`~%'
2133 Newline.
2134 `~N%'
2135 print N newlines.
2136
2137`~&'
2138 print newline if not at the beginning of the output line.
2139 `~N&'
2140 prints `~&' and then N-1 newlines.
2141
2142`~|'
2143 Page Separator.
2144 `~N|'
2145 print N page separators.
2146
2147`~~'
2148 Tilde.
2149 `~N~'
2150 print N tildes.
2151
2152`~'<newline>
2153 Continuation Line.
2154 `~:'<newline>
2155 newline is ignored, white space left.
2156
2157 `~@'<newline>
2158 newline is left, white space ignored.
2159
2160`~T'
2161 Tabulation.
2162 `~@T'
2163 relative tabulation.
2164
2165 `~COLNUM,COLINCT'
2166 full tabulation.
2167
2168`~?'
2169 Indirection (expects indirect arguments as a list).
2170 `~@?'
2171 extracts indirect arguments from format arguments.
2172
2173`~(STR~)'
2174 Case conversion (converts by `string-downcase').
2175 `~:(STR~)'
2176 converts by `string-capitalize'.
2177
2178 `~@(STR~)'
2179 converts by `string-capitalize-first'.
2180
2181 `~:@(STR~)'
2182 converts by `string-upcase'.
2183
2184`~*'
2185 Argument Jumping (jumps 1 argument forward).
2186 `~N*'
2187 jumps N arguments forward.
2188
2189 `~:*'
2190 jumps 1 argument backward.
2191
2192 `~N:*'
2193 jumps N arguments backward.
2194
2195 `~@*'
2196 jumps to the 0th argument.
2197
2198 `~N@*'
2199 jumps to the Nth argument (beginning from 0)
2200
2201`~[STR0~;STR1~;...~;STRN~]'
2202 Conditional Expression (numerical clause conditional).
2203 `~N['
2204 take argument from N.
2205
2206 `~@['
2207 true test conditional.
2208
2209 `~:['
2210 if-else-then conditional.
2211
2212 `~;'
2213 clause separator.
2214
2215 `~:;'
2216 default clause follows.
2217
2218`~{STR~}'
2219 Iteration (args come from the next argument (a list)).
2220 `~N{'
2221 at most N iterations.
2222
2223 `~:{'
2224 args from next arg (a list of lists).
2225
2226 `~@{'
2227 args from the rest of arguments.
2228
2229 `~:@{'
2230 args from the rest args (lists).
2231
2232`~^'
2233 Up and out.
2234 `~N^'
2235 aborts if N = 0
2236
2237 `~N,M^'
2238 aborts if N = M
2239
2240 `~N,M,K^'
2241 aborts if N <= M <= K
2242
2243*** Not Implemented CL Format Control Directives
2244
2245`~:A'
2246 print `#f' as an empty list (see below).
2247
2248`~:S'
2249 print `#f' as an empty list (see below).
2250
2251`~<~>'
2252 Justification.
2253
2254`~:^'
2255 (sorry I don't understand its semantics completely)
2256
2257*** Extended, Replaced and Additional Control Directives
2258
2259`~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHD'
2260`~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHX'
2261`~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHO'
2262`~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHB'
2263`~N,MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHR'
2264 COMMAWIDTH is the number of characters between two comma
2265 characters.
2266
2267`~I'
2268 print a R4RS complex number as `~F~@Fi' with passed parameters for
2269 `~F'.
2270
2271`~Y'
2272 Pretty print formatting of an argument for scheme code lists.
2273
2274`~K'
2275 Same as `~?.'
2276
2277`~!'
2278 Flushes the output if format DESTINATION is a port.
2279
2280`~_'
2281 Print a `#\space' character
2282 `~N_'
2283 print N `#\space' characters.
2284
2285`~/'
2286 Print a `#\tab' character
2287 `~N/'
2288 print N `#\tab' characters.
2289
2290`~NC'
2291 Takes N as an integer representation for a character. No arguments
2292 are consumed. N is converted to a character by `integer->char'. N
2293 must be a positive decimal number.
2294
2295`~:S'
2296 Print out readproof. Prints out internal objects represented as
2297 `#<...>' as strings `"#<...>"' so that the format output can always
2298 be processed by `read'.
2299
2300`~:A'
2301 Print out readproof. Prints out internal objects represented as
2302 `#<...>' as strings `"#<...>"' so that the format output can always
2303 be processed by `read'.
2304
2305`~Q'
2306 Prints information and a copyright notice on the format
2307 implementation.
2308 `~:Q'
2309 prints format version.
2310
2311`~F, ~E, ~G, ~$'
2312 may also print number strings, i.e. passing a number as a string
2313 and format it accordingly.
2314
2315*** Configuration Variables
2316
2317 The format module exports some configuration variables to suit the
2318systems and users needs. There should be no modification necessary for
2319the configuration that comes with Guile. Format detects automatically
2320if the running scheme system implements floating point numbers and
2321complex numbers.
2322
2323format:symbol-case-conv
2324 Symbols are converted by `symbol->string' so the case type of the
2325 printed symbols is implementation dependent.
2326 `format:symbol-case-conv' is a one arg closure which is either
2327 `#f' (no conversion), `string-upcase', `string-downcase' or
2328 `string-capitalize'. (default `#f')
2329
2330format:iobj-case-conv
2331 As FORMAT:SYMBOL-CASE-CONV but applies for the representation of
2332 implementation internal objects. (default `#f')
2333
2334format:expch
2335 The character prefixing the exponent value in `~E' printing.
2336 (default `#\E')
2337
2338*** Compatibility With Other Format Implementations
2339
2340SLIB format 2.x:
2341 See `format.doc'.
2342
2343SLIB format 1.4:
2344 Downward compatible except for padding support and `~A', `~S',
2345 `~P', `~X' uppercase printing. SLIB format 1.4 uses C-style
2346 `printf' padding support which is completely replaced by the CL
2347 `format' padding style.
2348
2349MIT C-Scheme 7.1:
2350 Downward compatible except for `~', which is not documented
2351 (ignores all characters inside the format string up to a newline
2352 character). (7.1 implements `~a', `~s', ~NEWLINE, `~~', `~%',
2353 numerical and variable parameters and `:/@' modifiers in the CL
2354 sense).
2355
2356Elk 1.5/2.0:
2357 Downward compatible except for `~A' and `~S' which print in
2358 uppercase. (Elk implements `~a', `~s', `~~', and `~%' (no
2359 directive parameters or modifiers)).
2360
2361Scheme->C 01nov91:
2362 Downward compatible except for an optional destination parameter:
2363 S2C accepts a format call without a destination which returns a
2364 formatted string. This is equivalent to a #f destination in S2C.
2365 (S2C implements `~a', `~s', `~c', `~%', and `~~' (no directive
2366 parameters or modifiers)).
2367
2368
e7d37b0a 2369** Changes to string-handling functions.
b7e13f65 2370
e7d37b0a 2371These functions were added to support the (ice-9 format) module, above.
b7e13f65 2372
e7d37b0a
JB
2373*** New function: string-upcase STRING
2374*** New function: string-downcase STRING
b7e13f65 2375
e7d37b0a
JB
2376These are non-destructive versions of the existing string-upcase! and
2377string-downcase! functions.
b7e13f65 2378
e7d37b0a
JB
2379*** New function: string-capitalize! STRING
2380*** New function: string-capitalize STRING
2381
2382These functions convert the first letter of each word in the string to
2383upper case. Thus:
2384
2385 (string-capitalize "howdy there")
2386 => "Howdy There"
2387
2388As with the other functions, string-capitalize! modifies the string in
2389place, while string-capitalize returns a modified copy of its argument.
2390
2391*** New function: string-ci->symbol STRING
2392
2393Return a symbol whose name is STRING, but having the same case as if
2394the symbol had be read by `read'.
2395
2396Guile can be configured to be sensitive or insensitive to case
2397differences in Scheme identifiers. If Guile is case-insensitive, all
2398symbols are converted to lower case on input. The `string-ci->symbol'
2399function returns a symbol whose name in STRING, transformed as Guile
2400would if STRING were input.
2401
2402*** New function: substring-move! STRING1 START END STRING2 START
2403
2404Copy the substring of STRING1 from START (inclusive) to END
2405(exclusive) to STRING2 at START. STRING1 and STRING2 may be the same
2406string, and the source and destination areas may overlap; in all
2407cases, the function behaves as if all the characters were copied
2408simultanously.
2409
2410*** Extended functions: substring-move-left! substring-move-right!
2411
2412These functions now correctly copy arbitrarily overlapping substrings;
2413they are both synonyms for substring-move!.
b7e13f65 2414
b7e13f65 2415
deaceb4e
JB
2416** New module (ice-9 getopt-long), with the function `getopt-long'.
2417
2418getopt-long is a function for parsing command-line arguments in a
2419manner consistent with other GNU programs.
2420
2421(getopt-long ARGS GRAMMAR)
2422Parse the arguments ARGS according to the argument list grammar GRAMMAR.
2423
2424ARGS should be a list of strings. Its first element should be the
2425name of the program; subsequent elements should be the arguments
2426that were passed to the program on the command line. The
2427`program-arguments' procedure returns a list of this form.
2428
2429GRAMMAR is a list of the form:
2430((OPTION (PROPERTY VALUE) ...) ...)
2431
2432Each OPTION should be a symbol. `getopt-long' will accept a
2433command-line option named `--OPTION'.
2434Each option can have the following (PROPERTY VALUE) pairs:
2435
2436 (single-char CHAR) --- Accept `-CHAR' as a single-character
2437 equivalent to `--OPTION'. This is how to specify traditional
2438 Unix-style flags.
2439 (required? BOOL) --- If BOOL is true, the option is required.
2440 getopt-long will raise an error if it is not found in ARGS.
2441 (value BOOL) --- If BOOL is #t, the option accepts a value; if
2442 it is #f, it does not; and if it is the symbol
2443 `optional', the option may appear in ARGS with or
2444 without a value.
2445 (predicate FUNC) --- If the option accepts a value (i.e. you
2446 specified `(value #t)' for this option), then getopt
2447 will apply FUNC to the value, and throw an exception
2448 if it returns #f. FUNC should be a procedure which
2449 accepts a string and returns a boolean value; you may
2450 need to use quasiquotes to get it into GRAMMAR.
2451
2452The (PROPERTY VALUE) pairs may occur in any order, but each
2453property may occur only once. By default, options do not have
2454single-character equivalents, are not required, and do not take
2455values.
2456
2457In ARGS, single-character options may be combined, in the usual
2458Unix fashion: ("-x" "-y") is equivalent to ("-xy"). If an option
2459accepts values, then it must be the last option in the
2460combination; the value is the next argument. So, for example, using
2461the following grammar:
2462 ((apples (single-char #\a))
2463 (blimps (single-char #\b) (value #t))
2464 (catalexis (single-char #\c) (value #t)))
2465the following argument lists would be acceptable:
2466 ("-a" "-b" "bang" "-c" "couth") ("bang" and "couth" are the values
2467 for "blimps" and "catalexis")
2468 ("-ab" "bang" "-c" "couth") (same)
2469 ("-ac" "couth" "-b" "bang") (same)
2470 ("-abc" "couth" "bang") (an error, since `-b' is not the
2471 last option in its combination)
2472
2473If an option's value is optional, then `getopt-long' decides
2474whether it has a value by looking at what follows it in ARGS. If
2475the next element is a string, and it does not appear to be an
2476option itself, then that string is the option's value.
2477
2478The value of a long option can appear as the next element in ARGS,
2479or it can follow the option name, separated by an `=' character.
2480Thus, using the same grammar as above, the following argument lists
2481are equivalent:
2482 ("--apples" "Braeburn" "--blimps" "Goodyear")
2483 ("--apples=Braeburn" "--blimps" "Goodyear")
2484 ("--blimps" "Goodyear" "--apples=Braeburn")
2485
2486If the option "--" appears in ARGS, argument parsing stops there;
2487subsequent arguments are returned as ordinary arguments, even if
2488they resemble options. So, in the argument list:
2489 ("--apples" "Granny Smith" "--" "--blimp" "Goodyear")
2490`getopt-long' will recognize the `apples' option as having the
2491value "Granny Smith", but it will not recognize the `blimp'
2492option; it will return the strings "--blimp" and "Goodyear" as
2493ordinary argument strings.
2494
2495The `getopt-long' function returns the parsed argument list as an
2496assocation list, mapping option names --- the symbols from GRAMMAR
2497--- onto their values, or #t if the option does not accept a value.
2498Unused options do not appear in the alist.
2499
2500All arguments that are not the value of any option are returned
2501as a list, associated with the empty list.
2502
2503`getopt-long' throws an exception if:
2504- it finds an unrecognized option in ARGS
2505- a required option is omitted
2506- an option that requires an argument doesn't get one
2507- an option that doesn't accept an argument does get one (this can
2508 only happen using the long option `--opt=value' syntax)
2509- an option predicate fails
2510
2511So, for example:
2512
2513(define grammar
2514 `((lockfile-dir (required? #t)
2515 (value #t)
2516 (single-char #\k)
2517 (predicate ,file-is-directory?))
2518 (verbose (required? #f)
2519 (single-char #\v)
2520 (value #f))
2521 (x-includes (single-char #\x))
2522 (rnet-server (single-char #\y)
2523 (predicate ,string?))))
2524
2525(getopt-long '("my-prog" "-vk" "/tmp" "foo1" "--x-includes=/usr/include"
2526 "--rnet-server=lamprod" "--" "-fred" "foo2" "foo3")
2527 grammar)
2528=> ((() "foo1" "-fred" "foo2" "foo3")
2529 (rnet-server . "lamprod")
2530 (x-includes . "/usr/include")
2531 (lockfile-dir . "/tmp")
2532 (verbose . #t))
2533
2534** The (ice-9 getopt-gnu-style) module is obsolete; use (ice-9 getopt-long).
2535
2536It will be removed in a few releases.
2537
08394899
MS
2538** New syntax: lambda*
2539** New syntax: define*
2540** New syntax: define*-public
2541** New syntax: defmacro*
2542** New syntax: defmacro*-public
2543Guile now supports optional arguments.
2544
2545`lambda*', `define*', `define*-public', `defmacro*' and
2546`defmacro*-public' are identical to the non-* versions except that
2547they use an extended type of parameter list that has the following BNF
2548syntax (parentheses are literal, square brackets indicate grouping,
2549and `*', `+' and `?' have the usual meaning):
2550
2551 ext-param-list ::= ( [identifier]* [#&optional [ext-var-decl]+]?
2552 [#&key [ext-var-decl]+ [#&allow-other-keys]?]?
2553 [[#&rest identifier]|[. identifier]]? ) | [identifier]
2554
2555 ext-var-decl ::= identifier | ( identifier expression )
2556
2557The semantics are best illustrated with the following documentation
2558and examples for `lambda*':
2559
2560 lambda* args . body
2561 lambda extended for optional and keyword arguments
2562
2563 lambda* creates a procedure that takes optional arguments. These
2564 are specified by putting them inside brackets at the end of the
2565 paramater list, but before any dotted rest argument. For example,
2566 (lambda* (a b #&optional c d . e) '())
2567 creates a procedure with fixed arguments a and b, optional arguments c
2568 and d, and rest argument e. If the optional arguments are omitted
2569 in a call, the variables for them are unbound in the procedure. This
2570 can be checked with the bound? macro.
2571
2572 lambda* can also take keyword arguments. For example, a procedure
2573 defined like this:
2574 (lambda* (#&key xyzzy larch) '())
2575 can be called with any of the argument lists (#:xyzzy 11)
2576 (#:larch 13) (#:larch 42 #:xyzzy 19) (). Whichever arguments
2577 are given as keywords are bound to values.
2578
2579 Optional and keyword arguments can also be given default values
2580 which they take on when they are not present in a call, by giving a
2581 two-item list in place of an optional argument, for example in:
2582 (lambda* (foo #&optional (bar 42) #&key (baz 73)) (list foo bar baz))
2583 foo is a fixed argument, bar is an optional argument with default
2584 value 42, and baz is a keyword argument with default value 73.
2585 Default value expressions are not evaluated unless they are needed
2586 and until the procedure is called.
2587
2588 lambda* now supports two more special parameter list keywords.
2589
2590 lambda*-defined procedures now throw an error by default if a
2591 keyword other than one of those specified is found in the actual
2592 passed arguments. However, specifying #&allow-other-keys
2593 immediately after the kyword argument declarations restores the
2594 previous behavior of ignoring unknown keywords. lambda* also now
2595 guarantees that if the same keyword is passed more than once, the
2596 last one passed is the one that takes effect. For example,
2597 ((lambda* (#&key (heads 0) (tails 0)) (display (list heads tails)))
2598 #:heads 37 #:tails 42 #:heads 99)
2599 would result in (99 47) being displayed.
2600
2601 #&rest is also now provided as a synonym for the dotted syntax rest
2602 argument. The argument lists (a . b) and (a #&rest b) are equivalent in
2603 all respects to lambda*. This is provided for more similarity to DSSSL,
2604 MIT-Scheme and Kawa among others, as well as for refugees from other
2605 Lisp dialects.
2606
2607Further documentation may be found in the optargs.scm file itself.
2608
2609The optional argument module also exports the macros `let-optional',
2610`let-optional*', `let-keywords', `let-keywords*' and `bound?'. These
2611are not documented here because they may be removed in the future, but
2612full documentation is still available in optargs.scm.
2613
2e132553
JB
2614** New syntax: and-let*
2615Guile now supports the `and-let*' form, described in the draft SRFI-2.
2616
2617Syntax: (land* (<clause> ...) <body> ...)
2618Each <clause> should have one of the following forms:
2619 (<variable> <expression>)
2620 (<expression>)
2621 <bound-variable>
2622Each <variable> or <bound-variable> should be an identifier. Each
2623<expression> should be a valid expression. The <body> should be a
2624possibly empty sequence of expressions, like the <body> of a
2625lambda form.
2626
2627Semantics: A LAND* expression is evaluated by evaluating the
2628<expression> or <bound-variable> of each of the <clause>s from
2629left to right. The value of the first <expression> or
2630<bound-variable> that evaluates to a false value is returned; the
2631remaining <expression>s and <bound-variable>s are not evaluated.
2632The <body> forms are evaluated iff all the <expression>s and
2633<bound-variable>s evaluate to true values.
2634
2635The <expression>s and the <body> are evaluated in an environment
2636binding each <variable> of the preceding (<variable> <expression>)
2637clauses to the value of the <expression>. Later bindings
2638shadow earlier bindings.
2639
2640Guile's and-let* macro was contributed by Michael Livshin.
2641
36d3d540
MD
2642** New sorting functions
2643
2644*** New function: sorted? SEQUENCE LESS?
ed8c8636
MD
2645Returns `#t' when the sequence argument is in non-decreasing order
2646according to LESS? (that is, there is no adjacent pair `... x y
2647...' for which `(less? y x)').
2648
2649Returns `#f' when the sequence contains at least one out-of-order
2650pair. It is an error if the sequence is neither a list nor a
2651vector.
2652
36d3d540 2653*** New function: merge LIST1 LIST2 LESS?
ed8c8636
MD
2654LIST1 and LIST2 are sorted lists.
2655Returns the sorted list of all elements in LIST1 and LIST2.
2656
2657Assume that the elements a and b1 in LIST1 and b2 in LIST2 are "equal"
2658in the sense that (LESS? x y) --> #f for x, y in {a, b1, b2},
2659and that a < b1 in LIST1. Then a < b1 < b2 in the result.
2660(Here "<" should read "comes before".)
2661
36d3d540 2662*** New procedure: merge! LIST1 LIST2 LESS?
ed8c8636
MD
2663Merges two lists, re-using the pairs of LIST1 and LIST2 to build
2664the result. If the code is compiled, and LESS? constructs no new
2665pairs, no pairs at all will be allocated. The first pair of the
2666result will be either the first pair of LIST1 or the first pair of
2667LIST2.
2668
36d3d540 2669*** New function: sort SEQUENCE LESS?
ed8c8636
MD
2670Accepts either a list or a vector, and returns a new sequence
2671which is sorted. The new sequence is the same type as the input.
2672Always `(sorted? (sort sequence less?) less?)'. The original
2673sequence is not altered in any way. The new sequence shares its
2674elements with the old one; no elements are copied.
2675
36d3d540 2676*** New procedure: sort! SEQUENCE LESS
ed8c8636
MD
2677Returns its sorted result in the original boxes. No new storage is
2678allocated at all. Proper usage: (set! slist (sort! slist <))
2679
36d3d540 2680*** New function: stable-sort SEQUENCE LESS?
ed8c8636
MD
2681Similar to `sort' but stable. That is, if "equal" elements are
2682ordered a < b in the original sequence, they will have the same order
2683in the result.
2684
36d3d540 2685*** New function: stable-sort! SEQUENCE LESS?
ed8c8636
MD
2686Similar to `sort!' but stable.
2687Uses temporary storage when sorting vectors.
2688
36d3d540 2689*** New functions: sort-list, sort-list!
ed8c8636
MD
2690Added for compatibility with scsh.
2691
36d3d540
MD
2692** New built-in random number support
2693
2694*** New function: random N [STATE]
3e8370c3
MD
2695Accepts a positive integer or real N and returns a number of the
2696same type between zero (inclusive) and N (exclusive). The values
2697returned have a uniform distribution.
2698
2699The optional argument STATE must be of the type produced by
416075f1
MD
2700`copy-random-state' or `seed->random-state'. It defaults to the value
2701of the variable `*random-state*'. This object is used to maintain the
2702state of the pseudo-random-number generator and is altered as a side
2703effect of the `random' operation.
3e8370c3 2704
36d3d540 2705*** New variable: *random-state*
3e8370c3
MD
2706Holds a data structure that encodes the internal state of the
2707random-number generator that `random' uses by default. The nature
2708of this data structure is implementation-dependent. It may be
2709printed out and successfully read back in, but may or may not
2710function correctly as a random-number state object in another
2711implementation.
2712
36d3d540 2713*** New function: copy-random-state [STATE]
3e8370c3
MD
2714Returns a new object of type suitable for use as the value of the
2715variable `*random-state*' and as a second argument to `random'.
2716If argument STATE is given, a copy of it is returned. Otherwise a
2717copy of `*random-state*' is returned.
416075f1 2718
36d3d540 2719*** New function: seed->random-state SEED
416075f1
MD
2720Returns a new object of type suitable for use as the value of the
2721variable `*random-state*' and as a second argument to `random'.
2722SEED is a string or a number. A new state is generated and
2723initialized using SEED.
3e8370c3 2724
36d3d540 2725*** New function: random:uniform [STATE]
3e8370c3
MD
2726Returns an uniformly distributed inexact real random number in the
2727range between 0 and 1.
2728
36d3d540 2729*** New procedure: random:solid-sphere! VECT [STATE]
3e8370c3
MD
2730Fills VECT with inexact real random numbers the sum of whose
2731squares is less than 1.0. Thinking of VECT as coordinates in
2732space of dimension N = `(vector-length VECT)', the coordinates are
2733uniformly distributed within the unit N-shere. The sum of the
2734squares of the numbers is returned. VECT can be either a vector
2735or a uniform vector of doubles.
2736
36d3d540 2737*** New procedure: random:hollow-sphere! VECT [STATE]
3e8370c3
MD
2738Fills VECT with inexact real random numbers the sum of whose squares
2739is equal to 1.0. Thinking of VECT as coordinates in space of
2740dimension n = `(vector-length VECT)', the coordinates are uniformly
2741distributed over the surface of the unit n-shere. VECT can be either
2742a vector or a uniform vector of doubles.
2743
36d3d540 2744*** New function: random:normal [STATE]
3e8370c3
MD
2745Returns an inexact real in a normal distribution with mean 0 and
2746standard deviation 1. For a normal distribution with mean M and
2747standard deviation D use `(+ M (* D (random:normal)))'.
2748
36d3d540 2749*** New procedure: random:normal-vector! VECT [STATE]
3e8370c3
MD
2750Fills VECT with inexact real random numbers which are independent and
2751standard normally distributed (i.e., with mean 0 and variance 1).
2752VECT can be either a vector or a uniform vector of doubles.
2753
36d3d540 2754*** New function: random:exp STATE
3e8370c3
MD
2755Returns an inexact real in an exponential distribution with mean 1.
2756For an exponential distribution with mean U use (* U (random:exp)).
2757
69c6acbb
JB
2758** The range of logand, logior, logxor, logtest, and logbit? have changed.
2759
2760These functions now operate on numbers in the range of a C unsigned
2761long.
2762
2763These functions used to operate on numbers in the range of a C signed
2764long; however, this seems inappropriate, because Guile integers don't
2765overflow.
2766
ba4ee0d6
MD
2767** New function: make-guardian
2768This is an implementation of guardians as described in
2769R. Kent Dybvig, Carl Bruggeman, and David Eby (1993) "Guardians in a
2770Generation-Based Garbage Collector" ACM SIGPLAN Conference on
2771Programming Language Design and Implementation, June 1993
2772ftp://ftp.cs.indiana.edu/pub/scheme-repository/doc/pubs/guardians.ps.gz
2773
88ceea5c
MD
2774** New functions: delq1!, delv1!, delete1!
2775These procedures behave similar to delq! and friends but delete only
2776one object if at all.
2777
55254a6a
MD
2778** New function: unread-string STRING PORT
2779Unread STRING to PORT, that is, push it back onto the port so that
2780next read operation will work on the pushed back characters.
2781
2782** unread-char can now be called multiple times
2783If unread-char is called multiple times, the unread characters will be
2784read again in last-in first-out order.
2785
9e97c52d
GH
2786** the procedures uniform-array-read! and uniform-array-write! now
2787work on any kind of port, not just ports which are open on a file.
2788
b074884f 2789** Now 'l' in a port mode requests line buffering.
9e97c52d 2790
69bc9ff3
GH
2791** The procedure truncate-file now works on string ports as well
2792as file ports. If the size argument is omitted, the current
1b9c3dae 2793file position is used.
9e97c52d 2794
c94577b4 2795** new procedure: seek PORT/FDES OFFSET WHENCE
9e97c52d
GH
2796The arguments are the same as for the old fseek procedure, but it
2797works on string ports as well as random-access file ports.
2798
2799** the fseek procedure now works on string ports, since it has been
c94577b4 2800redefined using seek.
9e97c52d
GH
2801
2802** the setvbuf procedure now uses a default size if mode is _IOFBF and
2803size is not supplied.
2804
2805** the newline procedure no longer flushes the port if it's not
2806line-buffered: previously it did if it was the current output port.
2807
2808** open-pipe and close-pipe are no longer primitive procedures, but
2809an emulation can be obtained using `(use-modules (ice-9 popen))'.
2810
2811** the freopen procedure has been removed.
2812
2813** new procedure: drain-input PORT
2814Drains PORT's read buffers (including any pushed-back characters)
2815and returns the contents as a single string.
2816
67ad463a 2817** New function: map-in-order PROC LIST1 LIST2 ...
d41b3904
MD
2818Version of `map' which guarantees that the procedure is applied to the
2819lists in serial order.
2820
67ad463a
MD
2821** Renamed `serial-array-copy!' and `serial-array-map!' to
2822`array-copy-in-order!' and `array-map-in-order!'. The old names are
2823now obsolete and will go away in release 1.5.
2824
cf7132b3 2825** New syntax: collect BODY1 ...
d41b3904
MD
2826Version of `begin' which returns a list of the results of the body
2827forms instead of the result of the last body form. In contrast to
cf7132b3 2828`begin', `collect' allows an empty body.
d41b3904 2829
e4eae9b1
MD
2830** New functions: read-history FILENAME, write-history FILENAME
2831Read/write command line history from/to file. Returns #t on success
2832and #f if an error occured.
2833
d21ffe26
JB
2834** `ls' and `lls' in module (ice-9 ls) now handle no arguments.
2835
2836These procedures return a list of definitions available in the specified
2837argument, a relative module reference. In the case of no argument,
2838`(current-module)' is now consulted for definitions to return, instead
2839of simply returning #f, the former behavior.
2840
f8c9d497
JB
2841** The #/ syntax for lists is no longer supported.
2842
2843Earlier versions of Scheme accepted this syntax, but printed a
2844warning.
2845
2846** Guile no longer consults the SCHEME_LOAD_PATH environment variable.
2847
2848Instead, you should set GUILE_LOAD_PATH to tell Guile where to find
2849modules.
2850
3ffc7a36
MD
2851* Changes to the gh_ interface
2852
2853** gh_scm2doubles
2854
2855Now takes a second argument which is the result array. If this
2856pointer is NULL, a new array is malloced (the old behaviour).
2857
2858** gh_chars2byvect, gh_shorts2svect, gh_floats2fvect, gh_scm2chars,
2859 gh_scm2shorts, gh_scm2longs, gh_scm2floats
2860
2861New functions.
2862
3e8370c3
MD
2863* Changes to the scm_ interface
2864
ad91d6c3
MD
2865** Function: scm_make_named_hook (char* name, int n_args)
2866
2867Creates a hook in the same way as make-hook above but also
2868binds a variable named NAME to it.
2869
2870This is the typical way of creating a hook from C code.
2871
ece41168
MD
2872Currently, the variable is created in the "current" module. This
2873might change when we get the new module system.
ad91d6c3 2874
16a5a9a4
MD
2875** The smob interface
2876
2877The interface for creating smobs has changed. For documentation, see
2878data-rep.info (made from guile-core/doc/data-rep.texi).
2879
2880*** Deprecated function: SCM scm_newsmob (scm_smobfuns *)
2881
2882>>> This function will be removed in 1.3.4. <<<
2883
2884It is replaced by:
2885
2886*** Function: SCM scm_make_smob_type (const char *name, scm_sizet size)
2887This function adds a new smob type, named NAME, with instance size
2888SIZE to the system. The return value is a tag that is used in
2889creating instances of the type. If SIZE is 0, then no memory will
2890be allocated when instances of the smob are created, and nothing
2891will be freed by the default free function.
2892
2893*** Function: void scm_set_smob_mark (long tc, SCM (*mark) (SCM))
2894This function sets the smob marking procedure for the smob type
2895specified by the tag TC. TC is the tag returned by
2896`scm_make_smob_type'.
2897
2898*** Function: void scm_set_smob_free (long tc, SCM (*mark) (SCM))
2899This function sets the smob freeing procedure for the smob type
2900specified by the tag TC. TC is the tag returned by
2901`scm_make_smob_type'.
2902
2903*** Function: void scm_set_smob_print (tc, print)
2904
2905 - Function: void scm_set_smob_print (long tc,
2906 scm_sizet (*print) (SCM,
2907 SCM,
2908 scm_print_state *))
2909
2910This function sets the smob printing procedure for the smob type
2911specified by the tag TC. TC is the tag returned by
2912`scm_make_smob_type'.
2913
2914*** Function: void scm_set_smob_equalp (long tc, SCM (*equalp) (SCM, SCM))
2915This function sets the smob equality-testing predicate for the
2916smob type specified by the tag TC. TC is the tag returned by
2917`scm_make_smob_type'.
2918
2919*** Macro: void SCM_NEWSMOB (SCM var, long tc, void *data)
2920Make VALUE contain a smob instance of the type with type code TC and
2921smob data DATA. VALUE must be previously declared as C type `SCM'.
2922
2923*** Macro: fn_returns SCM_RETURN_NEWSMOB (long tc, void *data)
2924This macro expands to a block of code that creates a smob instance
2925of the type with type code TC and smob data DATA, and returns that
2926`SCM' value. It should be the last piece of code in a block.
2927
9e97c52d
GH
2928** The interfaces for using I/O ports and implementing port types
2929(ptobs) have changed significantly. The new interface is based on
2930shared access to buffers and a new set of ptob procedures.
2931
16a5a9a4
MD
2932*** scm_newptob has been removed
2933
2934It is replaced by:
2935
2936*** Function: SCM scm_make_port_type (type_name, fill_buffer, write_flush)
2937
2938- Function: SCM scm_make_port_type (char *type_name,
2939 int (*fill_buffer) (SCM port),
2940 void (*write_flush) (SCM port));
2941
2942Similarly to the new smob interface, there is a set of function
2943setters by which the user can customize the behaviour of his port
544e9093 2944type. See ports.h (scm_set_port_XXX).
16a5a9a4 2945
9e97c52d
GH
2946** scm_strport_to_string: New function: creates a new string from
2947a string port's buffer.
2948
3e8370c3
MD
2949** Plug in interface for random number generators
2950The variable `scm_the_rng' in random.c contains a value and three
2951function pointers which together define the current random number
2952generator being used by the Scheme level interface and the random
2953number library functions.
2954
2955The user is free to replace the default generator with the generator
2956of his own choice.
2957
2958*** Variable: size_t scm_the_rng.rstate_size
2959The size of the random state type used by the current RNG
2960measured in chars.
2961
2962*** Function: unsigned long scm_the_rng.random_bits (scm_rstate *STATE)
2963Given the random STATE, return 32 random bits.
2964
2965*** Function: void scm_the_rng.init_rstate (scm_rstate *STATE, chars *S, int N)
2966Seed random state STATE using string S of length N.
2967
2968*** Function: scm_rstate *scm_the_rng.copy_rstate (scm_rstate *STATE)
2969Given random state STATE, return a malloced copy.
2970
2971** Default RNG
2972The default RNG is the MWC (Multiply With Carry) random number
2973generator described by George Marsaglia at the Department of
2974Statistics and Supercomputer Computations Research Institute, The
2975Florida State University (http://stat.fsu.edu/~geo).
2976
2977It uses 64 bits, has a period of 4578426017172946943 (4.6e18), and
2978passes all tests in the DIEHARD test suite
2979(http://stat.fsu.edu/~geo/diehard.html). The generation of 32 bits
2980costs one multiply and one add on platforms which either supports long
2981longs (gcc does this on most systems) or have 64 bit longs. The cost
2982is four multiply on other systems but this can be optimized by writing
2983scm_i_uniform32 in assembler.
2984
2985These functions are provided through the scm_the_rng interface for use
2986by libguile and the application.
2987
2988*** Function: unsigned long scm_i_uniform32 (scm_i_rstate *STATE)
2989Given the random STATE, return 32 random bits.
2990Don't use this function directly. Instead go through the plugin
2991interface (see "Plug in interface" above).
2992
2993*** Function: void scm_i_init_rstate (scm_i_rstate *STATE, char *SEED, int N)
2994Initialize STATE using SEED of length N.
2995
2996*** Function: scm_i_rstate *scm_i_copy_rstate (scm_i_rstate *STATE)
2997Return a malloc:ed copy of STATE. This function can easily be re-used
2998in the interfaces to other RNGs.
2999
3000** Random number library functions
3001These functions use the current RNG through the scm_the_rng interface.
3002It might be a good idea to use these functions from your C code so
3003that only one random generator is used by all code in your program.
3004
259529f2 3005The default random state is stored in:
3e8370c3
MD
3006
3007*** Variable: SCM scm_var_random_state
3008Contains the vcell of the Scheme variable "*random-state*" which is
3009used as default state by all random number functions in the Scheme
3010level interface.
3011
3012Example:
3013
259529f2 3014 double x = scm_c_uniform01 (SCM_RSTATE (SCM_CDR (scm_var_random_state)));
3e8370c3 3015
259529f2
MD
3016*** Function: scm_rstate *scm_c_default_rstate (void)
3017This is a convenience function which returns the value of
3018scm_var_random_state. An error message is generated if this value
3019isn't a random state.
3020
3021*** Function: scm_rstate *scm_c_make_rstate (char *SEED, int LENGTH)
3022Make a new random state from the string SEED of length LENGTH.
3023
3024It is generally not a good idea to use multiple random states in a
3025program. While subsequent random numbers generated from one random
3026state are guaranteed to be reasonably independent, there is no such
3027guarantee for numbers generated from different random states.
3028
3029*** Macro: unsigned long scm_c_uniform32 (scm_rstate *STATE)
3030Return 32 random bits.
3031
3032*** Function: double scm_c_uniform01 (scm_rstate *STATE)
3e8370c3
MD
3033Return a sample from the uniform(0,1) distribution.
3034
259529f2 3035*** Function: double scm_c_normal01 (scm_rstate *STATE)
3e8370c3
MD
3036Return a sample from the normal(0,1) distribution.
3037
259529f2 3038*** Function: double scm_c_exp1 (scm_rstate *STATE)
3e8370c3
MD
3039Return a sample from the exp(1) distribution.
3040
259529f2
MD
3041*** Function: unsigned long scm_c_random (scm_rstate *STATE, unsigned long M)
3042Return a sample from the discrete uniform(0,M) distribution.
3043
3044*** Function: SCM scm_c_random_bignum (scm_rstate *STATE, SCM M)
3e8370c3 3045Return a sample from the discrete uniform(0,M) distribution.
259529f2 3046M must be a bignum object. The returned value may be an INUM.
3e8370c3 3047
9e97c52d 3048
f3227c7a 3049\f
d23bbf3e 3050Changes in Guile 1.3 (released Monday, October 19, 1998):
c484bf7f
JB
3051
3052* Changes to the distribution
3053
e2d6569c
JB
3054** We renamed the SCHEME_LOAD_PATH environment variable to GUILE_LOAD_PATH.
3055To avoid conflicts, programs should name environment variables after
3056themselves, except when there's a common practice establishing some
3057other convention.
3058
3059For now, Guile supports both GUILE_LOAD_PATH and SCHEME_LOAD_PATH,
3060giving the former precedence, and printing a warning message if the
3061latter is set. Guile 1.4 will not recognize SCHEME_LOAD_PATH at all.
3062
3063** The header files related to multi-byte characters have been removed.
3064They were: libguile/extchrs.h and libguile/mbstrings.h. Any C code
3065which referred to these explicitly will probably need to be rewritten,
3066since the support for the variant string types has been removed; see
3067below.
3068
3069** The header files append.h and sequences.h have been removed. These
3070files implemented non-R4RS operations which would encourage
3071non-portable programming style and less easy-to-read code.
3a97e020 3072
c484bf7f
JB
3073* Changes to the stand-alone interpreter
3074
2e368582 3075** New procedures have been added to implement a "batch mode":
ec4ab4fd 3076
2e368582 3077*** Function: batch-mode?
ec4ab4fd
GH
3078
3079 Returns a boolean indicating whether the interpreter is in batch
3080 mode.
3081
2e368582 3082*** Function: set-batch-mode?! ARG
ec4ab4fd
GH
3083
3084 If ARG is true, switches the interpreter to batch mode. The `#f'
3085 case has not been implemented.
3086
2e368582
JB
3087** Guile now provides full command-line editing, when run interactively.
3088To use this feature, you must have the readline library installed.
3089The Guile build process will notice it, and automatically include
3090support for it.
3091
3092The readline library is available via anonymous FTP from any GNU
3093mirror site; the canonical location is "ftp://prep.ai.mit.edu/pub/gnu".
3094
a5d6d578
MD
3095** the-last-stack is now a fluid.
3096
c484bf7f
JB
3097* Changes to the procedure for linking libguile with your programs
3098
71f20534 3099** You can now use the `guile-config' utility to build programs that use Guile.
2e368582 3100
2adfe1c0 3101Guile now includes a command-line utility called `guile-config', which
71f20534
JB
3102can provide information about how to compile and link programs that
3103use Guile.
3104
3105*** `guile-config compile' prints any C compiler flags needed to use Guile.
3106You should include this command's output on the command line you use
3107to compile C or C++ code that #includes the Guile header files. It's
3108usually just a `-I' flag to help the compiler find the Guile headers.
3109
3110
3111*** `guile-config link' prints any linker flags necessary to link with Guile.
8aa5c148 3112
71f20534 3113This command writes to its standard output a list of flags which you
8aa5c148
JB
3114must pass to the linker to link your code against the Guile library.
3115The flags include '-lguile' itself, any other libraries the Guile
3116library depends upon, and any `-L' flags needed to help the linker
3117find those libraries.
2e368582
JB
3118
3119For example, here is a Makefile rule that builds a program named 'foo'
3120from the object files ${FOO_OBJECTS}, and links them against Guile:
3121
3122 foo: ${FOO_OBJECTS}
2adfe1c0 3123 ${CC} ${CFLAGS} ${FOO_OBJECTS} `guile-config link` -o foo
2e368582 3124
e2d6569c
JB
3125Previous Guile releases recommended that you use autoconf to detect
3126which of a predefined set of libraries were present on your system.
2adfe1c0 3127It is more robust to use `guile-config', since it records exactly which
e2d6569c
JB
3128libraries the installed Guile library requires.
3129
2adfe1c0
JB
3130This was originally called `build-guile', but was renamed to
3131`guile-config' before Guile 1.3 was released, to be consistent with
3132the analogous script for the GTK+ GUI toolkit, which is called
3133`gtk-config'.
3134
2e368582 3135
8aa5c148
JB
3136** Use the GUILE_FLAGS macro in your configure.in file to find Guile.
3137
3138If you are using the GNU autoconf package to configure your program,
3139you can use the GUILE_FLAGS autoconf macro to call `guile-config'
3140(described above) and gather the necessary values for use in your
3141Makefiles.
3142
3143The GUILE_FLAGS macro expands to configure script code which runs the
3144`guile-config' script, to find out where Guile's header files and
3145libraries are installed. It sets two variables, marked for
3146substitution, as by AC_SUBST.
3147
3148 GUILE_CFLAGS --- flags to pass to a C or C++ compiler to build
3149 code that uses Guile header files. This is almost always just a
3150 -I flag.
3151
3152 GUILE_LDFLAGS --- flags to pass to the linker to link a
3153 program against Guile. This includes `-lguile' for the Guile
3154 library itself, any libraries that Guile itself requires (like
3155 -lqthreads), and so on. It may also include a -L flag to tell the
3156 compiler where to find the libraries.
3157
3158GUILE_FLAGS is defined in the file guile.m4, in the top-level
3159directory of the Guile distribution. You can copy it into your
3160package's aclocal.m4 file, and then use it in your configure.in file.
3161
3162If you are using the `aclocal' program, distributed with GNU automake,
3163to maintain your aclocal.m4 file, the Guile installation process
3164installs guile.m4 where aclocal will find it. All you need to do is
3165use GUILE_FLAGS in your configure.in file, and then run `aclocal';
3166this will copy the definition of GUILE_FLAGS into your aclocal.m4
3167file.
3168
3169
c484bf7f 3170* Changes to Scheme functions and syntax
7ad3c1e7 3171
02755d59 3172** Multi-byte strings have been removed, as have multi-byte and wide
e2d6569c
JB
3173ports. We felt that these were the wrong approach to
3174internationalization support.
02755d59 3175
2e368582
JB
3176** New function: readline [PROMPT]
3177Read a line from the terminal, and allow the user to edit it,
3178prompting with PROMPT. READLINE provides a large set of Emacs-like
3179editing commands, lets the user recall previously typed lines, and
3180works on almost every kind of terminal, including dumb terminals.
3181
3182READLINE assumes that the cursor is at the beginning of the line when
3183it is invoked. Thus, you can't print a prompt yourself, and then call
3184READLINE; you need to package up your prompt as a string, pass it to
3185the function, and let READLINE print the prompt itself. This is
3186because READLINE needs to know the prompt's screen width.
3187
8cd57bd0
JB
3188For Guile to provide this function, you must have the readline
3189library, version 2.1 or later, installed on your system. Readline is
3190available via anonymous FTP from prep.ai.mit.edu in pub/gnu, or from
3191any GNU mirror site.
2e368582
JB
3192
3193See also ADD-HISTORY function.
3194
3195** New function: add-history STRING
3196Add STRING as the most recent line in the history used by the READLINE
3197command. READLINE does not add lines to the history itself; you must
3198call ADD-HISTORY to make previous input available to the user.
3199
8cd57bd0
JB
3200** The behavior of the read-line function has changed.
3201
3202This function now uses standard C library functions to read the line,
3203for speed. This means that it doesn not respect the value of
3204scm-line-incrementors; it assumes that lines are delimited with
3205#\newline.
3206
3207(Note that this is read-line, the function that reads a line of text
3208from a port, not readline, the function that reads a line from a
3209terminal, providing full editing capabilities.)
3210
1a0106ef
JB
3211** New module (ice-9 getopt-gnu-style): Parse command-line arguments.
3212
3213This module provides some simple argument parsing. It exports one
3214function:
3215
3216Function: getopt-gnu-style ARG-LS
3217 Parse a list of program arguments into an alist of option
3218 descriptions.
3219
3220 Each item in the list of program arguments is examined to see if
3221 it meets the syntax of a GNU long-named option. An argument like
3222 `--MUMBLE' produces an element of the form (MUMBLE . #t) in the
3223 returned alist, where MUMBLE is a keyword object with the same
3224 name as the argument. An argument like `--MUMBLE=FROB' produces
3225 an element of the form (MUMBLE . FROB), where FROB is a string.
3226
3227 As a special case, the returned alist also contains a pair whose
3228 car is the symbol `rest'. The cdr of this pair is a list
3229 containing all the items in the argument list that are not options
3230 of the form mentioned above.
3231
3232 The argument `--' is treated specially: all items in the argument
3233 list appearing after such an argument are not examined, and are
3234 returned in the special `rest' list.
3235
3236 This function does not parse normal single-character switches.
3237 You will need to parse them out of the `rest' list yourself.
3238
8cd57bd0
JB
3239** The read syntax for byte vectors and short vectors has changed.
3240
3241Instead of #bytes(...), write #y(...).
3242
3243Instead of #short(...), write #h(...).
3244
3245This may seem nutty, but, like the other uniform vectors, byte vectors
3246and short vectors want to have the same print and read syntax (and,
3247more basic, want to have read syntax!). Changing the read syntax to
3248use multiple characters after the hash sign breaks with the
3249conventions used in R5RS and the conventions used for the other
3250uniform vectors. It also introduces complexity in the current reader,
3251both on the C and Scheme levels. (The Right solution is probably to
3252change the syntax and prototypes for uniform vectors entirely.)
3253
3254
3255** The new module (ice-9 session) provides useful interactive functions.
3256
3257*** New procedure: (apropos REGEXP OPTION ...)
3258
3259Display a list of top-level variables whose names match REGEXP, and
3260the modules they are imported from. Each OPTION should be one of the
3261following symbols:
3262
3263 value --- Show the value of each matching variable.
3264 shadow --- Show bindings shadowed by subsequently imported modules.
3265 full --- Same as both `shadow' and `value'.
3266
3267For example:
3268
3269 guile> (apropos "trace" 'full)
3270 debug: trace #<procedure trace args>
3271 debug: untrace #<procedure untrace args>
3272 the-scm-module: display-backtrace #<compiled-closure #<primitive-procedure gsubr-apply>>
3273 the-scm-module: before-backtrace-hook ()
3274 the-scm-module: backtrace #<primitive-procedure backtrace>
3275 the-scm-module: after-backtrace-hook ()
3276 the-scm-module: has-shown-backtrace-hint? #f
3277 guile>
3278
3279** There are new functions and syntax for working with macros.
3280
3281Guile implements macros as a special object type. Any variable whose
3282top-level binding is a macro object acts as a macro. The macro object
3283specifies how the expression should be transformed before evaluation.
3284
3285*** Macro objects now print in a reasonable way, resembling procedures.
3286
3287*** New function: (macro? OBJ)
3288True iff OBJ is a macro object.
3289
3290*** New function: (primitive-macro? OBJ)
3291Like (macro? OBJ), but true only if OBJ is one of the Guile primitive
3292macro transformers, implemented in eval.c rather than Scheme code.
3293
dbdd0c16
JB
3294Why do we have this function?
3295- For symmetry with procedure? and primitive-procedure?,
3296- to allow custom print procedures to tell whether a macro is
3297 primitive, and display it differently, and
3298- to allow compilers and user-written evaluators to distinguish
3299 builtin special forms from user-defined ones, which could be
3300 compiled.
3301
8cd57bd0
JB
3302*** New function: (macro-type OBJ)
3303Return a value indicating what kind of macro OBJ is. Possible return
3304values are:
3305
3306 The symbol `syntax' --- a macro created by procedure->syntax.
3307 The symbol `macro' --- a macro created by procedure->macro.
3308 The symbol `macro!' --- a macro created by procedure->memoizing-macro.
3309 The boolean #f --- if OBJ is not a macro object.
3310
3311*** New function: (macro-name MACRO)
3312Return the name of the macro object MACRO's procedure, as returned by
3313procedure-name.
3314
3315*** New function: (macro-transformer MACRO)
3316Return the transformer procedure for MACRO.
3317
3318*** New syntax: (use-syntax MODULE ... TRANSFORMER)
3319
3320Specify a new macro expander to use in the current module. Each
3321MODULE is a module name, with the same meaning as in the `use-modules'
3322form; each named module's exported bindings are added to the current
3323top-level environment. TRANSFORMER is an expression evaluated in the
3324resulting environment which must yield a procedure to use as the
3325module's eval transformer: every expression evaluated in this module
3326is passed to this function, and the result passed to the Guile
3327interpreter.
3328
3329*** macro-eval! is removed. Use local-eval instead.
29521173 3330
8d9dcb3c
MV
3331** Some magic has been added to the printer to better handle user
3332written printing routines (like record printers, closure printers).
3333
3334The problem is that these user written routines must have access to
7fbd77df 3335the current `print-state' to be able to handle fancy things like
8d9dcb3c
MV
3336detection of circular references. These print-states have to be
3337passed to the builtin printing routines (display, write, etc) to
3338properly continue the print chain.
3339
3340We didn't want to change all existing print code so that it
8cd57bd0 3341explicitly passes thru a print state in addition to a port. Instead,
8d9dcb3c
MV
3342we extented the possible values that the builtin printing routines
3343accept as a `port'. In addition to a normal port, they now also take
3344a pair of a normal port and a print-state. Printing will go to the
3345port and the print-state will be used to control the detection of
3346circular references, etc. If the builtin function does not care for a
3347print-state, it is simply ignored.
3348
3349User written callbacks are now called with such a pair as their
3350`port', but because every function now accepts this pair as a PORT
3351argument, you don't have to worry about that. In fact, it is probably
3352safest to not check for these pairs.
3353
3354However, it is sometimes necessary to continue a print chain on a
3355different port, for example to get a intermediate string
3356representation of the printed value, mangle that string somehow, and
3357then to finally print the mangled string. Use the new function
3358
3359 inherit-print-state OLD-PORT NEW-PORT
3360
3361for this. It constructs a new `port' that prints to NEW-PORT but
3362inherits the print-state of OLD-PORT.
3363
ef1ea498
MD
3364** struct-vtable-offset renamed to vtable-offset-user
3365
3366** New constants: vtable-index-layout, vtable-index-vtable, vtable-index-printer
3367
e478dffa
MD
3368** There is now a third optional argument to make-vtable-vtable
3369 (and fourth to make-struct) when constructing new types (vtables).
3370 This argument initializes field vtable-index-printer of the vtable.
ef1ea498 3371
4851dc57
MV
3372** The detection of circular references has been extended to structs.
3373That is, a structure that -- in the process of being printed -- prints
3374itself does not lead to infinite recursion.
3375
3376** There is now some basic support for fluids. Please read
3377"libguile/fluid.h" to find out more. It is accessible from Scheme with
3378the following functions and macros:
3379
9c3fb66f
MV
3380Function: make-fluid
3381
3382 Create a new fluid object. Fluids are not special variables or
3383 some other extension to the semantics of Scheme, but rather
3384 ordinary Scheme objects. You can store them into variables (that
3385 are still lexically scoped, of course) or into any other place you
3386 like. Every fluid has a initial value of `#f'.
04c76b58 3387
9c3fb66f 3388Function: fluid? OBJ
04c76b58 3389
9c3fb66f 3390 Test whether OBJ is a fluid.
04c76b58 3391
9c3fb66f
MV
3392Function: fluid-ref FLUID
3393Function: fluid-set! FLUID VAL
04c76b58
MV
3394
3395 Access/modify the fluid FLUID. Modifications are only visible
3396 within the current dynamic root (that includes threads).
3397
9c3fb66f
MV
3398Function: with-fluids* FLUIDS VALUES THUNK
3399
3400 FLUIDS is a list of fluids and VALUES a corresponding list of
3401 values for these fluids. Before THUNK gets called the values are
3402 installed in the fluids and the old values of the fluids are
3403 saved in the VALUES list. When the flow of control leaves THUNK
3404 or reenters it, the values get swapped again. You might think of
3405 this as a `safe-fluid-excursion'. Note that the VALUES list is
3406 modified by `with-fluids*'.
3407
3408Macro: with-fluids ((FLUID VALUE) ...) FORM ...
3409
3410 The same as `with-fluids*' but with a different syntax. It looks
3411 just like `let', but both FLUID and VALUE are evaluated. Remember,
3412 fluids are not special variables but ordinary objects. FLUID
3413 should evaluate to a fluid.
04c76b58 3414
e2d6569c 3415** Changes to system call interfaces:
64d01d13 3416
e2d6569c 3417*** close-port, close-input-port and close-output-port now return a
64d01d13
GH
3418boolean instead of an `unspecified' object. #t means that the port
3419was successfully closed, while #f means it was already closed. It is
3420also now possible for these procedures to raise an exception if an
3421error occurs (some errors from write can be delayed until close.)
3422
e2d6569c 3423*** the first argument to chmod, fcntl, ftell and fseek can now be a
6afcd3b2
GH
3424file descriptor.
3425
e2d6569c 3426*** the third argument to fcntl is now optional.
6afcd3b2 3427
e2d6569c 3428*** the first argument to chown can now be a file descriptor or a port.
6afcd3b2 3429
e2d6569c 3430*** the argument to stat can now be a port.
6afcd3b2 3431
e2d6569c 3432*** The following new procedures have been added (most use scsh
64d01d13
GH
3433interfaces):
3434
e2d6569c 3435*** procedure: close PORT/FD
ec4ab4fd
GH
3436 Similar to close-port (*note close-port: Closing Ports.), but also
3437 works on file descriptors. A side effect of closing a file
3438 descriptor is that any ports using that file descriptor are moved
3439 to a different file descriptor and have their revealed counts set
3440 to zero.
3441
e2d6569c 3442*** procedure: port->fdes PORT
ec4ab4fd
GH
3443 Returns the integer file descriptor underlying PORT. As a side
3444 effect the revealed count of PORT is incremented.
3445
e2d6569c 3446*** procedure: fdes->ports FDES
ec4ab4fd
GH
3447 Returns a list of existing ports which have FDES as an underlying
3448 file descriptor, without changing their revealed counts.
3449
e2d6569c 3450*** procedure: fdes->inport FDES
ec4ab4fd
GH
3451 Returns an existing input port which has FDES as its underlying
3452 file descriptor, if one exists, and increments its revealed count.
3453 Otherwise, returns a new input port with a revealed count of 1.
3454
e2d6569c 3455*** procedure: fdes->outport FDES
ec4ab4fd
GH
3456 Returns an existing output port which has FDES as its underlying
3457 file descriptor, if one exists, and increments its revealed count.
3458 Otherwise, returns a new output port with a revealed count of 1.
3459
3460 The next group of procedures perform a `dup2' system call, if NEWFD
3461(an integer) is supplied, otherwise a `dup'. The file descriptor to be
3462duplicated can be supplied as an integer or contained in a port. The
64d01d13
GH
3463type of value returned varies depending on which procedure is used.
3464
ec4ab4fd
GH
3465 All procedures also have the side effect when performing `dup2' that
3466any ports using NEWFD are moved to a different file descriptor and have
64d01d13
GH
3467their revealed counts set to zero.
3468
e2d6569c 3469*** procedure: dup->fdes PORT/FD [NEWFD]
ec4ab4fd 3470 Returns an integer file descriptor.
64d01d13 3471
e2d6569c 3472*** procedure: dup->inport PORT/FD [NEWFD]
ec4ab4fd 3473 Returns a new input port using the new file descriptor.
64d01d13 3474
e2d6569c 3475*** procedure: dup->outport PORT/FD [NEWFD]
ec4ab4fd 3476 Returns a new output port using the new file descriptor.
64d01d13 3477
e2d6569c 3478*** procedure: dup PORT/FD [NEWFD]
ec4ab4fd
GH
3479 Returns a new port if PORT/FD is a port, with the same mode as the
3480 supplied port, otherwise returns an integer file descriptor.
64d01d13 3481
e2d6569c 3482*** procedure: dup->port PORT/FD MODE [NEWFD]
ec4ab4fd
GH
3483 Returns a new port using the new file descriptor. MODE supplies a
3484 mode string for the port (*note open-file: File Ports.).
64d01d13 3485
e2d6569c 3486*** procedure: setenv NAME VALUE
ec4ab4fd
GH
3487 Modifies the environment of the current process, which is also the
3488 default environment inherited by child processes.
64d01d13 3489
ec4ab4fd
GH
3490 If VALUE is `#f', then NAME is removed from the environment.
3491 Otherwise, the string NAME=VALUE is added to the environment,
3492 replacing any existing string with name matching NAME.
64d01d13 3493
ec4ab4fd 3494 The return value is unspecified.
956055a9 3495
e2d6569c 3496*** procedure: truncate-file OBJ SIZE
6afcd3b2
GH
3497 Truncates the file referred to by OBJ to at most SIZE bytes. OBJ
3498 can be a string containing a file name or an integer file
3499 descriptor or port open for output on the file. The underlying
3500 system calls are `truncate' and `ftruncate'.
3501
3502 The return value is unspecified.
3503
e2d6569c 3504*** procedure: setvbuf PORT MODE [SIZE]
7a6f1ffa
GH
3505 Set the buffering mode for PORT. MODE can be:
3506 `_IONBF'
3507 non-buffered
3508
3509 `_IOLBF'
3510 line buffered
3511
3512 `_IOFBF'
3513 block buffered, using a newly allocated buffer of SIZE bytes.
3514 However if SIZE is zero or unspecified, the port will be made
3515 non-buffered.
3516
3517 This procedure should not be used after I/O has been performed with
3518 the port.
3519
3520 Ports are usually block buffered by default, with a default buffer
3521 size. Procedures e.g., *Note open-file: File Ports, which accept a
3522 mode string allow `0' to be added to request an unbuffered port.
3523
e2d6569c 3524*** procedure: fsync PORT/FD
6afcd3b2
GH
3525 Copies any unwritten data for the specified output file descriptor
3526 to disk. If PORT/FD is a port, its buffer is flushed before the
3527 underlying file descriptor is fsync'd. The return value is
3528 unspecified.
3529
e2d6569c 3530*** procedure: open-fdes PATH FLAGS [MODES]
6afcd3b2
GH
3531 Similar to `open' but returns a file descriptor instead of a port.
3532
e2d6569c 3533*** procedure: execle PATH ENV [ARG] ...
6afcd3b2
GH
3534 Similar to `execl', but the environment of the new process is
3535 specified by ENV, which must be a list of strings as returned by
3536 the `environ' procedure.
3537
3538 This procedure is currently implemented using the `execve' system
3539 call, but we call it `execle' because of its Scheme calling
3540 interface.
3541
e2d6569c 3542*** procedure: strerror ERRNO
ec4ab4fd
GH
3543 Returns the Unix error message corresponding to ERRNO, an integer.
3544
e2d6569c 3545*** procedure: primitive-exit [STATUS]
6afcd3b2
GH
3546 Terminate the current process without unwinding the Scheme stack.
3547 This is would typically be useful after a fork. The exit status
3548 is STATUS if supplied, otherwise zero.
3549
e2d6569c 3550*** procedure: times
6afcd3b2
GH
3551 Returns an object with information about real and processor time.
3552 The following procedures accept such an object as an argument and
3553 return a selected component:
3554
3555 `tms:clock'
3556 The current real time, expressed as time units relative to an
3557 arbitrary base.
3558
3559 `tms:utime'
3560 The CPU time units used by the calling process.
3561
3562 `tms:stime'
3563 The CPU time units used by the system on behalf of the
3564 calling process.
3565
3566 `tms:cutime'
3567 The CPU time units used by terminated child processes of the
3568 calling process, whose status has been collected (e.g., using
3569 `waitpid').
3570
3571 `tms:cstime'
3572 Similarly, the CPU times units used by the system on behalf of
3573 terminated child processes.
7ad3c1e7 3574
e2d6569c
JB
3575** Removed: list-length
3576** Removed: list-append, list-append!
3577** Removed: list-reverse, list-reverse!
3578
3579** array-map renamed to array-map!
3580
3581** serial-array-map renamed to serial-array-map!
3582
660f41fa
MD
3583** catch doesn't take #f as first argument any longer
3584
3585Previously, it was possible to pass #f instead of a key to `catch'.
3586That would cause `catch' to pass a jump buffer object to the procedure
3587passed as second argument. The procedure could then use this jump
3588buffer objekt as an argument to throw.
3589
3590This mechanism has been removed since its utility doesn't motivate the
3591extra complexity it introduces.
3592
332d00f6
JB
3593** The `#/' notation for lists now provokes a warning message from Guile.
3594This syntax will be removed from Guile in the near future.
3595
3596To disable the warning message, set the GUILE_HUSH environment
3597variable to any non-empty value.
3598
8cd57bd0
JB
3599** The newline character now prints as `#\newline', following the
3600normal Scheme notation, not `#\nl'.
3601
c484bf7f
JB
3602* Changes to the gh_ interface
3603
8986901b
JB
3604** The gh_enter function now takes care of loading the Guile startup files.
3605gh_enter works by calling scm_boot_guile; see the remarks below.
3606
5424b4f7
MD
3607** Function: void gh_write (SCM x)
3608
3609Write the printed representation of the scheme object x to the current
3610output port. Corresponds to the scheme level `write'.
3611
3a97e020
MD
3612** gh_list_length renamed to gh_length.
3613
8d6787b6
MG
3614** vector handling routines
3615
3616Several major changes. In particular, gh_vector() now resembles
3617(vector ...) (with a caveat -- see manual), and gh_make_vector() now
956328d2
MG
3618exists and behaves like (make-vector ...). gh_vset() and gh_vref()
3619have been renamed gh_vector_set_x() and gh_vector_ref(). Some missing
8d6787b6
MG
3620vector-related gh_ functions have been implemented.
3621
7fee59bd
MG
3622** pair and list routines
3623
3624Implemented several of the R4RS pair and list functions that were
3625missing.
3626
171422a9
MD
3627** gh_scm2doubles, gh_doubles2scm, gh_doubles2dvect
3628
3629New function. Converts double arrays back and forth between Scheme
3630and C.
3631
c484bf7f
JB
3632* Changes to the scm_ interface
3633
8986901b
JB
3634** The function scm_boot_guile now takes care of loading the startup files.
3635
3636Guile's primary initialization function, scm_boot_guile, now takes
3637care of loading `boot-9.scm', in the `ice-9' module, to initialize
3638Guile, define the module system, and put together some standard
3639bindings. It also loads `init.scm', which is intended to hold
3640site-specific initialization code.
3641
3642Since Guile cannot operate properly until boot-9.scm is loaded, there
3643is no reason to separate loading boot-9.scm from Guile's other
3644initialization processes.
3645
3646This job used to be done by scm_compile_shell_switches, which didn't
3647make much sense; in particular, it meant that people using Guile for
3648non-shell-like applications had to jump through hoops to get Guile
3649initialized properly.
3650
3651** The function scm_compile_shell_switches no longer loads the startup files.
3652Now, Guile always loads the startup files, whenever it is initialized;
3653see the notes above for scm_boot_guile and scm_load_startup_files.
3654
3655** Function: scm_load_startup_files
3656This new function takes care of loading Guile's initialization file
3657(`boot-9.scm'), and the site initialization file, `init.scm'. Since
3658this is always called by the Guile initialization process, it's
3659probably not too useful to call this yourself, but it's there anyway.
3660
87148d9e
JB
3661** The semantics of smob marking have changed slightly.
3662
3663The smob marking function (the `mark' member of the scm_smobfuns
3664structure) is no longer responsible for setting the mark bit on the
3665smob. The generic smob handling code in the garbage collector will
3666set this bit. The mark function need only ensure that any other
3667objects the smob refers to get marked.
3668
3669Note that this change means that the smob's GC8MARK bit is typically
3670already set upon entry to the mark function. Thus, marking functions
3671which look like this:
3672
3673 {
3674 if (SCM_GC8MARKP (ptr))
3675 return SCM_BOOL_F;
3676 SCM_SETGC8MARK (ptr);
3677 ... mark objects to which the smob refers ...
3678 }
3679
3680are now incorrect, since they will return early, and fail to mark any
3681other objects the smob refers to. Some code in the Guile library used
3682to work this way.
3683
1cf84ea5
JB
3684** The semantics of the I/O port functions in scm_ptobfuns have changed.
3685
3686If you have implemented your own I/O port type, by writing the
3687functions required by the scm_ptobfuns and then calling scm_newptob,
3688you will need to change your functions slightly.
3689
3690The functions in a scm_ptobfuns structure now expect the port itself
3691as their argument; they used to expect the `stream' member of the
3692port's scm_port_table structure. This allows functions in an
3693scm_ptobfuns structure to easily access the port's cell (and any flags
3694it its CAR), and the port's scm_port_table structure.
3695
3696Guile now passes the I/O port itself as the `port' argument in the
3697following scm_ptobfuns functions:
3698
3699 int (*free) (SCM port);
3700 int (*fputc) (int, SCM port);
3701 int (*fputs) (char *, SCM port);
3702 scm_sizet (*fwrite) SCM_P ((char *ptr,
3703 scm_sizet size,
3704 scm_sizet nitems,
3705 SCM port));
3706 int (*fflush) (SCM port);
3707 int (*fgetc) (SCM port);
3708 int (*fclose) (SCM port);
3709
3710The interfaces to the `mark', `print', `equalp', and `fgets' methods
3711are unchanged.
3712
3713If you have existing code which defines its own port types, it is easy
3714to convert your code to the new interface; simply apply SCM_STREAM to
3715the port argument to yield the value you code used to expect.
3716
3717Note that since both the port and the stream have the same type in the
3718C code --- they are both SCM values --- the C compiler will not remind
3719you if you forget to update your scm_ptobfuns functions.
3720
3721
933a7411
MD
3722** Function: int scm_internal_select (int fds,
3723 SELECT_TYPE *rfds,
3724 SELECT_TYPE *wfds,
3725 SELECT_TYPE *efds,
3726 struct timeval *timeout);
3727
3728This is a replacement for the `select' function provided by the OS.
3729It enables I/O blocking and sleeping to happen for one cooperative
3730thread without blocking other threads. It also avoids busy-loops in
3731these situations. It is intended that all I/O blocking and sleeping
3732will finally go through this function. Currently, this function is
3733only available on systems providing `gettimeofday' and `select'.
3734
5424b4f7
MD
3735** Function: SCM scm_internal_stack_catch (SCM tag,
3736 scm_catch_body_t body,
3737 void *body_data,
3738 scm_catch_handler_t handler,
3739 void *handler_data)
3740
3741A new sibling to the other two C level `catch' functions
3742scm_internal_catch and scm_internal_lazy_catch. Use it if you want
3743the stack to be saved automatically into the variable `the-last-stack'
3744(scm_the_last_stack_var) on error. This is necessary if you want to
3745use advanced error reporting, such as calling scm_display_error and
3746scm_display_backtrace. (They both take a stack object as argument.)
3747
df366c26
MD
3748** Function: SCM scm_spawn_thread (scm_catch_body_t body,
3749 void *body_data,
3750 scm_catch_handler_t handler,
3751 void *handler_data)
3752
3753Spawns a new thread. It does a job similar to
3754scm_call_with_new_thread but takes arguments more suitable when
3755spawning threads from application C code.
3756
88482b31
MD
3757** The hook scm_error_callback has been removed. It was originally
3758intended as a way for the user to install his own error handler. But
3759that method works badly since it intervenes between throw and catch,
3760thereby changing the semantics of expressions like (catch #t ...).
3761The correct way to do it is to use one of the C level catch functions
3762in throw.c: scm_internal_catch/lazy_catch/stack_catch.
3763
3a97e020
MD
3764** Removed functions:
3765
3766scm_obj_length, scm_list_length, scm_list_append, scm_list_append_x,
3767scm_list_reverse, scm_list_reverse_x
3768
3769** New macros: SCM_LISTn where n is one of the integers 0-9.
3770
3771These can be used for pretty list creation from C. The idea is taken
3772from Erick Gallesio's STk.
3773
298aa6e3
MD
3774** scm_array_map renamed to scm_array_map_x
3775
527da704
MD
3776** mbstrings are now removed
3777
3778This means that the type codes scm_tc7_mb_string and
3779scm_tc7_mb_substring has been removed.
3780
8cd57bd0
JB
3781** scm_gen_putc, scm_gen_puts, scm_gen_write, and scm_gen_getc have changed.
3782
3783Since we no longer support multi-byte strings, these I/O functions
3784have been simplified, and renamed. Here are their old names, and
3785their new names and arguments:
3786
3787scm_gen_putc -> void scm_putc (int c, SCM port);
3788scm_gen_puts -> void scm_puts (char *s, SCM port);
3789scm_gen_write -> void scm_lfwrite (char *ptr, scm_sizet size, SCM port);
3790scm_gen_getc -> void scm_getc (SCM port);
3791
3792
527da704
MD
3793** The macros SCM_TYP7D and SCM_TYP7SD has been removed.
3794
3795** The macro SCM_TYP7S has taken the role of the old SCM_TYP7D
3796
3797SCM_TYP7S now masks away the bit which distinguishes substrings from
3798strings.
3799
660f41fa
MD
3800** scm_catch_body_t: Backward incompatible change!
3801
3802Body functions to scm_internal_catch and friends do not any longer
3803take a second argument. This is because it is no longer possible to
3804pass a #f arg to catch.
3805
a8e05009
JB
3806** Calls to scm_protect_object and scm_unprotect now nest properly.
3807
3808The function scm_protect_object protects its argument from being freed
3809by the garbage collector. scm_unprotect_object removes that
3810protection.
3811
3812These functions now nest properly. That is, for every object O, there
3813is a counter which scm_protect_object(O) increments and
3814scm_unprotect_object(O) decrements, if the counter is greater than
3815zero. Every object's counter is zero when it is first created. If an
3816object's counter is greater than zero, the garbage collector will not
3817reclaim its storage.
3818
3819This allows you to use scm_protect_object in your code without
3820worrying that some other function you call will call
3821scm_unprotect_object, and allow it to be freed. Assuming that the
3822functions you call are well-behaved, and unprotect only those objects
3823they protect, you can follow the same rule and have confidence that
3824objects will be freed only at appropriate times.
3825
c484bf7f
JB
3826\f
3827Changes in Guile 1.2 (released Tuesday, June 24 1997):
cf78e9e8 3828
737c9113
JB
3829* Changes to the distribution
3830
832b09ed
JB
3831** Nightly snapshots are now available from ftp.red-bean.com.
3832The old server, ftp.cyclic.com, has been relinquished to its rightful
3833owner.
3834
3835Nightly snapshots of the Guile development sources are now available via
3836anonymous FTP from ftp.red-bean.com, as /pub/guile/guile-snap.tar.gz.
3837
3838Via the web, that's: ftp://ftp.red-bean.com/pub/guile/guile-snap.tar.gz
3839For getit, that's: ftp.red-bean.com:/pub/guile/guile-snap.tar.gz
3840
0fcab5ed
JB
3841** To run Guile without installing it, the procedure has changed a bit.
3842
3843If you used a separate build directory to compile Guile, you'll need
3844to include the build directory in SCHEME_LOAD_PATH, as well as the
3845source directory. See the `INSTALL' file for examples.
3846
737c9113
JB
3847* Changes to the procedure for linking libguile with your programs
3848
94982a4e
JB
3849** The standard Guile load path for Scheme code now includes
3850$(datadir)/guile (usually /usr/local/share/guile). This means that
3851you can install your own Scheme files there, and Guile will find them.
3852(Previous versions of Guile only checked a directory whose name
3853contained the Guile version number, so you had to re-install or move
3854your Scheme sources each time you installed a fresh version of Guile.)
3855
3856The load path also includes $(datadir)/guile/site; we recommend
3857putting individual Scheme files there. If you want to install a
3858package with multiple source files, create a directory for them under
3859$(datadir)/guile.
3860
3861** Guile 1.2 will now use the Rx regular expression library, if it is
3862installed on your system. When you are linking libguile into your own
3863programs, this means you will have to link against -lguile, -lqt (if
3864you configured Guile with thread support), and -lrx.
27590f82
JB
3865
3866If you are using autoconf to generate configuration scripts for your
3867application, the following lines should suffice to add the appropriate
3868libraries to your link command:
3869
3870### Find Rx, quickthreads and libguile.
3871AC_CHECK_LIB(rx, main)
3872AC_CHECK_LIB(qt, main)
3873AC_CHECK_LIB(guile, scm_shell)
3874
94982a4e
JB
3875The Guile 1.2 distribution does not contain sources for the Rx
3876library, as Guile 1.0 did. If you want to use Rx, you'll need to
3877retrieve it from a GNU FTP site and install it separately.
3878
b83b8bee
JB
3879* Changes to Scheme functions and syntax
3880
e035e7e6
MV
3881** The dynamic linking features of Guile are now enabled by default.
3882You can disable them by giving the `--disable-dynamic-linking' option
3883to configure.
3884
e035e7e6
MV
3885 (dynamic-link FILENAME)
3886
3887 Find the object file denoted by FILENAME (a string) and link it
3888 into the running Guile application. When everything works out,
3889 return a Scheme object suitable for representing the linked object
3890 file. Otherwise an error is thrown. How object files are
3891 searched is system dependent.
3892
3893 (dynamic-object? VAL)
3894
3895 Determine whether VAL represents a dynamically linked object file.
3896
3897 (dynamic-unlink DYNOBJ)
3898
3899 Unlink the indicated object file from the application. DYNOBJ
3900 should be one of the values returned by `dynamic-link'.
3901
3902 (dynamic-func FUNCTION DYNOBJ)
3903
3904 Search the C function indicated by FUNCTION (a string or symbol)
3905 in DYNOBJ and return some Scheme object that can later be used
3906 with `dynamic-call' to actually call this function. Right now,
3907 these Scheme objects are formed by casting the address of the
3908 function to `long' and converting this number to its Scheme
3909 representation.
3910
3911 (dynamic-call FUNCTION DYNOBJ)
3912
3913 Call the C function indicated by FUNCTION and DYNOBJ. The
3914 function is passed no arguments and its return value is ignored.
3915 When FUNCTION is something returned by `dynamic-func', call that
3916 function and ignore DYNOBJ. When FUNCTION is a string (or symbol,
3917 etc.), look it up in DYNOBJ; this is equivalent to
3918
3919 (dynamic-call (dynamic-func FUNCTION DYNOBJ) #f)
3920
3921 Interrupts are deferred while the C function is executing (with
3922 SCM_DEFER_INTS/SCM_ALLOW_INTS).
3923
3924 (dynamic-args-call FUNCTION DYNOBJ ARGS)
3925
3926 Call the C function indicated by FUNCTION and DYNOBJ, but pass it
3927 some arguments and return its return value. The C function is
3928 expected to take two arguments and return an `int', just like
3929 `main':
3930
3931 int c_func (int argc, char **argv);
3932
3933 ARGS must be a list of strings and is converted into an array of
3934 `char *'. The array is passed in ARGV and its size in ARGC. The
3935 return value is converted to a Scheme number and returned from the
3936 call to `dynamic-args-call'.
3937
0fcab5ed
JB
3938When dynamic linking is disabled or not supported on your system,
3939the above functions throw errors, but they are still available.
3940
e035e7e6
MV
3941Here is a small example that works on GNU/Linux:
3942
3943 (define libc-obj (dynamic-link "libc.so"))
3944 (dynamic-args-call 'rand libc-obj '())
3945
3946See the file `libguile/DYNAMIC-LINKING' for additional comments.
3947
27590f82
JB
3948** The #/ syntax for module names is depreciated, and will be removed
3949in a future version of Guile. Instead of
3950
3951 #/foo/bar/baz
3952
3953instead write
3954
3955 (foo bar baz)
3956
3957The latter syntax is more consistent with existing Lisp practice.
3958
5dade857
MV
3959** Guile now does fancier printing of structures. Structures are the
3960underlying implementation for records, which in turn are used to
3961implement modules, so all of these object now print differently and in
3962a more informative way.
3963
161029df
JB
3964The Scheme printer will examine the builtin variable *struct-printer*
3965whenever it needs to print a structure object. When this variable is
3966not `#f' it is deemed to be a procedure and will be applied to the
3967structure object and the output port. When *struct-printer* is `#f'
3968or the procedure return `#f' the structure object will be printed in
3969the boring #<struct 80458270> form.
5dade857
MV
3970
3971This hook is used by some routines in ice-9/boot-9.scm to implement
3972type specific printing routines. Please read the comments there about
3973"printing structs".
3974
3975One of the more specific uses of structs are records. The printing
3976procedure that could be passed to MAKE-RECORD-TYPE is now actually
3977called. It should behave like a *struct-printer* procedure (described
3978above).
3979
b83b8bee
JB
3980** Guile now supports a new R4RS-compliant syntax for keywords. A
3981token of the form #:NAME, where NAME has the same syntax as a Scheme
3982symbol, is the external representation of the keyword named NAME.
3983Keyword objects print using this syntax as well, so values containing
1e5afba0
JB
3984keyword objects can be read back into Guile. When used in an
3985expression, keywords are self-quoting objects.
b83b8bee
JB
3986
3987Guile suports this read syntax, and uses this print syntax, regardless
3988of the current setting of the `keyword' read option. The `keyword'
3989read option only controls whether Guile recognizes the `:NAME' syntax,
3990which is incompatible with R4RS. (R4RS says such token represent
3991symbols.)
737c9113
JB
3992
3993** Guile has regular expression support again. Guile 1.0 included
3994functions for matching regular expressions, based on the Rx library.
3995In Guile 1.1, the Guile/Rx interface was removed to simplify the
3996distribution, and thus Guile had no regular expression support. Guile
94982a4e
JB
39971.2 again supports the most commonly used functions, and supports all
3998of SCSH's regular expression functions.
2409cdfa 3999
94982a4e
JB
4000If your system does not include a POSIX regular expression library,
4001and you have not linked Guile with a third-party regexp library such as
4002Rx, these functions will not be available. You can tell whether your
4003Guile installation includes regular expression support by checking
4004whether the `*features*' list includes the `regex' symbol.
737c9113 4005
94982a4e 4006*** regexp functions
161029df 4007
94982a4e
JB
4008By default, Guile supports POSIX extended regular expressions. That
4009means that the characters `(', `)', `+' and `?' are special, and must
4010be escaped if you wish to match the literal characters.
e1a191a8 4011
94982a4e
JB
4012This regular expression interface was modeled after that implemented
4013by SCSH, the Scheme Shell. It is intended to be upwardly compatible
4014with SCSH regular expressions.
4015
4016**** Function: string-match PATTERN STR [START]
4017 Compile the string PATTERN into a regular expression and compare
4018 it with STR. The optional numeric argument START specifies the
4019 position of STR at which to begin matching.
4020
4021 `string-match' returns a "match structure" which describes what,
4022 if anything, was matched by the regular expression. *Note Match
4023 Structures::. If STR does not match PATTERN at all,
4024 `string-match' returns `#f'.
4025
4026 Each time `string-match' is called, it must compile its PATTERN
4027argument into a regular expression structure. This operation is
4028expensive, which makes `string-match' inefficient if the same regular
4029expression is used several times (for example, in a loop). For better
4030performance, you can compile a regular expression in advance and then
4031match strings against the compiled regexp.
4032
4033**** Function: make-regexp STR [FLAGS]
4034 Compile the regular expression described by STR, and return the
4035 compiled regexp structure. If STR does not describe a legal
4036 regular expression, `make-regexp' throws a
4037 `regular-expression-syntax' error.
4038
4039 FLAGS may be the bitwise-or of one or more of the following:
4040
4041**** Constant: regexp/extended
4042 Use POSIX Extended Regular Expression syntax when interpreting
4043 STR. If not set, POSIX Basic Regular Expression syntax is used.
4044 If the FLAGS argument is omitted, we assume regexp/extended.
4045
4046**** Constant: regexp/icase
4047 Do not differentiate case. Subsequent searches using the
4048 returned regular expression will be case insensitive.
4049
4050**** Constant: regexp/newline
4051 Match-any-character operators don't match a newline.
4052
4053 A non-matching list ([^...]) not containing a newline matches a
4054 newline.
4055
4056 Match-beginning-of-line operator (^) matches the empty string
4057 immediately after a newline, regardless of whether the FLAGS
4058 passed to regexp-exec contain regexp/notbol.
4059
4060 Match-end-of-line operator ($) matches the empty string
4061 immediately before a newline, regardless of whether the FLAGS
4062 passed to regexp-exec contain regexp/noteol.
4063
4064**** Function: regexp-exec REGEXP STR [START [FLAGS]]
4065 Match the compiled regular expression REGEXP against `str'. If
4066 the optional integer START argument is provided, begin matching
4067 from that position in the string. Return a match structure
4068 describing the results of the match, or `#f' if no match could be
4069 found.
4070
4071 FLAGS may be the bitwise-or of one or more of the following:
4072
4073**** Constant: regexp/notbol
4074 The match-beginning-of-line operator always fails to match (but
4075 see the compilation flag regexp/newline above) This flag may be
4076 used when different portions of a string are passed to
4077 regexp-exec and the beginning of the string should not be
4078 interpreted as the beginning of the line.
4079
4080**** Constant: regexp/noteol
4081 The match-end-of-line operator always fails to match (but see the
4082 compilation flag regexp/newline above)
4083
4084**** Function: regexp? OBJ
4085 Return `#t' if OBJ is a compiled regular expression, or `#f'
4086 otherwise.
4087
4088 Regular expressions are commonly used to find patterns in one string
4089and replace them with the contents of another string.
4090
4091**** Function: regexp-substitute PORT MATCH [ITEM...]
4092 Write to the output port PORT selected contents of the match
4093 structure MATCH. Each ITEM specifies what should be written, and
4094 may be one of the following arguments:
4095
4096 * A string. String arguments are written out verbatim.
4097
4098 * An integer. The submatch with that number is written.
4099
4100 * The symbol `pre'. The portion of the matched string preceding
4101 the regexp match is written.
4102
4103 * The symbol `post'. The portion of the matched string
4104 following the regexp match is written.
4105
4106 PORT may be `#f', in which case nothing is written; instead,
4107 `regexp-substitute' constructs a string from the specified ITEMs
4108 and returns that.
4109
4110**** Function: regexp-substitute/global PORT REGEXP TARGET [ITEM...]
4111 Similar to `regexp-substitute', but can be used to perform global
4112 substitutions on STR. Instead of taking a match structure as an
4113 argument, `regexp-substitute/global' takes two string arguments: a
4114 REGEXP string describing a regular expression, and a TARGET string
4115 which should be matched against this regular expression.
4116
4117 Each ITEM behaves as in REGEXP-SUBSTITUTE, with the following
4118 exceptions:
4119
4120 * A function may be supplied. When this function is called, it
4121 will be passed one argument: a match structure for a given
4122 regular expression match. It should return a string to be
4123 written out to PORT.
4124
4125 * The `post' symbol causes `regexp-substitute/global' to recurse
4126 on the unmatched portion of STR. This *must* be supplied in
4127 order to perform global search-and-replace on STR; if it is
4128 not present among the ITEMs, then `regexp-substitute/global'
4129 will return after processing a single match.
4130
4131*** Match Structures
4132
4133 A "match structure" is the object returned by `string-match' and
4134`regexp-exec'. It describes which portion of a string, if any, matched
4135the given regular expression. Match structures include: a reference to
4136the string that was checked for matches; the starting and ending
4137positions of the regexp match; and, if the regexp included any
4138parenthesized subexpressions, the starting and ending positions of each
4139submatch.
4140
4141 In each of the regexp match functions described below, the `match'
4142argument must be a match structure returned by a previous call to
4143`string-match' or `regexp-exec'. Most of these functions return some
4144information about the original target string that was matched against a
4145regular expression; we will call that string TARGET for easy reference.
4146
4147**** Function: regexp-match? OBJ
4148 Return `#t' if OBJ is a match structure returned by a previous
4149 call to `regexp-exec', or `#f' otherwise.
4150
4151**** Function: match:substring MATCH [N]
4152 Return the portion of TARGET matched by subexpression number N.
4153 Submatch 0 (the default) represents the entire regexp match. If
4154 the regular expression as a whole matched, but the subexpression
4155 number N did not match, return `#f'.
4156
4157**** Function: match:start MATCH [N]
4158 Return the starting position of submatch number N.
4159
4160**** Function: match:end MATCH [N]
4161 Return the ending position of submatch number N.
4162
4163**** Function: match:prefix MATCH
4164 Return the unmatched portion of TARGET preceding the regexp match.
4165
4166**** Function: match:suffix MATCH
4167 Return the unmatched portion of TARGET following the regexp match.
4168
4169**** Function: match:count MATCH
4170 Return the number of parenthesized subexpressions from MATCH.
4171 Note that the entire regular expression match itself counts as a
4172 subexpression, and failed submatches are included in the count.
4173
4174**** Function: match:string MATCH
4175 Return the original TARGET string.
4176
4177*** Backslash Escapes
4178
4179 Sometimes you will want a regexp to match characters like `*' or `$'
4180exactly. For example, to check whether a particular string represents
4181a menu entry from an Info node, it would be useful to match it against
4182a regexp like `^* [^:]*::'. However, this won't work; because the
4183asterisk is a metacharacter, it won't match the `*' at the beginning of
4184the string. In this case, we want to make the first asterisk un-magic.
4185
4186 You can do this by preceding the metacharacter with a backslash
4187character `\'. (This is also called "quoting" the metacharacter, and
4188is known as a "backslash escape".) When Guile sees a backslash in a
4189regular expression, it considers the following glyph to be an ordinary
4190character, no matter what special meaning it would ordinarily have.
4191Therefore, we can make the above example work by changing the regexp to
4192`^\* [^:]*::'. The `\*' sequence tells the regular expression engine
4193to match only a single asterisk in the target string.
4194
4195 Since the backslash is itself a metacharacter, you may force a
4196regexp to match a backslash in the target string by preceding the
4197backslash with itself. For example, to find variable references in a
4198TeX program, you might want to find occurrences of the string `\let\'
4199followed by any number of alphabetic characters. The regular expression
4200`\\let\\[A-Za-z]*' would do this: the double backslashes in the regexp
4201each match a single backslash in the target string.
4202
4203**** Function: regexp-quote STR
4204 Quote each special character found in STR with a backslash, and
4205 return the resulting string.
4206
4207 *Very important:* Using backslash escapes in Guile source code (as
4208in Emacs Lisp or C) can be tricky, because the backslash character has
4209special meaning for the Guile reader. For example, if Guile encounters
4210the character sequence `\n' in the middle of a string while processing
4211Scheme code, it replaces those characters with a newline character.
4212Similarly, the character sequence `\t' is replaced by a horizontal tab.
4213Several of these "escape sequences" are processed by the Guile reader
4214before your code is executed. Unrecognized escape sequences are
4215ignored: if the characters `\*' appear in a string, they will be
4216translated to the single character `*'.
4217
4218 This translation is obviously undesirable for regular expressions,
4219since we want to be able to include backslashes in a string in order to
4220escape regexp metacharacters. Therefore, to make sure that a backslash
4221is preserved in a string in your Guile program, you must use *two*
4222consecutive backslashes:
4223
4224 (define Info-menu-entry-pattern (make-regexp "^\\* [^:]*"))
4225
4226 The string in this example is preprocessed by the Guile reader before
4227any code is executed. The resulting argument to `make-regexp' is the
4228string `^\* [^:]*', which is what we really want.
4229
4230 This also means that in order to write a regular expression that
4231matches a single backslash character, the regular expression string in
4232the source code must include *four* backslashes. Each consecutive pair
4233of backslashes gets translated by the Guile reader to a single
4234backslash, and the resulting double-backslash is interpreted by the
4235regexp engine as matching a single backslash character. Hence:
4236
4237 (define tex-variable-pattern (make-regexp "\\\\let\\\\=[A-Za-z]*"))
4238
4239 The reason for the unwieldiness of this syntax is historical. Both
4240regular expression pattern matchers and Unix string processing systems
4241have traditionally used backslashes with the special meanings described
4242above. The POSIX regular expression specification and ANSI C standard
4243both require these semantics. Attempting to abandon either convention
4244would cause other kinds of compatibility problems, possibly more severe
4245ones. Therefore, without extending the Scheme reader to support
4246strings with different quoting conventions (an ungainly and confusing
4247extension when implemented in other languages), we must adhere to this
4248cumbersome escape syntax.
4249
7ad3c1e7
GH
4250* Changes to the gh_ interface
4251
4252* Changes to the scm_ interface
4253
4254* Changes to system call interfaces:
94982a4e 4255
7ad3c1e7 4256** The value returned by `raise' is now unspecified. It throws an exception
e1a191a8
GH
4257if an error occurs.
4258
94982a4e 4259*** A new procedure `sigaction' can be used to install signal handlers
115b09a5
GH
4260
4261(sigaction signum [action] [flags])
4262
4263signum is the signal number, which can be specified using the value
4264of SIGINT etc.
4265
4266If action is omitted, sigaction returns a pair: the CAR is the current
4267signal hander, which will be either an integer with the value SIG_DFL
4268(default action) or SIG_IGN (ignore), or the Scheme procedure which
4269handles the signal, or #f if a non-Scheme procedure handles the
4270signal. The CDR contains the current sigaction flags for the handler.
4271
4272If action is provided, it is installed as the new handler for signum.
4273action can be a Scheme procedure taking one argument, or the value of
4274SIG_DFL (default action) or SIG_IGN (ignore), or #f to restore
4275whatever signal handler was installed before sigaction was first used.
4276Flags can optionally be specified for the new handler (SA_RESTART is
4277always used if the system provides it, so need not be specified.) The
4278return value is a pair with information about the old handler as
4279described above.
4280
4281This interface does not provide access to the "signal blocking"
4282facility. Maybe this is not needed, since the thread support may
4283provide solutions to the problem of consistent access to data
4284structures.
e1a191a8 4285
94982a4e 4286*** A new procedure `flush-all-ports' is equivalent to running
89ea5b7c
GH
4287`force-output' on every port open for output.
4288
94982a4e
JB
4289** Guile now provides information on how it was built, via the new
4290global variable, %guile-build-info. This variable records the values
4291of the standard GNU makefile directory variables as an assocation
4292list, mapping variable names (symbols) onto directory paths (strings).
4293For example, to find out where the Guile link libraries were
4294installed, you can say:
4295
4296guile -c "(display (assq-ref %guile-build-info 'libdir)) (newline)"
4297
4298
4299* Changes to the scm_ interface
4300
4301** The new function scm_handle_by_message_noexit is just like the
4302existing scm_handle_by_message function, except that it doesn't call
4303exit to terminate the process. Instead, it prints a message and just
4304returns #f. This might be a more appropriate catch-all handler for
4305new dynamic roots and threads.
4306
cf78e9e8 4307\f
c484bf7f 4308Changes in Guile 1.1 (released Friday, May 16 1997):
f3b1485f
JB
4309
4310* Changes to the distribution.
4311
4312The Guile 1.0 distribution has been split up into several smaller
4313pieces:
4314guile-core --- the Guile interpreter itself.
4315guile-tcltk --- the interface between the Guile interpreter and
4316 Tcl/Tk; Tcl is an interpreter for a stringy language, and Tk
4317 is a toolkit for building graphical user interfaces.
4318guile-rgx-ctax --- the interface between Guile and the Rx regular
4319 expression matcher, and the translator for the Ctax
4320 programming language. These are packaged together because the
4321 Ctax translator uses Rx to parse Ctax source code.
4322
095936d2
JB
4323This NEWS file describes the changes made to guile-core since the 1.0
4324release.
4325
48d224d7
JB
4326We no longer distribute the documentation, since it was either out of
4327date, or incomplete. As soon as we have current documentation, we
4328will distribute it.
4329
0fcab5ed
JB
4330
4331
f3b1485f
JB
4332* Changes to the stand-alone interpreter
4333
48d224d7
JB
4334** guile now accepts command-line arguments compatible with SCSH, Olin
4335Shivers' Scheme Shell.
4336
4337In general, arguments are evaluated from left to right, but there are
4338exceptions. The following switches stop argument processing, and
4339stash all remaining command-line arguments as the value returned by
4340the (command-line) function.
4341 -s SCRIPT load Scheme source code from FILE, and exit
4342 -c EXPR evalute Scheme expression EXPR, and exit
4343 -- stop scanning arguments; run interactively
4344
4345The switches below are processed as they are encountered.
4346 -l FILE load Scheme source code from FILE
4347 -e FUNCTION after reading script, apply FUNCTION to
4348 command line arguments
4349 -ds do -s script at this point
4350 --emacs enable Emacs protocol (experimental)
4351 -h, --help display this help and exit
4352 -v, --version display version information and exit
4353 \ read arguments from following script lines
4354
4355So, for example, here is a Guile script named `ekko' (thanks, Olin)
4356which re-implements the traditional "echo" command:
4357
4358#!/usr/local/bin/guile -s
4359!#
4360(define (main args)
4361 (map (lambda (arg) (display arg) (display " "))
4362 (cdr args))
4363 (newline))
4364
4365(main (command-line))
4366
4367Suppose we invoke this script as follows:
4368
4369 ekko a speckled gecko
4370
4371Through the magic of Unix script processing (triggered by the `#!'
4372token at the top of the file), /usr/local/bin/guile receives the
4373following list of command-line arguments:
4374
4375 ("-s" "./ekko" "a" "speckled" "gecko")
4376
4377Unix inserts the name of the script after the argument specified on
4378the first line of the file (in this case, "-s"), and then follows that
4379with the arguments given to the script. Guile loads the script, which
4380defines the `main' function, and then applies it to the list of
4381remaining command-line arguments, ("a" "speckled" "gecko").
4382
095936d2
JB
4383In Unix, the first line of a script file must take the following form:
4384
4385#!INTERPRETER ARGUMENT
4386
4387where INTERPRETER is the absolute filename of the interpreter
4388executable, and ARGUMENT is a single command-line argument to pass to
4389the interpreter.
4390
4391You may only pass one argument to the interpreter, and its length is
4392limited. These restrictions can be annoying to work around, so Guile
4393provides a general mechanism (borrowed from, and compatible with,
4394SCSH) for circumventing them.
4395
4396If the ARGUMENT in a Guile script is a single backslash character,
4397`\', Guile will open the script file, parse arguments from its second
4398and subsequent lines, and replace the `\' with them. So, for example,
4399here is another implementation of the `ekko' script:
4400
4401#!/usr/local/bin/guile \
4402-e main -s
4403!#
4404(define (main args)
4405 (for-each (lambda (arg) (display arg) (display " "))
4406 (cdr args))
4407 (newline))
4408
4409If the user invokes this script as follows:
4410
4411 ekko a speckled gecko
4412
4413Unix expands this into
4414
4415 /usr/local/bin/guile \ ekko a speckled gecko
4416
4417When Guile sees the `\' argument, it replaces it with the arguments
4418read from the second line of the script, producing:
4419
4420 /usr/local/bin/guile -e main -s ekko a speckled gecko
4421
4422This tells Guile to load the `ekko' script, and apply the function
4423`main' to the argument list ("a" "speckled" "gecko").
4424
4425Here is how Guile parses the command-line arguments:
4426- Each space character terminates an argument. This means that two
4427 spaces in a row introduce an empty-string argument.
4428- The tab character is not permitted (unless you quote it with the
4429 backslash character, as described below), to avoid confusion.
4430- The newline character terminates the sequence of arguments, and will
4431 also terminate a final non-empty argument. (However, a newline
4432 following a space will not introduce a final empty-string argument;
4433 it only terminates the argument list.)
4434- The backslash character is the escape character. It escapes
4435 backslash, space, tab, and newline. The ANSI C escape sequences
4436 like \n and \t are also supported. These produce argument
4437 constituents; the two-character combination \n doesn't act like a
4438 terminating newline. The escape sequence \NNN for exactly three
4439 octal digits reads as the character whose ASCII code is NNN. As
4440 above, characters produced this way are argument constituents.
4441 Backslash followed by other characters is not allowed.
4442
48d224d7
JB
4443* Changes to the procedure for linking libguile with your programs
4444
4445** Guile now builds and installs a shared guile library, if your
4446system support shared libraries. (It still builds a static library on
4447all systems.) Guile automatically detects whether your system
4448supports shared libraries. To prevent Guile from buildisg shared
4449libraries, pass the `--disable-shared' flag to the configure script.
4450
4451Guile takes longer to compile when it builds shared libraries, because
4452it must compile every file twice --- once to produce position-
4453independent object code, and once to produce normal object code.
4454
4455** The libthreads library has been merged into libguile.
4456
4457To link a program against Guile, you now need only link against
4458-lguile and -lqt; -lthreads is no longer needed. If you are using
4459autoconf to generate configuration scripts for your application, the
4460following lines should suffice to add the appropriate libraries to
4461your link command:
4462
4463### Find quickthreads and libguile.
4464AC_CHECK_LIB(qt, main)
4465AC_CHECK_LIB(guile, scm_shell)
f3b1485f
JB
4466
4467* Changes to Scheme functions
4468
095936d2
JB
4469** Guile Scheme's special syntax for keyword objects is now optional,
4470and disabled by default.
4471
4472The syntax variation from R4RS made it difficult to port some
4473interesting packages to Guile. The routines which accepted keyword
4474arguments (mostly in the module system) have been modified to also
4475accept symbols whose names begin with `:'.
4476
4477To change the keyword syntax, you must first import the (ice-9 debug)
4478module:
4479 (use-modules (ice-9 debug))
4480
4481Then you can enable the keyword syntax as follows:
4482 (read-set! keywords 'prefix)
4483
4484To disable keyword syntax, do this:
4485 (read-set! keywords #f)
4486
4487** Many more primitive functions accept shared substrings as
4488arguments. In the past, these functions required normal, mutable
4489strings as arguments, although they never made use of this
4490restriction.
4491
4492** The uniform array functions now operate on byte vectors. These
4493functions are `array-fill!', `serial-array-copy!', `array-copy!',
4494`serial-array-map', `array-map', `array-for-each', and
4495`array-index-map!'.
4496
4497** The new functions `trace' and `untrace' implement simple debugging
4498support for Scheme functions.
4499
4500The `trace' function accepts any number of procedures as arguments,
4501and tells the Guile interpreter to display each procedure's name and
4502arguments each time the procedure is invoked. When invoked with no
4503arguments, `trace' returns the list of procedures currently being
4504traced.
4505
4506The `untrace' function accepts any number of procedures as arguments,
4507and tells the Guile interpreter not to trace them any more. When
4508invoked with no arguments, `untrace' untraces all curretly traced
4509procedures.
4510
4511The tracing in Guile has an advantage over most other systems: we
4512don't create new procedure objects, but mark the procedure objects
4513themselves. This means that anonymous and internal procedures can be
4514traced.
4515
4516** The function `assert-repl-prompt' has been renamed to
4517`set-repl-prompt!'. It takes one argument, PROMPT.
4518- If PROMPT is #f, the Guile read-eval-print loop will not prompt.
4519- If PROMPT is a string, we use it as a prompt.
4520- If PROMPT is a procedure accepting no arguments, we call it, and
4521 display the result as a prompt.
4522- Otherwise, we display "> ".
4523
4524** The new function `eval-string' reads Scheme expressions from a
4525string and evaluates them, returning the value of the last expression
4526in the string. If the string contains no expressions, it returns an
4527unspecified value.
4528
4529** The new function `thunk?' returns true iff its argument is a
4530procedure of zero arguments.
4531
4532** `defined?' is now a builtin function, instead of syntax. This
4533means that its argument should be quoted. It returns #t iff its
4534argument is bound in the current module.
4535
4536** The new syntax `use-modules' allows you to add new modules to your
4537environment without re-typing a complete `define-module' form. It
4538accepts any number of module names as arguments, and imports their
4539public bindings into the current module.
4540
4541** The new function (module-defined? NAME MODULE) returns true iff
4542NAME, a symbol, is defined in MODULE, a module object.
4543
4544** The new function `builtin-bindings' creates and returns a hash
4545table containing copies of all the root module's bindings.
4546
4547** The new function `builtin-weak-bindings' does the same as
4548`builtin-bindings', but creates a doubly-weak hash table.
4549
4550** The `equal?' function now considers variable objects to be
4551equivalent if they have the same name and the same value.
4552
4553** The new function `command-line' returns the command-line arguments
4554given to Guile, as a list of strings.
4555
4556When using guile as a script interpreter, `command-line' returns the
4557script's arguments; those processed by the interpreter (like `-s' or
4558`-c') are omitted. (In other words, you get the normal, expected
4559behavior.) Any application that uses scm_shell to process its
4560command-line arguments gets this behavior as well.
4561
4562** The new function `load-user-init' looks for a file called `.guile'
4563in the user's home directory, and loads it if it exists. This is
4564mostly for use by the code generated by scm_compile_shell_switches,
4565but we thought it might also be useful in other circumstances.
4566
4567** The new function `log10' returns the base-10 logarithm of its
4568argument.
4569
4570** Changes to I/O functions
4571
4572*** The functions `read', `primitive-load', `read-and-eval!', and
4573`primitive-load-path' no longer take optional arguments controlling
4574case insensitivity and a `#' parser.
4575
4576Case sensitivity is now controlled by a read option called
4577`case-insensitive'. The user can add new `#' syntaxes with the
4578`read-hash-extend' function (see below).
4579
4580*** The new function `read-hash-extend' allows the user to change the
4581syntax of Guile Scheme in a somewhat controlled way.
4582
4583(read-hash-extend CHAR PROC)
4584 When parsing S-expressions, if we read a `#' character followed by
4585 the character CHAR, use PROC to parse an object from the stream.
4586 If PROC is #f, remove any parsing procedure registered for CHAR.
4587
4588 The reader applies PROC to two arguments: CHAR and an input port.
4589
4590*** The new functions read-delimited and read-delimited! provide a
4591general mechanism for doing delimited input on streams.
4592
4593(read-delimited DELIMS [PORT HANDLE-DELIM])
4594 Read until we encounter one of the characters in DELIMS (a string),
4595 or end-of-file. PORT is the input port to read from; it defaults to
4596 the current input port. The HANDLE-DELIM parameter determines how
4597 the terminating character is handled; it should be one of the
4598 following symbols:
4599
4600 'trim omit delimiter from result
4601 'peek leave delimiter character in input stream
4602 'concat append delimiter character to returned value
4603 'split return a pair: (RESULT . TERMINATOR)
4604
4605 HANDLE-DELIM defaults to 'peek.
4606
4607(read-delimited! DELIMS BUF [PORT HANDLE-DELIM START END])
4608 A side-effecting variant of `read-delimited'.
4609
4610 The data is written into the string BUF at the indices in the
4611 half-open interval [START, END); the default interval is the whole
4612 string: START = 0 and END = (string-length BUF). The values of
4613 START and END must specify a well-defined interval in BUF, i.e.
4614 0 <= START <= END <= (string-length BUF).
4615
4616 It returns NBYTES, the number of bytes read. If the buffer filled
4617 up without a delimiter character being found, it returns #f. If the
4618 port is at EOF when the read starts, it returns the EOF object.
4619
4620 If an integer is returned (i.e., the read is successfully terminated
4621 by reading a delimiter character), then the HANDLE-DELIM parameter
4622 determines how to handle the terminating character. It is described
4623 above, and defaults to 'peek.
4624
4625(The descriptions of these functions were borrowed from the SCSH
4626manual, by Olin Shivers and Brian Carlstrom.)
4627
4628*** The `%read-delimited!' function is the primitive used to implement
4629`read-delimited' and `read-delimited!'.
4630
4631(%read-delimited! DELIMS BUF GOBBLE? [PORT START END])
4632
4633This returns a pair of values: (TERMINATOR . NUM-READ).
4634- TERMINATOR describes why the read was terminated. If it is a
4635 character or the eof object, then that is the value that terminated
4636 the read. If it is #f, the function filled the buffer without finding
4637 a delimiting character.
4638- NUM-READ is the number of characters read into BUF.
4639
4640If the read is successfully terminated by reading a delimiter
4641character, then the gobble? parameter determines what to do with the
4642terminating character. If true, the character is removed from the
4643input stream; if false, the character is left in the input stream
4644where a subsequent read operation will retrieve it. In either case,
4645the character is also the first value returned by the procedure call.
4646
4647(The descriptions of this function was borrowed from the SCSH manual,
4648by Olin Shivers and Brian Carlstrom.)
4649
4650*** The `read-line' and `read-line!' functions have changed; they now
4651trim the terminator by default; previously they appended it to the
4652returned string. For the old behavior, use (read-line PORT 'concat).
4653
4654*** The functions `uniform-array-read!' and `uniform-array-write!' now
4655take new optional START and END arguments, specifying the region of
4656the array to read and write.
4657
f348c807
JB
4658*** The `ungetc-char-ready?' function has been removed. We feel it's
4659inappropriate for an interface to expose implementation details this
4660way.
095936d2
JB
4661
4662** Changes to the Unix library and system call interface
4663
4664*** The new fcntl function provides access to the Unix `fcntl' system
4665call.
4666
4667(fcntl PORT COMMAND VALUE)
4668 Apply COMMAND to PORT's file descriptor, with VALUE as an argument.
4669 Values for COMMAND are:
4670
4671 F_DUPFD duplicate a file descriptor
4672 F_GETFD read the descriptor's close-on-exec flag
4673 F_SETFD set the descriptor's close-on-exec flag to VALUE
4674 F_GETFL read the descriptor's flags, as set on open
4675 F_SETFL set the descriptor's flags, as set on open to VALUE
4676 F_GETOWN return the process ID of a socket's owner, for SIGIO
4677 F_SETOWN set the process that owns a socket to VALUE, for SIGIO
4678 FD_CLOEXEC not sure what this is
4679
4680For details, see the documentation for the fcntl system call.
4681
4682*** The arguments to `select' have changed, for compatibility with
4683SCSH. The TIMEOUT parameter may now be non-integral, yielding the
4684expected behavior. The MILLISECONDS parameter has been changed to
4685MICROSECONDS, to more closely resemble the underlying system call.
4686The RVEC, WVEC, and EVEC arguments can now be vectors; the type of the
4687corresponding return set will be the same.
4688
4689*** The arguments to the `mknod' system call have changed. They are
4690now:
4691
4692(mknod PATH TYPE PERMS DEV)
4693 Create a new file (`node') in the file system. PATH is the name of
4694 the file to create. TYPE is the kind of file to create; it should
4695 be 'fifo, 'block-special, or 'char-special. PERMS specifies the
4696 permission bits to give the newly created file. If TYPE is
4697 'block-special or 'char-special, DEV specifies which device the
4698 special file refers to; its interpretation depends on the kind of
4699 special file being created.
4700
4701*** The `fork' function has been renamed to `primitive-fork', to avoid
4702clashing with various SCSH forks.
4703
4704*** The `recv' and `recvfrom' functions have been renamed to `recv!'
4705and `recvfrom!'. They no longer accept a size for a second argument;
4706you must pass a string to hold the received value. They no longer
4707return the buffer. Instead, `recv' returns the length of the message
4708received, and `recvfrom' returns a pair containing the packet's length
4709and originating address.
4710
4711*** The file descriptor datatype has been removed, as have the
4712`read-fd', `write-fd', `close', `lseek', and `dup' functions.
4713We plan to replace these functions with a SCSH-compatible interface.
4714
4715*** The `create' function has been removed; it's just a special case
4716of `open'.
4717
4718*** There are new functions to break down process termination status
4719values. In the descriptions below, STATUS is a value returned by
4720`waitpid'.
4721
4722(status:exit-val STATUS)
4723 If the child process exited normally, this function returns the exit
4724 code for the child process (i.e., the value passed to exit, or
4725 returned from main). If the child process did not exit normally,
4726 this function returns #f.
4727
4728(status:stop-sig STATUS)
4729 If the child process was suspended by a signal, this function
4730 returns the signal that suspended the child. Otherwise, it returns
4731 #f.
4732
4733(status:term-sig STATUS)
4734 If the child process terminated abnormally, this function returns
4735 the signal that terminated the child. Otherwise, this function
4736 returns false.
4737
4738POSIX promises that exactly one of these functions will return true on
4739a valid STATUS value.
4740
4741These functions are compatible with SCSH.
4742
4743*** There are new accessors and setters for the broken-out time vectors
48d224d7
JB
4744returned by `localtime', `gmtime', and that ilk. They are:
4745
4746 Component Accessor Setter
4747 ========================= ============ ============
4748 seconds tm:sec set-tm:sec
4749 minutes tm:min set-tm:min
4750 hours tm:hour set-tm:hour
4751 day of the month tm:mday set-tm:mday
4752 month tm:mon set-tm:mon
4753 year tm:year set-tm:year
4754 day of the week tm:wday set-tm:wday
4755 day in the year tm:yday set-tm:yday
4756 daylight saving time tm:isdst set-tm:isdst
4757 GMT offset, seconds tm:gmtoff set-tm:gmtoff
4758 name of time zone tm:zone set-tm:zone
4759
095936d2
JB
4760*** There are new accessors for the vectors returned by `uname',
4761describing the host system:
48d224d7
JB
4762
4763 Component Accessor
4764 ============================================== ================
4765 name of the operating system implementation utsname:sysname
4766 network name of this machine utsname:nodename
4767 release level of the operating system utsname:release
4768 version level of the operating system utsname:version
4769 machine hardware platform utsname:machine
4770
095936d2
JB
4771*** There are new accessors for the vectors returned by `getpw',
4772`getpwnam', `getpwuid', and `getpwent', describing entries from the
4773system's user database:
4774
4775 Component Accessor
4776 ====================== =================
4777 user name passwd:name
4778 user password passwd:passwd
4779 user id passwd:uid
4780 group id passwd:gid
4781 real name passwd:gecos
4782 home directory passwd:dir
4783 shell program passwd:shell
4784
4785*** There are new accessors for the vectors returned by `getgr',
4786`getgrnam', `getgrgid', and `getgrent', describing entries from the
4787system's group database:
4788
4789 Component Accessor
4790 ======================= ============
4791 group name group:name
4792 group password group:passwd
4793 group id group:gid
4794 group members group:mem
4795
4796*** There are new accessors for the vectors returned by `gethost',
4797`gethostbyaddr', `gethostbyname', and `gethostent', describing
4798internet hosts:
4799
4800 Component Accessor
4801 ========================= ===============
4802 official name of host hostent:name
4803 alias list hostent:aliases
4804 host address type hostent:addrtype
4805 length of address hostent:length
4806 list of addresses hostent:addr-list
4807
4808*** There are new accessors for the vectors returned by `getnet',
4809`getnetbyaddr', `getnetbyname', and `getnetent', describing internet
4810networks:
4811
4812 Component Accessor
4813 ========================= ===============
4814 official name of net netent:name
4815 alias list netent:aliases
4816 net number type netent:addrtype
4817 net number netent:net
4818
4819*** There are new accessors for the vectors returned by `getproto',
4820`getprotobyname', `getprotobynumber', and `getprotoent', describing
4821internet protocols:
4822
4823 Component Accessor
4824 ========================= ===============
4825 official protocol name protoent:name
4826 alias list protoent:aliases
4827 protocol number protoent:proto
4828
4829*** There are new accessors for the vectors returned by `getserv',
4830`getservbyname', `getservbyport', and `getservent', describing
4831internet protocols:
4832
4833 Component Accessor
4834 ========================= ===============
4835 official service name servent:name
4836 alias list servent:aliases
4837 port number servent:port
4838 protocol to use servent:proto
4839
4840*** There are new accessors for the sockaddr structures returned by
4841`accept', `getsockname', `getpeername', `recvfrom!':
4842
4843 Component Accessor
4844 ======================================== ===============
4845 address format (`family') sockaddr:fam
4846 path, for file domain addresses sockaddr:path
4847 address, for internet domain addresses sockaddr:addr
4848 TCP or UDP port, for internet sockaddr:port
4849
4850*** The `getpwent', `getgrent', `gethostent', `getnetent',
4851`getprotoent', and `getservent' functions now return #f at the end of
4852the user database. (They used to throw an exception.)
4853
4854Note that calling MUMBLEent function is equivalent to calling the
4855corresponding MUMBLE function with no arguments.
4856
4857*** The `setpwent', `setgrent', `sethostent', `setnetent',
4858`setprotoent', and `setservent' routines now take no arguments.
4859
4860*** The `gethost', `getproto', `getnet', and `getserv' functions now
4861provide more useful information when they throw an exception.
4862
4863*** The `lnaof' function has been renamed to `inet-lnaof'.
4864
4865*** Guile now claims to have the `current-time' feature.
4866
4867*** The `mktime' function now takes an optional second argument ZONE,
4868giving the time zone to use for the conversion. ZONE should be a
4869string, in the same format as expected for the "TZ" environment variable.
4870
4871*** The `strptime' function now returns a pair (TIME . COUNT), where
4872TIME is the parsed time as a vector, and COUNT is the number of
4873characters from the string left unparsed. This function used to
4874return the remaining characters as a string.
4875
4876*** The `gettimeofday' function has replaced the old `time+ticks' function.
4877The return value is now (SECONDS . MICROSECONDS); the fractional
4878component is no longer expressed in "ticks".
4879
4880*** The `ticks/sec' constant has been removed, in light of the above change.
6685dc83 4881
ea00ecba
MG
4882* Changes to the gh_ interface
4883
4884** gh_eval_str() now returns an SCM object which is the result of the
4885evaluation
4886
aaef0d2a
MG
4887** gh_scm2str() now copies the Scheme data to a caller-provided C
4888array
4889
4890** gh_scm2newstr() now makes a C array, copies the Scheme data to it,
4891and returns the array
4892
4893** gh_scm2str0() is gone: there is no need to distinguish
4894null-terminated from non-null-terminated, since gh_scm2newstr() allows
4895the user to interpret the data both ways.
4896
f3b1485f
JB
4897* Changes to the scm_ interface
4898
095936d2
JB
4899** The new function scm_symbol_value0 provides an easy way to get a
4900symbol's value from C code:
4901
4902SCM scm_symbol_value0 (char *NAME)
4903 Return the value of the symbol named by the null-terminated string
4904 NAME in the current module. If the symbol named NAME is unbound in
4905 the current module, return SCM_UNDEFINED.
4906
4907** The new function scm_sysintern0 creates new top-level variables,
4908without assigning them a value.
4909
4910SCM scm_sysintern0 (char *NAME)
4911 Create a new Scheme top-level variable named NAME. NAME is a
4912 null-terminated string. Return the variable's value cell.
4913
4914** The function scm_internal_catch is the guts of catch. It handles
4915all the mechanics of setting up a catch target, invoking the catch
4916body, and perhaps invoking the handler if the body does a throw.
4917
4918The function is designed to be usable from C code, but is general
4919enough to implement all the semantics Guile Scheme expects from throw.
4920
4921TAG is the catch tag. Typically, this is a symbol, but this function
4922doesn't actually care about that.
4923
4924BODY is a pointer to a C function which runs the body of the catch;
4925this is the code you can throw from. We call it like this:
4926 BODY (BODY_DATA, JMPBUF)
4927where:
4928 BODY_DATA is just the BODY_DATA argument we received; we pass it
4929 through to BODY as its first argument. The caller can make
4930 BODY_DATA point to anything useful that BODY might need.
4931 JMPBUF is the Scheme jmpbuf object corresponding to this catch,
4932 which we have just created and initialized.
4933
4934HANDLER is a pointer to a C function to deal with a throw to TAG,
4935should one occur. We call it like this:
4936 HANDLER (HANDLER_DATA, THROWN_TAG, THROW_ARGS)
4937where
4938 HANDLER_DATA is the HANDLER_DATA argument we recevied; it's the
4939 same idea as BODY_DATA above.
4940 THROWN_TAG is the tag that the user threw to; usually this is
4941 TAG, but it could be something else if TAG was #t (i.e., a
4942 catch-all), or the user threw to a jmpbuf.
4943 THROW_ARGS is the list of arguments the user passed to the THROW
4944 function.
4945
4946BODY_DATA is just a pointer we pass through to BODY. HANDLER_DATA
4947is just a pointer we pass through to HANDLER. We don't actually
4948use either of those pointers otherwise ourselves. The idea is
4949that, if our caller wants to communicate something to BODY or
4950HANDLER, it can pass a pointer to it as MUMBLE_DATA, which BODY and
4951HANDLER can then use. Think of it as a way to make BODY and
4952HANDLER closures, not just functions; MUMBLE_DATA points to the
4953enclosed variables.
4954
4955Of course, it's up to the caller to make sure that any data a
4956MUMBLE_DATA needs is protected from GC. A common way to do this is
4957to make MUMBLE_DATA a pointer to data stored in an automatic
4958structure variable; since the collector must scan the stack for
4959references anyway, this assures that any references in MUMBLE_DATA
4960will be found.
4961
4962** The new function scm_internal_lazy_catch is exactly like
4963scm_internal_catch, except:
4964
4965- It does not unwind the stack (this is the major difference).
4966- If handler returns, its value is returned from the throw.
4967- BODY always receives #f as its JMPBUF argument (since there's no
4968 jmpbuf associated with a lazy catch, because we don't unwind the
4969 stack.)
4970
4971** scm_body_thunk is a new body function you can pass to
4972scm_internal_catch if you want the body to be like Scheme's `catch'
4973--- a thunk, or a function of one argument if the tag is #f.
4974
4975BODY_DATA is a pointer to a scm_body_thunk_data structure, which
4976contains the Scheme procedure to invoke as the body, and the tag
4977we're catching. If the tag is #f, then we pass JMPBUF (created by
4978scm_internal_catch) to the body procedure; otherwise, the body gets
4979no arguments.
4980
4981** scm_handle_by_proc is a new handler function you can pass to
4982scm_internal_catch if you want the handler to act like Scheme's catch
4983--- call a procedure with the tag and the throw arguments.
4984
4985If the user does a throw to this catch, this function runs a handler
4986procedure written in Scheme. HANDLER_DATA is a pointer to an SCM
4987variable holding the Scheme procedure object to invoke. It ought to
4988be a pointer to an automatic variable (i.e., one living on the stack),
4989or the procedure object should be otherwise protected from GC.
4990
4991** scm_handle_by_message is a new handler function to use with
4992`scm_internal_catch' if you want Guile to print a message and die.
4993It's useful for dealing with throws to uncaught keys at the top level.
4994
4995HANDLER_DATA, if non-zero, is assumed to be a char * pointing to a
4996message header to print; if zero, we use "guile" instead. That
4997text is followed by a colon, then the message described by ARGS.
4998
4999** The return type of scm_boot_guile is now void; the function does
5000not return a value, and indeed, never returns at all.
5001
f3b1485f
JB
5002** The new function scm_shell makes it easy for user applications to
5003process command-line arguments in a way that is compatible with the
5004stand-alone guile interpreter (which is in turn compatible with SCSH,
5005the Scheme shell).
5006
5007To use the scm_shell function, first initialize any guile modules
5008linked into your application, and then call scm_shell with the values
7ed46dc8 5009of ARGC and ARGV your `main' function received. scm_shell will add
f3b1485f
JB
5010any SCSH-style meta-arguments from the top of the script file to the
5011argument vector, and then process the command-line arguments. This
5012generally means loading a script file or starting up an interactive
5013command interpreter. For details, see "Changes to the stand-alone
5014interpreter" above.
5015
095936d2
JB
5016** The new functions scm_get_meta_args and scm_count_argv help you
5017implement the SCSH-style meta-argument, `\'.
5018
5019char **scm_get_meta_args (int ARGC, char **ARGV)
5020 If the second element of ARGV is a string consisting of a single
5021 backslash character (i.e. "\\" in Scheme notation), open the file
5022 named by the following argument, parse arguments from it, and return
5023 the spliced command line. The returned array is terminated by a
5024 null pointer.
5025
5026 For details of argument parsing, see above, under "guile now accepts
5027 command-line arguments compatible with SCSH..."
5028
5029int scm_count_argv (char **ARGV)
5030 Count the arguments in ARGV, assuming it is terminated by a null
5031 pointer.
5032
5033For an example of how these functions might be used, see the source
5034code for the function scm_shell in libguile/script.c.
5035
5036You will usually want to use scm_shell instead of calling this
5037function yourself.
5038
5039** The new function scm_compile_shell_switches turns an array of
5040command-line arguments into Scheme code to carry out the actions they
5041describe. Given ARGC and ARGV, it returns a Scheme expression to
5042evaluate, and calls scm_set_program_arguments to make any remaining
5043command-line arguments available to the Scheme code. For example,
5044given the following arguments:
5045
5046 -e main -s ekko a speckled gecko
5047
5048scm_set_program_arguments will return the following expression:
5049
5050 (begin (load "ekko") (main (command-line)) (quit))
5051
5052You will usually want to use scm_shell instead of calling this
5053function yourself.
5054
5055** The function scm_shell_usage prints a usage message appropriate for
5056an interpreter that uses scm_compile_shell_switches to handle its
5057command-line arguments.
5058
5059void scm_shell_usage (int FATAL, char *MESSAGE)
5060 Print a usage message to the standard error output. If MESSAGE is
5061 non-zero, write it before the usage message, followed by a newline.
5062 If FATAL is non-zero, exit the process, using FATAL as the
5063 termination status. (If you want to be compatible with Guile,
5064 always use 1 as the exit status when terminating due to command-line
5065 usage problems.)
5066
5067You will usually want to use scm_shell instead of calling this
5068function yourself.
48d224d7
JB
5069
5070** scm_eval_0str now returns SCM_UNSPECIFIED if the string contains no
095936d2
JB
5071expressions. It used to return SCM_EOL. Earth-shattering.
5072
5073** The macros for declaring scheme objects in C code have been
5074rearranged slightly. They are now:
5075
5076SCM_SYMBOL (C_NAME, SCHEME_NAME)
5077 Declare a static SCM variable named C_NAME, and initialize it to
5078 point to the Scheme symbol whose name is SCHEME_NAME. C_NAME should
5079 be a C identifier, and SCHEME_NAME should be a C string.
5080
5081SCM_GLOBAL_SYMBOL (C_NAME, SCHEME_NAME)
5082 Just like SCM_SYMBOL, but make C_NAME globally visible.
5083
5084SCM_VCELL (C_NAME, SCHEME_NAME)
5085 Create a global variable at the Scheme level named SCHEME_NAME.
5086 Declare a static SCM variable named C_NAME, and initialize it to
5087 point to the Scheme variable's value cell.
5088
5089SCM_GLOBAL_VCELL (C_NAME, SCHEME_NAME)
5090 Just like SCM_VCELL, but make C_NAME globally visible.
5091
5092The `guile-snarf' script writes initialization code for these macros
5093to its standard output, given C source code as input.
5094
5095The SCM_GLOBAL macro is gone.
5096
5097** The scm_read_line and scm_read_line_x functions have been replaced
5098by Scheme code based on the %read-delimited! procedure (known to C
5099code as scm_read_delimited_x). See its description above for more
5100information.
48d224d7 5101
095936d2
JB
5102** The function scm_sys_open has been renamed to scm_open. It now
5103returns a port instead of an FD object.
ea00ecba 5104
095936d2
JB
5105* The dynamic linking support has changed. For more information, see
5106libguile/DYNAMIC-LINKING.
ea00ecba 5107
f7b47737
JB
5108\f
5109Guile 1.0b3
3065a62a 5110
f3b1485f
JB
5111User-visible changes from Thursday, September 5, 1996 until Guile 1.0
5112(Sun 5 Jan 1997):
3065a62a 5113
4b521edb 5114* Changes to the 'guile' program:
3065a62a 5115
4b521edb
JB
5116** Guile now loads some new files when it starts up. Guile first
5117searches the load path for init.scm, and loads it if found. Then, if
5118Guile is not being used to execute a script, and the user's home
5119directory contains a file named `.guile', Guile loads that.
c6486f8a 5120
4b521edb 5121** You can now use Guile as a shell script interpreter.
3065a62a
JB
5122
5123To paraphrase the SCSH manual:
5124
5125 When Unix tries to execute an executable file whose first two
5126 characters are the `#!', it treats the file not as machine code to
5127 be directly executed by the native processor, but as source code
5128 to be executed by some interpreter. The interpreter to use is
5129 specified immediately after the #! sequence on the first line of
5130 the source file. The kernel reads in the name of the interpreter,
5131 and executes that instead. It passes the interpreter the source
5132 filename as its first argument, with the original arguments
5133 following. Consult the Unix man page for the `exec' system call
5134 for more information.
5135
1a1945be
JB
5136Now you can use Guile as an interpreter, using a mechanism which is a
5137compatible subset of that provided by SCSH.
5138
3065a62a
JB
5139Guile now recognizes a '-s' command line switch, whose argument is the
5140name of a file of Scheme code to load. It also treats the two
5141characters `#!' as the start of a comment, terminated by `!#'. Thus,
5142to make a file of Scheme code directly executable by Unix, insert the
5143following two lines at the top of the file:
5144
5145#!/usr/local/bin/guile -s
5146!#
5147
5148Guile treats the argument of the `-s' command-line switch as the name
5149of a file of Scheme code to load, and treats the sequence `#!' as the
5150start of a block comment, terminated by `!#'.
5151
5152For example, here's a version of 'echo' written in Scheme:
5153
5154#!/usr/local/bin/guile -s
5155!#
5156(let loop ((args (cdr (program-arguments))))
5157 (if (pair? args)
5158 (begin
5159 (display (car args))
5160 (if (pair? (cdr args))
5161 (display " "))
5162 (loop (cdr args)))))
5163(newline)
5164
5165Why does `#!' start a block comment terminated by `!#', instead of the
5166end of the line? That is the notation SCSH uses, and although we
5167don't yet support the other SCSH features that motivate that choice,
5168we would like to be backward-compatible with any existing Guile
3763761c
JB
5169scripts once we do. Furthermore, if the path to Guile on your system
5170is too long for your kernel, you can start the script with this
5171horrible hack:
5172
5173#!/bin/sh
5174exec /really/long/path/to/guile -s "$0" ${1+"$@"}
5175!#
3065a62a
JB
5176
5177Note that some very old Unix systems don't support the `#!' syntax.
5178
c6486f8a 5179
4b521edb 5180** You can now run Guile without installing it.
6685dc83
JB
5181
5182Previous versions of the interactive Guile interpreter (`guile')
5183couldn't start up unless Guile's Scheme library had been installed;
5184they used the value of the environment variable `SCHEME_LOAD_PATH'
5185later on in the startup process, but not to find the startup code
5186itself. Now Guile uses `SCHEME_LOAD_PATH' in all searches for Scheme
5187code.
5188
5189To run Guile without installing it, build it in the normal way, and
5190then set the environment variable `SCHEME_LOAD_PATH' to a
5191colon-separated list of directories, including the top-level directory
5192of the Guile sources. For example, if you unpacked Guile so that the
5193full filename of this NEWS file is /home/jimb/guile-1.0b3/NEWS, then
5194you might say
5195
5196 export SCHEME_LOAD_PATH=/home/jimb/my-scheme:/home/jimb/guile-1.0b3
5197
c6486f8a 5198
4b521edb
JB
5199** Guile's read-eval-print loop no longer prints #<unspecified>
5200results. If the user wants to see this, she can evaluate the
5201expression (assert-repl-print-unspecified #t), perhaps in her startup
48d224d7 5202file.
6685dc83 5203
4b521edb
JB
5204** Guile no longer shows backtraces by default when an error occurs;
5205however, it does display a message saying how to get one, and how to
5206request that they be displayed by default. After an error, evaluate
5207 (backtrace)
5208to see a backtrace, and
5209 (debug-enable 'backtrace)
5210to see them by default.
6685dc83 5211
6685dc83 5212
d9fb83d9 5213
4b521edb
JB
5214* Changes to Guile Scheme:
5215
5216** Guile now distinguishes between #f and the empty list.
5217
5218This is for compatibility with the IEEE standard, the (possibly)
5219upcoming Revised^5 Report on Scheme, and many extant Scheme
5220implementations.
5221
5222Guile used to have #f and '() denote the same object, to make Scheme's
5223type system more compatible with Emacs Lisp's. However, the change
5224caused too much trouble for Scheme programmers, and we found another
5225way to reconcile Emacs Lisp with Scheme that didn't require this.
5226
5227
5228** Guile's delq, delv, delete functions, and their destructive
c6486f8a
JB
5229counterparts, delq!, delv!, and delete!, now remove all matching
5230elements from the list, not just the first. This matches the behavior
5231of the corresponding Emacs Lisp functions, and (I believe) the Maclisp
5232functions which inspired them.
5233
5234I recognize that this change may break code in subtle ways, but it
5235seems best to make the change before the FSF's first Guile release,
5236rather than after.
5237
5238
4b521edb 5239** The compiled-library-path function has been deleted from libguile.
6685dc83 5240
4b521edb 5241** The facilities for loading Scheme source files have changed.
c6486f8a 5242
4b521edb 5243*** The variable %load-path now tells Guile which directories to search
6685dc83
JB
5244for Scheme code. Its value is a list of strings, each of which names
5245a directory.
5246
4b521edb
JB
5247*** The variable %load-extensions now tells Guile which extensions to
5248try appending to a filename when searching the load path. Its value
5249is a list of strings. Its default value is ("" ".scm").
5250
5251*** (%search-load-path FILENAME) searches the directories listed in the
5252value of the %load-path variable for a Scheme file named FILENAME,
5253with all the extensions listed in %load-extensions. If it finds a
5254match, then it returns its full filename. If FILENAME is absolute, it
5255returns it unchanged. Otherwise, it returns #f.
6685dc83 5256
4b521edb
JB
5257%search-load-path will not return matches that refer to directories.
5258
5259*** (primitive-load FILENAME :optional CASE-INSENSITIVE-P SHARP)
5260uses %seach-load-path to find a file named FILENAME, and loads it if
5261it finds it. If it can't read FILENAME for any reason, it throws an
5262error.
6685dc83
JB
5263
5264The arguments CASE-INSENSITIVE-P and SHARP are interpreted as by the
4b521edb
JB
5265`read' function.
5266
5267*** load uses the same searching semantics as primitive-load.
5268
5269*** The functions %try-load, try-load-with-path, %load, load-with-path,
5270basic-try-load-with-path, basic-load-with-path, try-load-module-with-
5271path, and load-module-with-path have been deleted. The functions
5272above should serve their purposes.
5273
5274*** If the value of the variable %load-hook is a procedure,
5275`primitive-load' applies its value to the name of the file being
5276loaded (without the load path directory name prepended). If its value
5277is #f, it is ignored. Otherwise, an error occurs.
5278
5279This is mostly useful for printing load notification messages.
5280
5281
5282** The function `eval!' is no longer accessible from the scheme level.
5283We can't allow operations which introduce glocs into the scheme level,
5284because Guile's type system can't handle these as data. Use `eval' or
5285`read-and-eval!' (see below) as replacement.
5286
5287** The new function read-and-eval! reads an expression from PORT,
5288evaluates it, and returns the result. This is more efficient than
5289simply calling `read' and `eval', since it is not necessary to make a
5290copy of the expression for the evaluator to munge.
5291
5292Its optional arguments CASE_INSENSITIVE_P and SHARP are interpreted as
5293for the `read' function.
5294
5295
5296** The function `int?' has been removed; its definition was identical
5297to that of `integer?'.
5298
5299** The functions `<?', `<?', `<=?', `=?', `>?', and `>=?'. Code should
5300use the R4RS names for these functions.
5301
5302** The function object-properties no longer returns the hash handle;
5303it simply returns the object's property list.
5304
5305** Many functions have been changed to throw errors, instead of
5306returning #f on failure. The point of providing exception handling in
5307the language is to simplify the logic of user code, but this is less
5308useful if Guile's primitives don't throw exceptions.
5309
5310** The function `fileno' has been renamed from `%fileno'.
5311
5312** The function primitive-mode->fdes returns #t or #f now, not 1 or 0.
5313
5314
5315* Changes to Guile's C interface:
5316
5317** The library's initialization procedure has been simplified.
5318scm_boot_guile now has the prototype:
5319
5320void scm_boot_guile (int ARGC,
5321 char **ARGV,
5322 void (*main_func) (),
5323 void *closure);
5324
5325scm_boot_guile calls MAIN_FUNC, passing it CLOSURE, ARGC, and ARGV.
5326MAIN_FUNC should do all the work of the program (initializing other
5327packages, reading user input, etc.) before returning. When MAIN_FUNC
5328returns, call exit (0); this function never returns. If you want some
5329other exit value, MAIN_FUNC may call exit itself.
5330
5331scm_boot_guile arranges for program-arguments to return the strings
5332given by ARGC and ARGV. If MAIN_FUNC modifies ARGC/ARGV, should call
5333scm_set_program_arguments with the final list, so Scheme code will
5334know which arguments have been processed.
5335
5336scm_boot_guile establishes a catch-all catch handler which prints an
5337error message and exits the process. This means that Guile exits in a
5338coherent way when system errors occur and the user isn't prepared to
5339handle it. If the user doesn't like this behavior, they can establish
5340their own universal catcher in MAIN_FUNC to shadow this one.
5341
5342Why must the caller do all the real work from MAIN_FUNC? The garbage
5343collector assumes that all local variables of type SCM will be above
5344scm_boot_guile's stack frame on the stack. If you try to manipulate
5345SCM values after this function returns, it's the luck of the draw
5346whether the GC will be able to find the objects you allocate. So,
5347scm_boot_guile function exits, rather than returning, to discourage
5348people from making that mistake.
5349
5350The IN, OUT, and ERR arguments were removed; there are other
5351convenient ways to override these when desired.
5352
5353The RESULT argument was deleted; this function should never return.
5354
5355The BOOT_CMD argument was deleted; the MAIN_FUNC argument is more
5356general.
5357
5358
5359** Guile's header files should no longer conflict with your system's
5360header files.
5361
5362In order to compile code which #included <libguile.h>, previous
5363versions of Guile required you to add a directory containing all the
5364Guile header files to your #include path. This was a problem, since
5365Guile's header files have names which conflict with many systems'
5366header files.
5367
5368Now only <libguile.h> need appear in your #include path; you must
5369refer to all Guile's other header files as <libguile/mumble.h>.
5370Guile's installation procedure puts libguile.h in $(includedir), and
5371the rest in $(includedir)/libguile.
5372
5373
5374** Two new C functions, scm_protect_object and scm_unprotect_object,
5375have been added to the Guile library.
5376
5377scm_protect_object (OBJ) protects OBJ from the garbage collector.
5378OBJ will not be freed, even if all other references are dropped,
5379until someone does scm_unprotect_object (OBJ). Both functions
5380return OBJ.
5381
5382Note that calls to scm_protect_object do not nest. You can call
5383scm_protect_object any number of times on a given object, and the
5384next call to scm_unprotect_object will unprotect it completely.
5385
5386Basically, scm_protect_object and scm_unprotect_object just
5387maintain a list of references to things. Since the GC knows about
5388this list, all objects it mentions stay alive. scm_protect_object
5389adds its argument to the list; scm_unprotect_object remove its
5390argument from the list.
5391
5392
5393** scm_eval_0str now returns the value of the last expression
5394evaluated.
5395
5396** The new function scm_read_0str reads an s-expression from a
5397null-terminated string, and returns it.
5398
5399** The new function `scm_stdio_to_port' converts a STDIO file pointer
5400to a Scheme port object.
5401
5402** The new function `scm_set_program_arguments' allows C code to set
e80c8fea 5403the value returned by the Scheme `program-arguments' function.
6685dc83 5404
6685dc83 5405\f
1a1945be
JB
5406Older changes:
5407
5408* Guile no longer includes sophisticated Tcl/Tk support.
5409
5410The old Tcl/Tk support was unsatisfying to us, because it required the
5411user to link against the Tcl library, as well as Tk and Guile. The
5412interface was also un-lispy, in that it preserved Tcl/Tk's practice of
5413referring to widgets by names, rather than exporting widgets to Scheme
5414code as a special datatype.
5415
5416In the Usenix Tk Developer's Workshop held in July 1996, the Tcl/Tk
5417maintainers described some very interesting changes in progress to the
5418Tcl/Tk internals, which would facilitate clean interfaces between lone
5419Tk and other interpreters --- even for garbage-collected languages
5420like Scheme. They expected the new Tk to be publicly available in the
5421fall of 1996.
5422
5423Since it seems that Guile might soon have a new, cleaner interface to
5424lone Tk, and that the old Guile/Tk glue code would probably need to be
5425completely rewritten, we (Jim Blandy and Richard Stallman) have
5426decided not to support the old code. We'll spend the time instead on
5427a good interface to the newer Tk, as soon as it is available.
5c54da76 5428
8512dea6 5429Until then, gtcltk-lib provides trivial, low-maintenance functionality.
deb95d71 5430
5c54da76
JB
5431\f
5432Copyright information:
5433
ea00ecba 5434Copyright (C) 1996,1997 Free Software Foundation, Inc.
5c54da76
JB
5435
5436 Permission is granted to anyone to make or distribute verbatim copies
5437 of this document as received, in any medium, provided that the
5438 copyright notice and this permission notice are preserved,
5439 thus giving the recipient permission to redistribute in turn.
5440
5441 Permission is granted to distribute modified versions
5442 of this document, or of portions of it,
5443 under the above conditions, provided also that they
5444 carry prominent notices stating who last changed them.
5445
48d224d7
JB
5446\f
5447Local variables:
5448mode: outline
5449paragraph-separate: "[ \f]*$"
5450end:
5451