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