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