* tags.h (scm_tc7_substring): Changed the comment and code to
[bpt/guile.git] / NEWS
CommitLineData
f7b47737
JB
1Guile NEWS --- history of user-visible changes. -*- text -*-
2Copyright (C) 1996, 1997 Free Software Foundation, Inc.
5c54da76
JB
3See the end for copying conditions.
4
16f2ebea 5Please send Guile bug reports to bug-guile@prep.ai.mit.edu.
5c54da76 6\f
c484bf7f
JB
7Changes since Guile 1.2:
8
9* Changes to the distribution
10
3a97e020
MD
11** libguile/append.h, libguile/append.c, libguile/sequences.h,
12libguile/sequences.c removed.
13
c484bf7f
JB
14* Changes to the stand-alone interpreter
15
ec4ab4fd
GH
16New procedures have been added to implement a "batch mode":
17
18Function: batch-mode?
19
20 Returns a boolean indicating whether the interpreter is in batch
21 mode.
22
23Function: set-batch-mode?! ARG
24
25 If ARG is true, switches the interpreter to batch mode. The `#f'
26 case has not been implemented.
27
c484bf7f
JB
28* Changes to the procedure for linking libguile with your programs
29
30* Changes to Scheme functions and syntax
7ad3c1e7 31
8d9dcb3c
MV
32** Some magic has been added to the printer to better handle user
33written printing routines (like record printers, closure printers).
34
35The problem is that these user written routines must have access to
36the current `prine-state' to be able to handle fancy things like
37detection of circular references. These print-states have to be
38passed to the builtin printing routines (display, write, etc) to
39properly continue the print chain.
40
41We didn't want to change all existing print code so that it
42explicitely passes thru a print state in addition to a port. Instead,
43we extented the possible values that the builtin printing routines
44accept as a `port'. In addition to a normal port, they now also take
45a pair of a normal port and a print-state. Printing will go to the
46port and the print-state will be used to control the detection of
47circular references, etc. If the builtin function does not care for a
48print-state, it is simply ignored.
49
50User written callbacks are now called with such a pair as their
51`port', but because every function now accepts this pair as a PORT
52argument, you don't have to worry about that. In fact, it is probably
53safest to not check for these pairs.
54
55However, it is sometimes necessary to continue a print chain on a
56different port, for example to get a intermediate string
57representation of the printed value, mangle that string somehow, and
58then to finally print the mangled string. Use the new function
59
60 inherit-print-state OLD-PORT NEW-PORT
61
62for this. It constructs a new `port' that prints to NEW-PORT but
63inherits the print-state of OLD-PORT.
64
ef1ea498
MD
65** struct-vtable-offset renamed to vtable-offset-user
66
67** New constants: vtable-index-layout, vtable-index-vtable, vtable-index-printer
68
69** There is now a fourth (optional) argument to make-vtable-vtable and
70 make-struct when constructing new types (vtables). This argument
71 initializes field vtable-index-printer of the vtable.
72
4851dc57
MV
73** The detection of circular references has been extended to structs.
74That is, a structure that -- in the process of being printed -- prints
75itself does not lead to infinite recursion.
76
77** There is now some basic support for fluids. Please read
78"libguile/fluid.h" to find out more. It is accessible from Scheme with
79the following functions and macros:
80
9c3fb66f
MV
81Function: make-fluid
82
83 Create a new fluid object. Fluids are not special variables or
84 some other extension to the semantics of Scheme, but rather
85 ordinary Scheme objects. You can store them into variables (that
86 are still lexically scoped, of course) or into any other place you
87 like. Every fluid has a initial value of `#f'.
04c76b58 88
9c3fb66f 89Function: fluid? OBJ
04c76b58 90
9c3fb66f 91 Test whether OBJ is a fluid.
04c76b58 92
9c3fb66f
MV
93Function: fluid-ref FLUID
94Function: fluid-set! FLUID VAL
04c76b58
MV
95
96 Access/modify the fluid FLUID. Modifications are only visible
97 within the current dynamic root (that includes threads).
98
9c3fb66f
MV
99Function: with-fluids* FLUIDS VALUES THUNK
100
101 FLUIDS is a list of fluids and VALUES a corresponding list of
102 values for these fluids. Before THUNK gets called the values are
103 installed in the fluids and the old values of the fluids are
104 saved in the VALUES list. When the flow of control leaves THUNK
105 or reenters it, the values get swapped again. You might think of
106 this as a `safe-fluid-excursion'. Note that the VALUES list is
107 modified by `with-fluids*'.
108
109Macro: with-fluids ((FLUID VALUE) ...) FORM ...
110
111 The same as `with-fluids*' but with a different syntax. It looks
112 just like `let', but both FLUID and VALUE are evaluated. Remember,
113 fluids are not special variables but ordinary objects. FLUID
114 should evaluate to a fluid.
04c76b58 115
3a97e020
MD
116** Removed procedures:
117
118list-length, list-append, list-append!, list-reverse, list-reverse!
119
298aa6e3
MD
120** array-map renamed to array-map!
121
122** serial-array-map renamed to serial-array-map!
123
64d01d13
GH
124* Changes to system call interfaces:
125
126** close-port, close-input-port and close-output-port now return a
127boolean instead of an `unspecified' object. #t means that the port
128was successfully closed, while #f means it was already closed. It is
129also now possible for these procedures to raise an exception if an
130error occurs (some errors from write can be delayed until close.)
131
6afcd3b2
GH
132** the first argument to chmod, fcntl, ftell and fseek can now be a
133file descriptor.
134
135** the third argument to fcntl is now optional.
136
137** the first argument to chown can now be a file descriptor or a port.
138
139** the argument to stat can now be a port.
140
64d01d13
GH
141** The following new procedures have been added (most use scsh
142interfaces):
143
ec4ab4fd
GH
144** procedure: close PORT/FD
145 Similar to close-port (*note close-port: Closing Ports.), but also
146 works on file descriptors. A side effect of closing a file
147 descriptor is that any ports using that file descriptor are moved
148 to a different file descriptor and have their revealed counts set
149 to zero.
150
151** procedure: port->fdes PORT
152 Returns the integer file descriptor underlying PORT. As a side
153 effect the revealed count of PORT is incremented.
154
155** procedure: fdes->ports FDES
156 Returns a list of existing ports which have FDES as an underlying
157 file descriptor, without changing their revealed counts.
158
159** procedure: fdes->inport FDES
160 Returns an existing input port which has FDES as its underlying
161 file descriptor, if one exists, and increments its revealed count.
162 Otherwise, returns a new input port with a revealed count of 1.
163
164** procedure: fdes->outport FDES
165 Returns an existing output port which has FDES as its underlying
166 file descriptor, if one exists, and increments its revealed count.
167 Otherwise, returns a new output port with a revealed count of 1.
168
169 The next group of procedures perform a `dup2' system call, if NEWFD
170(an integer) is supplied, otherwise a `dup'. The file descriptor to be
171duplicated can be supplied as an integer or contained in a port. The
64d01d13
GH
172type of value returned varies depending on which procedure is used.
173
ec4ab4fd
GH
174 All procedures also have the side effect when performing `dup2' that
175any ports using NEWFD are moved to a different file descriptor and have
64d01d13
GH
176their revealed counts set to zero.
177
ec4ab4fd
GH
178** procedure: dup->fdes PORT/FD [NEWFD]
179 Returns an integer file descriptor.
64d01d13 180
ec4ab4fd
GH
181** procedure: dup->inport PORT/FD [NEWFD]
182 Returns a new input port using the new file descriptor.
64d01d13 183
ec4ab4fd
GH
184** procedure: dup->outport PORT/FD [NEWFD]
185 Returns a new output port using the new file descriptor.
64d01d13 186
ec4ab4fd
GH
187** procedure: dup PORT/FD [NEWFD]
188 Returns a new port if PORT/FD is a port, with the same mode as the
189 supplied port, otherwise returns an integer file descriptor.
64d01d13 190
ec4ab4fd
GH
191** procedure: dup->port PORT/FD MODE [NEWFD]
192 Returns a new port using the new file descriptor. MODE supplies a
193 mode string for the port (*note open-file: File Ports.).
64d01d13 194
ec4ab4fd
GH
195** procedure: setenv NAME VALUE
196 Modifies the environment of the current process, which is also the
197 default environment inherited by child processes.
64d01d13 198
ec4ab4fd
GH
199 If VALUE is `#f', then NAME is removed from the environment.
200 Otherwise, the string NAME=VALUE is added to the environment,
201 replacing any existing string with name matching NAME.
64d01d13 202
ec4ab4fd 203 The return value is unspecified.
956055a9 204
ec4ab4fd 205** procedure: truncate-file OBJ SIZE
6afcd3b2
GH
206 Truncates the file referred to by OBJ to at most SIZE bytes. OBJ
207 can be a string containing a file name or an integer file
208 descriptor or port open for output on the file. The underlying
209 system calls are `truncate' and `ftruncate'.
210
211 The return value is unspecified.
212
ec4ab4fd 213** procedure: setvbuf PORT MODE [SIZE]
7a6f1ffa
GH
214 Set the buffering mode for PORT. MODE can be:
215 `_IONBF'
216 non-buffered
217
218 `_IOLBF'
219 line buffered
220
221 `_IOFBF'
222 block buffered, using a newly allocated buffer of SIZE bytes.
223 However if SIZE is zero or unspecified, the port will be made
224 non-buffered.
225
226 This procedure should not be used after I/O has been performed with
227 the port.
228
229 Ports are usually block buffered by default, with a default buffer
230 size. Procedures e.g., *Note open-file: File Ports, which accept a
231 mode string allow `0' to be added to request an unbuffered port.
232
ec4ab4fd 233** procedure: fsync PORT/FD
6afcd3b2
GH
234 Copies any unwritten data for the specified output file descriptor
235 to disk. If PORT/FD is a port, its buffer is flushed before the
236 underlying file descriptor is fsync'd. The return value is
237 unspecified.
238
ec4ab4fd 239** procedure: open-fdes PATH FLAGS [MODES]
6afcd3b2
GH
240 Similar to `open' but returns a file descriptor instead of a port.
241
242** procedure: execle PATH ENV [ARG] ...
243 Similar to `execl', but the environment of the new process is
244 specified by ENV, which must be a list of strings as returned by
245 the `environ' procedure.
246
247 This procedure is currently implemented using the `execve' system
248 call, but we call it `execle' because of its Scheme calling
249 interface.
250
ec4ab4fd
GH
251** procedure: strerror ERRNO
252 Returns the Unix error message corresponding to ERRNO, an integer.
253
6afcd3b2
GH
254** procedure: primitive-exit [STATUS]
255 Terminate the current process without unwinding the Scheme stack.
256 This is would typically be useful after a fork. The exit status
257 is STATUS if supplied, otherwise zero.
258
259** procedure: times
260 Returns an object with information about real and processor time.
261 The following procedures accept such an object as an argument and
262 return a selected component:
263
264 `tms:clock'
265 The current real time, expressed as time units relative to an
266 arbitrary base.
267
268 `tms:utime'
269 The CPU time units used by the calling process.
270
271 `tms:stime'
272 The CPU time units used by the system on behalf of the
273 calling process.
274
275 `tms:cutime'
276 The CPU time units used by terminated child processes of the
277 calling process, whose status has been collected (e.g., using
278 `waitpid').
279
280 `tms:cstime'
281 Similarly, the CPU times units used by the system on behalf of
282 terminated child processes.
7ad3c1e7 283
c484bf7f
JB
284* Changes to the gh_ interface
285
5424b4f7
MD
286** Function: void gh_write (SCM x)
287
288Write the printed representation of the scheme object x to the current
289output port. Corresponds to the scheme level `write'.
290
3a97e020
MD
291** gh_list_length renamed to gh_length.
292
8d6787b6
MG
293** vector handling routines
294
295Several major changes. In particular, gh_vector() now resembles
296(vector ...) (with a caveat -- see manual), and gh_make_vector() now
297exists and behaves like (make-vector ...). gh_vref() and gh_vset()
298have been renamed gh_vector_set() and gh_vector_ref(). Some missing
299vector-related gh_ functions have been implemented.
300
c484bf7f
JB
301* Changes to the scm_ interface
302
5424b4f7
MD
303** Function: SCM scm_internal_stack_catch (SCM tag,
304 scm_catch_body_t body,
305 void *body_data,
306 scm_catch_handler_t handler,
307 void *handler_data)
308
309A new sibling to the other two C level `catch' functions
310scm_internal_catch and scm_internal_lazy_catch. Use it if you want
311the stack to be saved automatically into the variable `the-last-stack'
312(scm_the_last_stack_var) on error. This is necessary if you want to
313use advanced error reporting, such as calling scm_display_error and
314scm_display_backtrace. (They both take a stack object as argument.)
315
88482b31
MD
316** The hook scm_error_callback has been removed. It was originally
317intended as a way for the user to install his own error handler. But
318that method works badly since it intervenes between throw and catch,
319thereby changing the semantics of expressions like (catch #t ...).
320The correct way to do it is to use one of the C level catch functions
321in throw.c: scm_internal_catch/lazy_catch/stack_catch.
322
3a97e020
MD
323** Removed functions:
324
325scm_obj_length, scm_list_length, scm_list_append, scm_list_append_x,
326scm_list_reverse, scm_list_reverse_x
327
328** New macros: SCM_LISTn where n is one of the integers 0-9.
329
330These can be used for pretty list creation from C. The idea is taken
331from Erick Gallesio's STk.
332
298aa6e3
MD
333** scm_array_map renamed to scm_array_map_x
334
527da704
MD
335** mbstrings are now removed
336
337This means that the type codes scm_tc7_mb_string and
338scm_tc7_mb_substring has been removed.
339
340** The macros SCM_TYP7D and SCM_TYP7SD has been removed.
341
342** The macro SCM_TYP7S has taken the role of the old SCM_TYP7D
343
344SCM_TYP7S now masks away the bit which distinguishes substrings from
345strings.
346
c484bf7f
JB
347\f
348Changes in Guile 1.2 (released Tuesday, June 24 1997):
cf78e9e8 349
737c9113
JB
350* Changes to the distribution
351
832b09ed
JB
352** Nightly snapshots are now available from ftp.red-bean.com.
353The old server, ftp.cyclic.com, has been relinquished to its rightful
354owner.
355
356Nightly snapshots of the Guile development sources are now available via
357anonymous FTP from ftp.red-bean.com, as /pub/guile/guile-snap.tar.gz.
358
359Via the web, that's: ftp://ftp.red-bean.com/pub/guile/guile-snap.tar.gz
360For getit, that's: ftp.red-bean.com:/pub/guile/guile-snap.tar.gz
361
0fcab5ed
JB
362** To run Guile without installing it, the procedure has changed a bit.
363
364If you used a separate build directory to compile Guile, you'll need
365to include the build directory in SCHEME_LOAD_PATH, as well as the
366source directory. See the `INSTALL' file for examples.
367
737c9113
JB
368* Changes to the procedure for linking libguile with your programs
369
94982a4e
JB
370** The standard Guile load path for Scheme code now includes
371$(datadir)/guile (usually /usr/local/share/guile). This means that
372you can install your own Scheme files there, and Guile will find them.
373(Previous versions of Guile only checked a directory whose name
374contained the Guile version number, so you had to re-install or move
375your Scheme sources each time you installed a fresh version of Guile.)
376
377The load path also includes $(datadir)/guile/site; we recommend
378putting individual Scheme files there. If you want to install a
379package with multiple source files, create a directory for them under
380$(datadir)/guile.
381
382** Guile 1.2 will now use the Rx regular expression library, if it is
383installed on your system. When you are linking libguile into your own
384programs, this means you will have to link against -lguile, -lqt (if
385you configured Guile with thread support), and -lrx.
27590f82
JB
386
387If you are using autoconf to generate configuration scripts for your
388application, the following lines should suffice to add the appropriate
389libraries to your link command:
390
391### Find Rx, quickthreads and libguile.
392AC_CHECK_LIB(rx, main)
393AC_CHECK_LIB(qt, main)
394AC_CHECK_LIB(guile, scm_shell)
395
94982a4e
JB
396The Guile 1.2 distribution does not contain sources for the Rx
397library, as Guile 1.0 did. If you want to use Rx, you'll need to
398retrieve it from a GNU FTP site and install it separately.
399
b83b8bee
JB
400* Changes to Scheme functions and syntax
401
e035e7e6
MV
402** The dynamic linking features of Guile are now enabled by default.
403You can disable them by giving the `--disable-dynamic-linking' option
404to configure.
405
e035e7e6
MV
406 (dynamic-link FILENAME)
407
408 Find the object file denoted by FILENAME (a string) and link it
409 into the running Guile application. When everything works out,
410 return a Scheme object suitable for representing the linked object
411 file. Otherwise an error is thrown. How object files are
412 searched is system dependent.
413
414 (dynamic-object? VAL)
415
416 Determine whether VAL represents a dynamically linked object file.
417
418 (dynamic-unlink DYNOBJ)
419
420 Unlink the indicated object file from the application. DYNOBJ
421 should be one of the values returned by `dynamic-link'.
422
423 (dynamic-func FUNCTION DYNOBJ)
424
425 Search the C function indicated by FUNCTION (a string or symbol)
426 in DYNOBJ and return some Scheme object that can later be used
427 with `dynamic-call' to actually call this function. Right now,
428 these Scheme objects are formed by casting the address of the
429 function to `long' and converting this number to its Scheme
430 representation.
431
432 (dynamic-call FUNCTION DYNOBJ)
433
434 Call the C function indicated by FUNCTION and DYNOBJ. The
435 function is passed no arguments and its return value is ignored.
436 When FUNCTION is something returned by `dynamic-func', call that
437 function and ignore DYNOBJ. When FUNCTION is a string (or symbol,
438 etc.), look it up in DYNOBJ; this is equivalent to
439
440 (dynamic-call (dynamic-func FUNCTION DYNOBJ) #f)
441
442 Interrupts are deferred while the C function is executing (with
443 SCM_DEFER_INTS/SCM_ALLOW_INTS).
444
445 (dynamic-args-call FUNCTION DYNOBJ ARGS)
446
447 Call the C function indicated by FUNCTION and DYNOBJ, but pass it
448 some arguments and return its return value. The C function is
449 expected to take two arguments and return an `int', just like
450 `main':
451
452 int c_func (int argc, char **argv);
453
454 ARGS must be a list of strings and is converted into an array of
455 `char *'. The array is passed in ARGV and its size in ARGC. The
456 return value is converted to a Scheme number and returned from the
457 call to `dynamic-args-call'.
458
0fcab5ed
JB
459When dynamic linking is disabled or not supported on your system,
460the above functions throw errors, but they are still available.
461
e035e7e6
MV
462Here is a small example that works on GNU/Linux:
463
464 (define libc-obj (dynamic-link "libc.so"))
465 (dynamic-args-call 'rand libc-obj '())
466
467See the file `libguile/DYNAMIC-LINKING' for additional comments.
468
27590f82
JB
469** The #/ syntax for module names is depreciated, and will be removed
470in a future version of Guile. Instead of
471
472 #/foo/bar/baz
473
474instead write
475
476 (foo bar baz)
477
478The latter syntax is more consistent with existing Lisp practice.
479
5dade857
MV
480** Guile now does fancier printing of structures. Structures are the
481underlying implementation for records, which in turn are used to
482implement modules, so all of these object now print differently and in
483a more informative way.
484
161029df
JB
485The Scheme printer will examine the builtin variable *struct-printer*
486whenever it needs to print a structure object. When this variable is
487not `#f' it is deemed to be a procedure and will be applied to the
488structure object and the output port. When *struct-printer* is `#f'
489or the procedure return `#f' the structure object will be printed in
490the boring #<struct 80458270> form.
5dade857
MV
491
492This hook is used by some routines in ice-9/boot-9.scm to implement
493type specific printing routines. Please read the comments there about
494"printing structs".
495
496One of the more specific uses of structs are records. The printing
497procedure that could be passed to MAKE-RECORD-TYPE is now actually
498called. It should behave like a *struct-printer* procedure (described
499above).
500
b83b8bee
JB
501** Guile now supports a new R4RS-compliant syntax for keywords. A
502token of the form #:NAME, where NAME has the same syntax as a Scheme
503symbol, is the external representation of the keyword named NAME.
504Keyword objects print using this syntax as well, so values containing
1e5afba0
JB
505keyword objects can be read back into Guile. When used in an
506expression, keywords are self-quoting objects.
b83b8bee
JB
507
508Guile suports this read syntax, and uses this print syntax, regardless
509of the current setting of the `keyword' read option. The `keyword'
510read option only controls whether Guile recognizes the `:NAME' syntax,
511which is incompatible with R4RS. (R4RS says such token represent
512symbols.)
737c9113
JB
513
514** Guile has regular expression support again. Guile 1.0 included
515functions for matching regular expressions, based on the Rx library.
516In Guile 1.1, the Guile/Rx interface was removed to simplify the
517distribution, and thus Guile had no regular expression support. Guile
94982a4e
JB
5181.2 again supports the most commonly used functions, and supports all
519of SCSH's regular expression functions.
2409cdfa 520
94982a4e
JB
521If your system does not include a POSIX regular expression library,
522and you have not linked Guile with a third-party regexp library such as
523Rx, these functions will not be available. You can tell whether your
524Guile installation includes regular expression support by checking
525whether the `*features*' list includes the `regex' symbol.
737c9113 526
94982a4e 527*** regexp functions
161029df 528
94982a4e
JB
529By default, Guile supports POSIX extended regular expressions. That
530means that the characters `(', `)', `+' and `?' are special, and must
531be escaped if you wish to match the literal characters.
e1a191a8 532
94982a4e
JB
533This regular expression interface was modeled after that implemented
534by SCSH, the Scheme Shell. It is intended to be upwardly compatible
535with SCSH regular expressions.
536
537**** Function: string-match PATTERN STR [START]
538 Compile the string PATTERN into a regular expression and compare
539 it with STR. The optional numeric argument START specifies the
540 position of STR at which to begin matching.
541
542 `string-match' returns a "match structure" which describes what,
543 if anything, was matched by the regular expression. *Note Match
544 Structures::. If STR does not match PATTERN at all,
545 `string-match' returns `#f'.
546
547 Each time `string-match' is called, it must compile its PATTERN
548argument into a regular expression structure. This operation is
549expensive, which makes `string-match' inefficient if the same regular
550expression is used several times (for example, in a loop). For better
551performance, you can compile a regular expression in advance and then
552match strings against the compiled regexp.
553
554**** Function: make-regexp STR [FLAGS]
555 Compile the regular expression described by STR, and return the
556 compiled regexp structure. If STR does not describe a legal
557 regular expression, `make-regexp' throws a
558 `regular-expression-syntax' error.
559
560 FLAGS may be the bitwise-or of one or more of the following:
561
562**** Constant: regexp/extended
563 Use POSIX Extended Regular Expression syntax when interpreting
564 STR. If not set, POSIX Basic Regular Expression syntax is used.
565 If the FLAGS argument is omitted, we assume regexp/extended.
566
567**** Constant: regexp/icase
568 Do not differentiate case. Subsequent searches using the
569 returned regular expression will be case insensitive.
570
571**** Constant: regexp/newline
572 Match-any-character operators don't match a newline.
573
574 A non-matching list ([^...]) not containing a newline matches a
575 newline.
576
577 Match-beginning-of-line operator (^) matches the empty string
578 immediately after a newline, regardless of whether the FLAGS
579 passed to regexp-exec contain regexp/notbol.
580
581 Match-end-of-line operator ($) matches the empty string
582 immediately before a newline, regardless of whether the FLAGS
583 passed to regexp-exec contain regexp/noteol.
584
585**** Function: regexp-exec REGEXP STR [START [FLAGS]]
586 Match the compiled regular expression REGEXP against `str'. If
587 the optional integer START argument is provided, begin matching
588 from that position in the string. Return a match structure
589 describing the results of the match, or `#f' if no match could be
590 found.
591
592 FLAGS may be the bitwise-or of one or more of the following:
593
594**** Constant: regexp/notbol
595 The match-beginning-of-line operator always fails to match (but
596 see the compilation flag regexp/newline above) This flag may be
597 used when different portions of a string are passed to
598 regexp-exec and the beginning of the string should not be
599 interpreted as the beginning of the line.
600
601**** Constant: regexp/noteol
602 The match-end-of-line operator always fails to match (but see the
603 compilation flag regexp/newline above)
604
605**** Function: regexp? OBJ
606 Return `#t' if OBJ is a compiled regular expression, or `#f'
607 otherwise.
608
609 Regular expressions are commonly used to find patterns in one string
610and replace them with the contents of another string.
611
612**** Function: regexp-substitute PORT MATCH [ITEM...]
613 Write to the output port PORT selected contents of the match
614 structure MATCH. Each ITEM specifies what should be written, and
615 may be one of the following arguments:
616
617 * A string. String arguments are written out verbatim.
618
619 * An integer. The submatch with that number is written.
620
621 * The symbol `pre'. The portion of the matched string preceding
622 the regexp match is written.
623
624 * The symbol `post'. The portion of the matched string
625 following the regexp match is written.
626
627 PORT may be `#f', in which case nothing is written; instead,
628 `regexp-substitute' constructs a string from the specified ITEMs
629 and returns that.
630
631**** Function: regexp-substitute/global PORT REGEXP TARGET [ITEM...]
632 Similar to `regexp-substitute', but can be used to perform global
633 substitutions on STR. Instead of taking a match structure as an
634 argument, `regexp-substitute/global' takes two string arguments: a
635 REGEXP string describing a regular expression, and a TARGET string
636 which should be matched against this regular expression.
637
638 Each ITEM behaves as in REGEXP-SUBSTITUTE, with the following
639 exceptions:
640
641 * A function may be supplied. When this function is called, it
642 will be passed one argument: a match structure for a given
643 regular expression match. It should return a string to be
644 written out to PORT.
645
646 * The `post' symbol causes `regexp-substitute/global' to recurse
647 on the unmatched portion of STR. This *must* be supplied in
648 order to perform global search-and-replace on STR; if it is
649 not present among the ITEMs, then `regexp-substitute/global'
650 will return after processing a single match.
651
652*** Match Structures
653
654 A "match structure" is the object returned by `string-match' and
655`regexp-exec'. It describes which portion of a string, if any, matched
656the given regular expression. Match structures include: a reference to
657the string that was checked for matches; the starting and ending
658positions of the regexp match; and, if the regexp included any
659parenthesized subexpressions, the starting and ending positions of each
660submatch.
661
662 In each of the regexp match functions described below, the `match'
663argument must be a match structure returned by a previous call to
664`string-match' or `regexp-exec'. Most of these functions return some
665information about the original target string that was matched against a
666regular expression; we will call that string TARGET for easy reference.
667
668**** Function: regexp-match? OBJ
669 Return `#t' if OBJ is a match structure returned by a previous
670 call to `regexp-exec', or `#f' otherwise.
671
672**** Function: match:substring MATCH [N]
673 Return the portion of TARGET matched by subexpression number N.
674 Submatch 0 (the default) represents the entire regexp match. If
675 the regular expression as a whole matched, but the subexpression
676 number N did not match, return `#f'.
677
678**** Function: match:start MATCH [N]
679 Return the starting position of submatch number N.
680
681**** Function: match:end MATCH [N]
682 Return the ending position of submatch number N.
683
684**** Function: match:prefix MATCH
685 Return the unmatched portion of TARGET preceding the regexp match.
686
687**** Function: match:suffix MATCH
688 Return the unmatched portion of TARGET following the regexp match.
689
690**** Function: match:count MATCH
691 Return the number of parenthesized subexpressions from MATCH.
692 Note that the entire regular expression match itself counts as a
693 subexpression, and failed submatches are included in the count.
694
695**** Function: match:string MATCH
696 Return the original TARGET string.
697
698*** Backslash Escapes
699
700 Sometimes you will want a regexp to match characters like `*' or `$'
701exactly. For example, to check whether a particular string represents
702a menu entry from an Info node, it would be useful to match it against
703a regexp like `^* [^:]*::'. However, this won't work; because the
704asterisk is a metacharacter, it won't match the `*' at the beginning of
705the string. In this case, we want to make the first asterisk un-magic.
706
707 You can do this by preceding the metacharacter with a backslash
708character `\'. (This is also called "quoting" the metacharacter, and
709is known as a "backslash escape".) When Guile sees a backslash in a
710regular expression, it considers the following glyph to be an ordinary
711character, no matter what special meaning it would ordinarily have.
712Therefore, we can make the above example work by changing the regexp to
713`^\* [^:]*::'. The `\*' sequence tells the regular expression engine
714to match only a single asterisk in the target string.
715
716 Since the backslash is itself a metacharacter, you may force a
717regexp to match a backslash in the target string by preceding the
718backslash with itself. For example, to find variable references in a
719TeX program, you might want to find occurrences of the string `\let\'
720followed by any number of alphabetic characters. The regular expression
721`\\let\\[A-Za-z]*' would do this: the double backslashes in the regexp
722each match a single backslash in the target string.
723
724**** Function: regexp-quote STR
725 Quote each special character found in STR with a backslash, and
726 return the resulting string.
727
728 *Very important:* Using backslash escapes in Guile source code (as
729in Emacs Lisp or C) can be tricky, because the backslash character has
730special meaning for the Guile reader. For example, if Guile encounters
731the character sequence `\n' in the middle of a string while processing
732Scheme code, it replaces those characters with a newline character.
733Similarly, the character sequence `\t' is replaced by a horizontal tab.
734Several of these "escape sequences" are processed by the Guile reader
735before your code is executed. Unrecognized escape sequences are
736ignored: if the characters `\*' appear in a string, they will be
737translated to the single character `*'.
738
739 This translation is obviously undesirable for regular expressions,
740since we want to be able to include backslashes in a string in order to
741escape regexp metacharacters. Therefore, to make sure that a backslash
742is preserved in a string in your Guile program, you must use *two*
743consecutive backslashes:
744
745 (define Info-menu-entry-pattern (make-regexp "^\\* [^:]*"))
746
747 The string in this example is preprocessed by the Guile reader before
748any code is executed. The resulting argument to `make-regexp' is the
749string `^\* [^:]*', which is what we really want.
750
751 This also means that in order to write a regular expression that
752matches a single backslash character, the regular expression string in
753the source code must include *four* backslashes. Each consecutive pair
754of backslashes gets translated by the Guile reader to a single
755backslash, and the resulting double-backslash is interpreted by the
756regexp engine as matching a single backslash character. Hence:
757
758 (define tex-variable-pattern (make-regexp "\\\\let\\\\=[A-Za-z]*"))
759
760 The reason for the unwieldiness of this syntax is historical. Both
761regular expression pattern matchers and Unix string processing systems
762have traditionally used backslashes with the special meanings described
763above. The POSIX regular expression specification and ANSI C standard
764both require these semantics. Attempting to abandon either convention
765would cause other kinds of compatibility problems, possibly more severe
766ones. Therefore, without extending the Scheme reader to support
767strings with different quoting conventions (an ungainly and confusing
768extension when implemented in other languages), we must adhere to this
769cumbersome escape syntax.
770
7ad3c1e7
GH
771* Changes to the gh_ interface
772
773* Changes to the scm_ interface
774
775* Changes to system call interfaces:
94982a4e 776
7ad3c1e7 777** The value returned by `raise' is now unspecified. It throws an exception
e1a191a8
GH
778if an error occurs.
779
94982a4e 780*** A new procedure `sigaction' can be used to install signal handlers
115b09a5
GH
781
782(sigaction signum [action] [flags])
783
784signum is the signal number, which can be specified using the value
785of SIGINT etc.
786
787If action is omitted, sigaction returns a pair: the CAR is the current
788signal hander, which will be either an integer with the value SIG_DFL
789(default action) or SIG_IGN (ignore), or the Scheme procedure which
790handles the signal, or #f if a non-Scheme procedure handles the
791signal. The CDR contains the current sigaction flags for the handler.
792
793If action is provided, it is installed as the new handler for signum.
794action can be a Scheme procedure taking one argument, or the value of
795SIG_DFL (default action) or SIG_IGN (ignore), or #f to restore
796whatever signal handler was installed before sigaction was first used.
797Flags can optionally be specified for the new handler (SA_RESTART is
798always used if the system provides it, so need not be specified.) The
799return value is a pair with information about the old handler as
800described above.
801
802This interface does not provide access to the "signal blocking"
803facility. Maybe this is not needed, since the thread support may
804provide solutions to the problem of consistent access to data
805structures.
e1a191a8 806
94982a4e 807*** A new procedure `flush-all-ports' is equivalent to running
89ea5b7c
GH
808`force-output' on every port open for output.
809
94982a4e
JB
810** Guile now provides information on how it was built, via the new
811global variable, %guile-build-info. This variable records the values
812of the standard GNU makefile directory variables as an assocation
813list, mapping variable names (symbols) onto directory paths (strings).
814For example, to find out where the Guile link libraries were
815installed, you can say:
816
817guile -c "(display (assq-ref %guile-build-info 'libdir)) (newline)"
818
819
820* Changes to the scm_ interface
821
822** The new function scm_handle_by_message_noexit is just like the
823existing scm_handle_by_message function, except that it doesn't call
824exit to terminate the process. Instead, it prints a message and just
825returns #f. This might be a more appropriate catch-all handler for
826new dynamic roots and threads.
827
cf78e9e8 828\f
c484bf7f 829Changes in Guile 1.1 (released Friday, May 16 1997):
f3b1485f
JB
830
831* Changes to the distribution.
832
833The Guile 1.0 distribution has been split up into several smaller
834pieces:
835guile-core --- the Guile interpreter itself.
836guile-tcltk --- the interface between the Guile interpreter and
837 Tcl/Tk; Tcl is an interpreter for a stringy language, and Tk
838 is a toolkit for building graphical user interfaces.
839guile-rgx-ctax --- the interface between Guile and the Rx regular
840 expression matcher, and the translator for the Ctax
841 programming language. These are packaged together because the
842 Ctax translator uses Rx to parse Ctax source code.
843
095936d2
JB
844This NEWS file describes the changes made to guile-core since the 1.0
845release.
846
48d224d7
JB
847We no longer distribute the documentation, since it was either out of
848date, or incomplete. As soon as we have current documentation, we
849will distribute it.
850
0fcab5ed
JB
851
852
f3b1485f
JB
853* Changes to the stand-alone interpreter
854
48d224d7
JB
855** guile now accepts command-line arguments compatible with SCSH, Olin
856Shivers' Scheme Shell.
857
858In general, arguments are evaluated from left to right, but there are
859exceptions. The following switches stop argument processing, and
860stash all remaining command-line arguments as the value returned by
861the (command-line) function.
862 -s SCRIPT load Scheme source code from FILE, and exit
863 -c EXPR evalute Scheme expression EXPR, and exit
864 -- stop scanning arguments; run interactively
865
866The switches below are processed as they are encountered.
867 -l FILE load Scheme source code from FILE
868 -e FUNCTION after reading script, apply FUNCTION to
869 command line arguments
870 -ds do -s script at this point
871 --emacs enable Emacs protocol (experimental)
872 -h, --help display this help and exit
873 -v, --version display version information and exit
874 \ read arguments from following script lines
875
876So, for example, here is a Guile script named `ekko' (thanks, Olin)
877which re-implements the traditional "echo" command:
878
879#!/usr/local/bin/guile -s
880!#
881(define (main args)
882 (map (lambda (arg) (display arg) (display " "))
883 (cdr args))
884 (newline))
885
886(main (command-line))
887
888Suppose we invoke this script as follows:
889
890 ekko a speckled gecko
891
892Through the magic of Unix script processing (triggered by the `#!'
893token at the top of the file), /usr/local/bin/guile receives the
894following list of command-line arguments:
895
896 ("-s" "./ekko" "a" "speckled" "gecko")
897
898Unix inserts the name of the script after the argument specified on
899the first line of the file (in this case, "-s"), and then follows that
900with the arguments given to the script. Guile loads the script, which
901defines the `main' function, and then applies it to the list of
902remaining command-line arguments, ("a" "speckled" "gecko").
903
095936d2
JB
904In Unix, the first line of a script file must take the following form:
905
906#!INTERPRETER ARGUMENT
907
908where INTERPRETER is the absolute filename of the interpreter
909executable, and ARGUMENT is a single command-line argument to pass to
910the interpreter.
911
912You may only pass one argument to the interpreter, and its length is
913limited. These restrictions can be annoying to work around, so Guile
914provides a general mechanism (borrowed from, and compatible with,
915SCSH) for circumventing them.
916
917If the ARGUMENT in a Guile script is a single backslash character,
918`\', Guile will open the script file, parse arguments from its second
919and subsequent lines, and replace the `\' with them. So, for example,
920here is another implementation of the `ekko' script:
921
922#!/usr/local/bin/guile \
923-e main -s
924!#
925(define (main args)
926 (for-each (lambda (arg) (display arg) (display " "))
927 (cdr args))
928 (newline))
929
930If the user invokes this script as follows:
931
932 ekko a speckled gecko
933
934Unix expands this into
935
936 /usr/local/bin/guile \ ekko a speckled gecko
937
938When Guile sees the `\' argument, it replaces it with the arguments
939read from the second line of the script, producing:
940
941 /usr/local/bin/guile -e main -s ekko a speckled gecko
942
943This tells Guile to load the `ekko' script, and apply the function
944`main' to the argument list ("a" "speckled" "gecko").
945
946Here is how Guile parses the command-line arguments:
947- Each space character terminates an argument. This means that two
948 spaces in a row introduce an empty-string argument.
949- The tab character is not permitted (unless you quote it with the
950 backslash character, as described below), to avoid confusion.
951- The newline character terminates the sequence of arguments, and will
952 also terminate a final non-empty argument. (However, a newline
953 following a space will not introduce a final empty-string argument;
954 it only terminates the argument list.)
955- The backslash character is the escape character. It escapes
956 backslash, space, tab, and newline. The ANSI C escape sequences
957 like \n and \t are also supported. These produce argument
958 constituents; the two-character combination \n doesn't act like a
959 terminating newline. The escape sequence \NNN for exactly three
960 octal digits reads as the character whose ASCII code is NNN. As
961 above, characters produced this way are argument constituents.
962 Backslash followed by other characters is not allowed.
963
48d224d7
JB
964* Changes to the procedure for linking libguile with your programs
965
966** Guile now builds and installs a shared guile library, if your
967system support shared libraries. (It still builds a static library on
968all systems.) Guile automatically detects whether your system
969supports shared libraries. To prevent Guile from buildisg shared
970libraries, pass the `--disable-shared' flag to the configure script.
971
972Guile takes longer to compile when it builds shared libraries, because
973it must compile every file twice --- once to produce position-
974independent object code, and once to produce normal object code.
975
976** The libthreads library has been merged into libguile.
977
978To link a program against Guile, you now need only link against
979-lguile and -lqt; -lthreads is no longer needed. If you are using
980autoconf to generate configuration scripts for your application, the
981following lines should suffice to add the appropriate libraries to
982your link command:
983
984### Find quickthreads and libguile.
985AC_CHECK_LIB(qt, main)
986AC_CHECK_LIB(guile, scm_shell)
f3b1485f
JB
987
988* Changes to Scheme functions
989
095936d2
JB
990** Guile Scheme's special syntax for keyword objects is now optional,
991and disabled by default.
992
993The syntax variation from R4RS made it difficult to port some
994interesting packages to Guile. The routines which accepted keyword
995arguments (mostly in the module system) have been modified to also
996accept symbols whose names begin with `:'.
997
998To change the keyword syntax, you must first import the (ice-9 debug)
999module:
1000 (use-modules (ice-9 debug))
1001
1002Then you can enable the keyword syntax as follows:
1003 (read-set! keywords 'prefix)
1004
1005To disable keyword syntax, do this:
1006 (read-set! keywords #f)
1007
1008** Many more primitive functions accept shared substrings as
1009arguments. In the past, these functions required normal, mutable
1010strings as arguments, although they never made use of this
1011restriction.
1012
1013** The uniform array functions now operate on byte vectors. These
1014functions are `array-fill!', `serial-array-copy!', `array-copy!',
1015`serial-array-map', `array-map', `array-for-each', and
1016`array-index-map!'.
1017
1018** The new functions `trace' and `untrace' implement simple debugging
1019support for Scheme functions.
1020
1021The `trace' function accepts any number of procedures as arguments,
1022and tells the Guile interpreter to display each procedure's name and
1023arguments each time the procedure is invoked. When invoked with no
1024arguments, `trace' returns the list of procedures currently being
1025traced.
1026
1027The `untrace' function accepts any number of procedures as arguments,
1028and tells the Guile interpreter not to trace them any more. When
1029invoked with no arguments, `untrace' untraces all curretly traced
1030procedures.
1031
1032The tracing in Guile has an advantage over most other systems: we
1033don't create new procedure objects, but mark the procedure objects
1034themselves. This means that anonymous and internal procedures can be
1035traced.
1036
1037** The function `assert-repl-prompt' has been renamed to
1038`set-repl-prompt!'. It takes one argument, PROMPT.
1039- If PROMPT is #f, the Guile read-eval-print loop will not prompt.
1040- If PROMPT is a string, we use it as a prompt.
1041- If PROMPT is a procedure accepting no arguments, we call it, and
1042 display the result as a prompt.
1043- Otherwise, we display "> ".
1044
1045** The new function `eval-string' reads Scheme expressions from a
1046string and evaluates them, returning the value of the last expression
1047in the string. If the string contains no expressions, it returns an
1048unspecified value.
1049
1050** The new function `thunk?' returns true iff its argument is a
1051procedure of zero arguments.
1052
1053** `defined?' is now a builtin function, instead of syntax. This
1054means that its argument should be quoted. It returns #t iff its
1055argument is bound in the current module.
1056
1057** The new syntax `use-modules' allows you to add new modules to your
1058environment without re-typing a complete `define-module' form. It
1059accepts any number of module names as arguments, and imports their
1060public bindings into the current module.
1061
1062** The new function (module-defined? NAME MODULE) returns true iff
1063NAME, a symbol, is defined in MODULE, a module object.
1064
1065** The new function `builtin-bindings' creates and returns a hash
1066table containing copies of all the root module's bindings.
1067
1068** The new function `builtin-weak-bindings' does the same as
1069`builtin-bindings', but creates a doubly-weak hash table.
1070
1071** The `equal?' function now considers variable objects to be
1072equivalent if they have the same name and the same value.
1073
1074** The new function `command-line' returns the command-line arguments
1075given to Guile, as a list of strings.
1076
1077When using guile as a script interpreter, `command-line' returns the
1078script's arguments; those processed by the interpreter (like `-s' or
1079`-c') are omitted. (In other words, you get the normal, expected
1080behavior.) Any application that uses scm_shell to process its
1081command-line arguments gets this behavior as well.
1082
1083** The new function `load-user-init' looks for a file called `.guile'
1084in the user's home directory, and loads it if it exists. This is
1085mostly for use by the code generated by scm_compile_shell_switches,
1086but we thought it might also be useful in other circumstances.
1087
1088** The new function `log10' returns the base-10 logarithm of its
1089argument.
1090
1091** Changes to I/O functions
1092
1093*** The functions `read', `primitive-load', `read-and-eval!', and
1094`primitive-load-path' no longer take optional arguments controlling
1095case insensitivity and a `#' parser.
1096
1097Case sensitivity is now controlled by a read option called
1098`case-insensitive'. The user can add new `#' syntaxes with the
1099`read-hash-extend' function (see below).
1100
1101*** The new function `read-hash-extend' allows the user to change the
1102syntax of Guile Scheme in a somewhat controlled way.
1103
1104(read-hash-extend CHAR PROC)
1105 When parsing S-expressions, if we read a `#' character followed by
1106 the character CHAR, use PROC to parse an object from the stream.
1107 If PROC is #f, remove any parsing procedure registered for CHAR.
1108
1109 The reader applies PROC to two arguments: CHAR and an input port.
1110
1111*** The new functions read-delimited and read-delimited! provide a
1112general mechanism for doing delimited input on streams.
1113
1114(read-delimited DELIMS [PORT HANDLE-DELIM])
1115 Read until we encounter one of the characters in DELIMS (a string),
1116 or end-of-file. PORT is the input port to read from; it defaults to
1117 the current input port. The HANDLE-DELIM parameter determines how
1118 the terminating character is handled; it should be one of the
1119 following symbols:
1120
1121 'trim omit delimiter from result
1122 'peek leave delimiter character in input stream
1123 'concat append delimiter character to returned value
1124 'split return a pair: (RESULT . TERMINATOR)
1125
1126 HANDLE-DELIM defaults to 'peek.
1127
1128(read-delimited! DELIMS BUF [PORT HANDLE-DELIM START END])
1129 A side-effecting variant of `read-delimited'.
1130
1131 The data is written into the string BUF at the indices in the
1132 half-open interval [START, END); the default interval is the whole
1133 string: START = 0 and END = (string-length BUF). The values of
1134 START and END must specify a well-defined interval in BUF, i.e.
1135 0 <= START <= END <= (string-length BUF).
1136
1137 It returns NBYTES, the number of bytes read. If the buffer filled
1138 up without a delimiter character being found, it returns #f. If the
1139 port is at EOF when the read starts, it returns the EOF object.
1140
1141 If an integer is returned (i.e., the read is successfully terminated
1142 by reading a delimiter character), then the HANDLE-DELIM parameter
1143 determines how to handle the terminating character. It is described
1144 above, and defaults to 'peek.
1145
1146(The descriptions of these functions were borrowed from the SCSH
1147manual, by Olin Shivers and Brian Carlstrom.)
1148
1149*** The `%read-delimited!' function is the primitive used to implement
1150`read-delimited' and `read-delimited!'.
1151
1152(%read-delimited! DELIMS BUF GOBBLE? [PORT START END])
1153
1154This returns a pair of values: (TERMINATOR . NUM-READ).
1155- TERMINATOR describes why the read was terminated. If it is a
1156 character or the eof object, then that is the value that terminated
1157 the read. If it is #f, the function filled the buffer without finding
1158 a delimiting character.
1159- NUM-READ is the number of characters read into BUF.
1160
1161If the read is successfully terminated by reading a delimiter
1162character, then the gobble? parameter determines what to do with the
1163terminating character. If true, the character is removed from the
1164input stream; if false, the character is left in the input stream
1165where a subsequent read operation will retrieve it. In either case,
1166the character is also the first value returned by the procedure call.
1167
1168(The descriptions of this function was borrowed from the SCSH manual,
1169by Olin Shivers and Brian Carlstrom.)
1170
1171*** The `read-line' and `read-line!' functions have changed; they now
1172trim the terminator by default; previously they appended it to the
1173returned string. For the old behavior, use (read-line PORT 'concat).
1174
1175*** The functions `uniform-array-read!' and `uniform-array-write!' now
1176take new optional START and END arguments, specifying the region of
1177the array to read and write.
1178
f348c807
JB
1179*** The `ungetc-char-ready?' function has been removed. We feel it's
1180inappropriate for an interface to expose implementation details this
1181way.
095936d2
JB
1182
1183** Changes to the Unix library and system call interface
1184
1185*** The new fcntl function provides access to the Unix `fcntl' system
1186call.
1187
1188(fcntl PORT COMMAND VALUE)
1189 Apply COMMAND to PORT's file descriptor, with VALUE as an argument.
1190 Values for COMMAND are:
1191
1192 F_DUPFD duplicate a file descriptor
1193 F_GETFD read the descriptor's close-on-exec flag
1194 F_SETFD set the descriptor's close-on-exec flag to VALUE
1195 F_GETFL read the descriptor's flags, as set on open
1196 F_SETFL set the descriptor's flags, as set on open to VALUE
1197 F_GETOWN return the process ID of a socket's owner, for SIGIO
1198 F_SETOWN set the process that owns a socket to VALUE, for SIGIO
1199 FD_CLOEXEC not sure what this is
1200
1201For details, see the documentation for the fcntl system call.
1202
1203*** The arguments to `select' have changed, for compatibility with
1204SCSH. The TIMEOUT parameter may now be non-integral, yielding the
1205expected behavior. The MILLISECONDS parameter has been changed to
1206MICROSECONDS, to more closely resemble the underlying system call.
1207The RVEC, WVEC, and EVEC arguments can now be vectors; the type of the
1208corresponding return set will be the same.
1209
1210*** The arguments to the `mknod' system call have changed. They are
1211now:
1212
1213(mknod PATH TYPE PERMS DEV)
1214 Create a new file (`node') in the file system. PATH is the name of
1215 the file to create. TYPE is the kind of file to create; it should
1216 be 'fifo, 'block-special, or 'char-special. PERMS specifies the
1217 permission bits to give the newly created file. If TYPE is
1218 'block-special or 'char-special, DEV specifies which device the
1219 special file refers to; its interpretation depends on the kind of
1220 special file being created.
1221
1222*** The `fork' function has been renamed to `primitive-fork', to avoid
1223clashing with various SCSH forks.
1224
1225*** The `recv' and `recvfrom' functions have been renamed to `recv!'
1226and `recvfrom!'. They no longer accept a size for a second argument;
1227you must pass a string to hold the received value. They no longer
1228return the buffer. Instead, `recv' returns the length of the message
1229received, and `recvfrom' returns a pair containing the packet's length
1230and originating address.
1231
1232*** The file descriptor datatype has been removed, as have the
1233`read-fd', `write-fd', `close', `lseek', and `dup' functions.
1234We plan to replace these functions with a SCSH-compatible interface.
1235
1236*** The `create' function has been removed; it's just a special case
1237of `open'.
1238
1239*** There are new functions to break down process termination status
1240values. In the descriptions below, STATUS is a value returned by
1241`waitpid'.
1242
1243(status:exit-val STATUS)
1244 If the child process exited normally, this function returns the exit
1245 code for the child process (i.e., the value passed to exit, or
1246 returned from main). If the child process did not exit normally,
1247 this function returns #f.
1248
1249(status:stop-sig STATUS)
1250 If the child process was suspended by a signal, this function
1251 returns the signal that suspended the child. Otherwise, it returns
1252 #f.
1253
1254(status:term-sig STATUS)
1255 If the child process terminated abnormally, this function returns
1256 the signal that terminated the child. Otherwise, this function
1257 returns false.
1258
1259POSIX promises that exactly one of these functions will return true on
1260a valid STATUS value.
1261
1262These functions are compatible with SCSH.
1263
1264*** There are new accessors and setters for the broken-out time vectors
48d224d7
JB
1265returned by `localtime', `gmtime', and that ilk. They are:
1266
1267 Component Accessor Setter
1268 ========================= ============ ============
1269 seconds tm:sec set-tm:sec
1270 minutes tm:min set-tm:min
1271 hours tm:hour set-tm:hour
1272 day of the month tm:mday set-tm:mday
1273 month tm:mon set-tm:mon
1274 year tm:year set-tm:year
1275 day of the week tm:wday set-tm:wday
1276 day in the year tm:yday set-tm:yday
1277 daylight saving time tm:isdst set-tm:isdst
1278 GMT offset, seconds tm:gmtoff set-tm:gmtoff
1279 name of time zone tm:zone set-tm:zone
1280
095936d2
JB
1281*** There are new accessors for the vectors returned by `uname',
1282describing the host system:
48d224d7
JB
1283
1284 Component Accessor
1285 ============================================== ================
1286 name of the operating system implementation utsname:sysname
1287 network name of this machine utsname:nodename
1288 release level of the operating system utsname:release
1289 version level of the operating system utsname:version
1290 machine hardware platform utsname:machine
1291
095936d2
JB
1292*** There are new accessors for the vectors returned by `getpw',
1293`getpwnam', `getpwuid', and `getpwent', describing entries from the
1294system's user database:
1295
1296 Component Accessor
1297 ====================== =================
1298 user name passwd:name
1299 user password passwd:passwd
1300 user id passwd:uid
1301 group id passwd:gid
1302 real name passwd:gecos
1303 home directory passwd:dir
1304 shell program passwd:shell
1305
1306*** There are new accessors for the vectors returned by `getgr',
1307`getgrnam', `getgrgid', and `getgrent', describing entries from the
1308system's group database:
1309
1310 Component Accessor
1311 ======================= ============
1312 group name group:name
1313 group password group:passwd
1314 group id group:gid
1315 group members group:mem
1316
1317*** There are new accessors for the vectors returned by `gethost',
1318`gethostbyaddr', `gethostbyname', and `gethostent', describing
1319internet hosts:
1320
1321 Component Accessor
1322 ========================= ===============
1323 official name of host hostent:name
1324 alias list hostent:aliases
1325 host address type hostent:addrtype
1326 length of address hostent:length
1327 list of addresses hostent:addr-list
1328
1329*** There are new accessors for the vectors returned by `getnet',
1330`getnetbyaddr', `getnetbyname', and `getnetent', describing internet
1331networks:
1332
1333 Component Accessor
1334 ========================= ===============
1335 official name of net netent:name
1336 alias list netent:aliases
1337 net number type netent:addrtype
1338 net number netent:net
1339
1340*** There are new accessors for the vectors returned by `getproto',
1341`getprotobyname', `getprotobynumber', and `getprotoent', describing
1342internet protocols:
1343
1344 Component Accessor
1345 ========================= ===============
1346 official protocol name protoent:name
1347 alias list protoent:aliases
1348 protocol number protoent:proto
1349
1350*** There are new accessors for the vectors returned by `getserv',
1351`getservbyname', `getservbyport', and `getservent', describing
1352internet protocols:
1353
1354 Component Accessor
1355 ========================= ===============
1356 official service name servent:name
1357 alias list servent:aliases
1358 port number servent:port
1359 protocol to use servent:proto
1360
1361*** There are new accessors for the sockaddr structures returned by
1362`accept', `getsockname', `getpeername', `recvfrom!':
1363
1364 Component Accessor
1365 ======================================== ===============
1366 address format (`family') sockaddr:fam
1367 path, for file domain addresses sockaddr:path
1368 address, for internet domain addresses sockaddr:addr
1369 TCP or UDP port, for internet sockaddr:port
1370
1371*** The `getpwent', `getgrent', `gethostent', `getnetent',
1372`getprotoent', and `getservent' functions now return #f at the end of
1373the user database. (They used to throw an exception.)
1374
1375Note that calling MUMBLEent function is equivalent to calling the
1376corresponding MUMBLE function with no arguments.
1377
1378*** The `setpwent', `setgrent', `sethostent', `setnetent',
1379`setprotoent', and `setservent' routines now take no arguments.
1380
1381*** The `gethost', `getproto', `getnet', and `getserv' functions now
1382provide more useful information when they throw an exception.
1383
1384*** The `lnaof' function has been renamed to `inet-lnaof'.
1385
1386*** Guile now claims to have the `current-time' feature.
1387
1388*** The `mktime' function now takes an optional second argument ZONE,
1389giving the time zone to use for the conversion. ZONE should be a
1390string, in the same format as expected for the "TZ" environment variable.
1391
1392*** The `strptime' function now returns a pair (TIME . COUNT), where
1393TIME is the parsed time as a vector, and COUNT is the number of
1394characters from the string left unparsed. This function used to
1395return the remaining characters as a string.
1396
1397*** The `gettimeofday' function has replaced the old `time+ticks' function.
1398The return value is now (SECONDS . MICROSECONDS); the fractional
1399component is no longer expressed in "ticks".
1400
1401*** The `ticks/sec' constant has been removed, in light of the above change.
6685dc83 1402
ea00ecba
MG
1403* Changes to the gh_ interface
1404
1405** gh_eval_str() now returns an SCM object which is the result of the
1406evaluation
1407
aaef0d2a
MG
1408** gh_scm2str() now copies the Scheme data to a caller-provided C
1409array
1410
1411** gh_scm2newstr() now makes a C array, copies the Scheme data to it,
1412and returns the array
1413
1414** gh_scm2str0() is gone: there is no need to distinguish
1415null-terminated from non-null-terminated, since gh_scm2newstr() allows
1416the user to interpret the data both ways.
1417
f3b1485f
JB
1418* Changes to the scm_ interface
1419
095936d2
JB
1420** The new function scm_symbol_value0 provides an easy way to get a
1421symbol's value from C code:
1422
1423SCM scm_symbol_value0 (char *NAME)
1424 Return the value of the symbol named by the null-terminated string
1425 NAME in the current module. If the symbol named NAME is unbound in
1426 the current module, return SCM_UNDEFINED.
1427
1428** The new function scm_sysintern0 creates new top-level variables,
1429without assigning them a value.
1430
1431SCM scm_sysintern0 (char *NAME)
1432 Create a new Scheme top-level variable named NAME. NAME is a
1433 null-terminated string. Return the variable's value cell.
1434
1435** The function scm_internal_catch is the guts of catch. It handles
1436all the mechanics of setting up a catch target, invoking the catch
1437body, and perhaps invoking the handler if the body does a throw.
1438
1439The function is designed to be usable from C code, but is general
1440enough to implement all the semantics Guile Scheme expects from throw.
1441
1442TAG is the catch tag. Typically, this is a symbol, but this function
1443doesn't actually care about that.
1444
1445BODY is a pointer to a C function which runs the body of the catch;
1446this is the code you can throw from. We call it like this:
1447 BODY (BODY_DATA, JMPBUF)
1448where:
1449 BODY_DATA is just the BODY_DATA argument we received; we pass it
1450 through to BODY as its first argument. The caller can make
1451 BODY_DATA point to anything useful that BODY might need.
1452 JMPBUF is the Scheme jmpbuf object corresponding to this catch,
1453 which we have just created and initialized.
1454
1455HANDLER is a pointer to a C function to deal with a throw to TAG,
1456should one occur. We call it like this:
1457 HANDLER (HANDLER_DATA, THROWN_TAG, THROW_ARGS)
1458where
1459 HANDLER_DATA is the HANDLER_DATA argument we recevied; it's the
1460 same idea as BODY_DATA above.
1461 THROWN_TAG is the tag that the user threw to; usually this is
1462 TAG, but it could be something else if TAG was #t (i.e., a
1463 catch-all), or the user threw to a jmpbuf.
1464 THROW_ARGS is the list of arguments the user passed to the THROW
1465 function.
1466
1467BODY_DATA is just a pointer we pass through to BODY. HANDLER_DATA
1468is just a pointer we pass through to HANDLER. We don't actually
1469use either of those pointers otherwise ourselves. The idea is
1470that, if our caller wants to communicate something to BODY or
1471HANDLER, it can pass a pointer to it as MUMBLE_DATA, which BODY and
1472HANDLER can then use. Think of it as a way to make BODY and
1473HANDLER closures, not just functions; MUMBLE_DATA points to the
1474enclosed variables.
1475
1476Of course, it's up to the caller to make sure that any data a
1477MUMBLE_DATA needs is protected from GC. A common way to do this is
1478to make MUMBLE_DATA a pointer to data stored in an automatic
1479structure variable; since the collector must scan the stack for
1480references anyway, this assures that any references in MUMBLE_DATA
1481will be found.
1482
1483** The new function scm_internal_lazy_catch is exactly like
1484scm_internal_catch, except:
1485
1486- It does not unwind the stack (this is the major difference).
1487- If handler returns, its value is returned from the throw.
1488- BODY always receives #f as its JMPBUF argument (since there's no
1489 jmpbuf associated with a lazy catch, because we don't unwind the
1490 stack.)
1491
1492** scm_body_thunk is a new body function you can pass to
1493scm_internal_catch if you want the body to be like Scheme's `catch'
1494--- a thunk, or a function of one argument if the tag is #f.
1495
1496BODY_DATA is a pointer to a scm_body_thunk_data structure, which
1497contains the Scheme procedure to invoke as the body, and the tag
1498we're catching. If the tag is #f, then we pass JMPBUF (created by
1499scm_internal_catch) to the body procedure; otherwise, the body gets
1500no arguments.
1501
1502** scm_handle_by_proc is a new handler function you can pass to
1503scm_internal_catch if you want the handler to act like Scheme's catch
1504--- call a procedure with the tag and the throw arguments.
1505
1506If the user does a throw to this catch, this function runs a handler
1507procedure written in Scheme. HANDLER_DATA is a pointer to an SCM
1508variable holding the Scheme procedure object to invoke. It ought to
1509be a pointer to an automatic variable (i.e., one living on the stack),
1510or the procedure object should be otherwise protected from GC.
1511
1512** scm_handle_by_message is a new handler function to use with
1513`scm_internal_catch' if you want Guile to print a message and die.
1514It's useful for dealing with throws to uncaught keys at the top level.
1515
1516HANDLER_DATA, if non-zero, is assumed to be a char * pointing to a
1517message header to print; if zero, we use "guile" instead. That
1518text is followed by a colon, then the message described by ARGS.
1519
1520** The return type of scm_boot_guile is now void; the function does
1521not return a value, and indeed, never returns at all.
1522
f3b1485f
JB
1523** The new function scm_shell makes it easy for user applications to
1524process command-line arguments in a way that is compatible with the
1525stand-alone guile interpreter (which is in turn compatible with SCSH,
1526the Scheme shell).
1527
1528To use the scm_shell function, first initialize any guile modules
1529linked into your application, and then call scm_shell with the values
7ed46dc8 1530of ARGC and ARGV your `main' function received. scm_shell will add
f3b1485f
JB
1531any SCSH-style meta-arguments from the top of the script file to the
1532argument vector, and then process the command-line arguments. This
1533generally means loading a script file or starting up an interactive
1534command interpreter. For details, see "Changes to the stand-alone
1535interpreter" above.
1536
095936d2
JB
1537** The new functions scm_get_meta_args and scm_count_argv help you
1538implement the SCSH-style meta-argument, `\'.
1539
1540char **scm_get_meta_args (int ARGC, char **ARGV)
1541 If the second element of ARGV is a string consisting of a single
1542 backslash character (i.e. "\\" in Scheme notation), open the file
1543 named by the following argument, parse arguments from it, and return
1544 the spliced command line. The returned array is terminated by a
1545 null pointer.
1546
1547 For details of argument parsing, see above, under "guile now accepts
1548 command-line arguments compatible with SCSH..."
1549
1550int scm_count_argv (char **ARGV)
1551 Count the arguments in ARGV, assuming it is terminated by a null
1552 pointer.
1553
1554For an example of how these functions might be used, see the source
1555code for the function scm_shell in libguile/script.c.
1556
1557You will usually want to use scm_shell instead of calling this
1558function yourself.
1559
1560** The new function scm_compile_shell_switches turns an array of
1561command-line arguments into Scheme code to carry out the actions they
1562describe. Given ARGC and ARGV, it returns a Scheme expression to
1563evaluate, and calls scm_set_program_arguments to make any remaining
1564command-line arguments available to the Scheme code. For example,
1565given the following arguments:
1566
1567 -e main -s ekko a speckled gecko
1568
1569scm_set_program_arguments will return the following expression:
1570
1571 (begin (load "ekko") (main (command-line)) (quit))
1572
1573You will usually want to use scm_shell instead of calling this
1574function yourself.
1575
1576** The function scm_shell_usage prints a usage message appropriate for
1577an interpreter that uses scm_compile_shell_switches to handle its
1578command-line arguments.
1579
1580void scm_shell_usage (int FATAL, char *MESSAGE)
1581 Print a usage message to the standard error output. If MESSAGE is
1582 non-zero, write it before the usage message, followed by a newline.
1583 If FATAL is non-zero, exit the process, using FATAL as the
1584 termination status. (If you want to be compatible with Guile,
1585 always use 1 as the exit status when terminating due to command-line
1586 usage problems.)
1587
1588You will usually want to use scm_shell instead of calling this
1589function yourself.
48d224d7
JB
1590
1591** scm_eval_0str now returns SCM_UNSPECIFIED if the string contains no
095936d2
JB
1592expressions. It used to return SCM_EOL. Earth-shattering.
1593
1594** The macros for declaring scheme objects in C code have been
1595rearranged slightly. They are now:
1596
1597SCM_SYMBOL (C_NAME, SCHEME_NAME)
1598 Declare a static SCM variable named C_NAME, and initialize it to
1599 point to the Scheme symbol whose name is SCHEME_NAME. C_NAME should
1600 be a C identifier, and SCHEME_NAME should be a C string.
1601
1602SCM_GLOBAL_SYMBOL (C_NAME, SCHEME_NAME)
1603 Just like SCM_SYMBOL, but make C_NAME globally visible.
1604
1605SCM_VCELL (C_NAME, SCHEME_NAME)
1606 Create a global variable at the Scheme level named SCHEME_NAME.
1607 Declare a static SCM variable named C_NAME, and initialize it to
1608 point to the Scheme variable's value cell.
1609
1610SCM_GLOBAL_VCELL (C_NAME, SCHEME_NAME)
1611 Just like SCM_VCELL, but make C_NAME globally visible.
1612
1613The `guile-snarf' script writes initialization code for these macros
1614to its standard output, given C source code as input.
1615
1616The SCM_GLOBAL macro is gone.
1617
1618** The scm_read_line and scm_read_line_x functions have been replaced
1619by Scheme code based on the %read-delimited! procedure (known to C
1620code as scm_read_delimited_x). See its description above for more
1621information.
48d224d7 1622
095936d2
JB
1623** The function scm_sys_open has been renamed to scm_open. It now
1624returns a port instead of an FD object.
ea00ecba 1625
095936d2
JB
1626* The dynamic linking support has changed. For more information, see
1627libguile/DYNAMIC-LINKING.
ea00ecba 1628
f7b47737
JB
1629\f
1630Guile 1.0b3
3065a62a 1631
f3b1485f
JB
1632User-visible changes from Thursday, September 5, 1996 until Guile 1.0
1633(Sun 5 Jan 1997):
3065a62a 1634
4b521edb 1635* Changes to the 'guile' program:
3065a62a 1636
4b521edb
JB
1637** Guile now loads some new files when it starts up. Guile first
1638searches the load path for init.scm, and loads it if found. Then, if
1639Guile is not being used to execute a script, and the user's home
1640directory contains a file named `.guile', Guile loads that.
c6486f8a 1641
4b521edb 1642** You can now use Guile as a shell script interpreter.
3065a62a
JB
1643
1644To paraphrase the SCSH manual:
1645
1646 When Unix tries to execute an executable file whose first two
1647 characters are the `#!', it treats the file not as machine code to
1648 be directly executed by the native processor, but as source code
1649 to be executed by some interpreter. The interpreter to use is
1650 specified immediately after the #! sequence on the first line of
1651 the source file. The kernel reads in the name of the interpreter,
1652 and executes that instead. It passes the interpreter the source
1653 filename as its first argument, with the original arguments
1654 following. Consult the Unix man page for the `exec' system call
1655 for more information.
1656
1a1945be
JB
1657Now you can use Guile as an interpreter, using a mechanism which is a
1658compatible subset of that provided by SCSH.
1659
3065a62a
JB
1660Guile now recognizes a '-s' command line switch, whose argument is the
1661name of a file of Scheme code to load. It also treats the two
1662characters `#!' as the start of a comment, terminated by `!#'. Thus,
1663to make a file of Scheme code directly executable by Unix, insert the
1664following two lines at the top of the file:
1665
1666#!/usr/local/bin/guile -s
1667!#
1668
1669Guile treats the argument of the `-s' command-line switch as the name
1670of a file of Scheme code to load, and treats the sequence `#!' as the
1671start of a block comment, terminated by `!#'.
1672
1673For example, here's a version of 'echo' written in Scheme:
1674
1675#!/usr/local/bin/guile -s
1676!#
1677(let loop ((args (cdr (program-arguments))))
1678 (if (pair? args)
1679 (begin
1680 (display (car args))
1681 (if (pair? (cdr args))
1682 (display " "))
1683 (loop (cdr args)))))
1684(newline)
1685
1686Why does `#!' start a block comment terminated by `!#', instead of the
1687end of the line? That is the notation SCSH uses, and although we
1688don't yet support the other SCSH features that motivate that choice,
1689we would like to be backward-compatible with any existing Guile
3763761c
JB
1690scripts once we do. Furthermore, if the path to Guile on your system
1691is too long for your kernel, you can start the script with this
1692horrible hack:
1693
1694#!/bin/sh
1695exec /really/long/path/to/guile -s "$0" ${1+"$@"}
1696!#
3065a62a
JB
1697
1698Note that some very old Unix systems don't support the `#!' syntax.
1699
c6486f8a 1700
4b521edb 1701** You can now run Guile without installing it.
6685dc83
JB
1702
1703Previous versions of the interactive Guile interpreter (`guile')
1704couldn't start up unless Guile's Scheme library had been installed;
1705they used the value of the environment variable `SCHEME_LOAD_PATH'
1706later on in the startup process, but not to find the startup code
1707itself. Now Guile uses `SCHEME_LOAD_PATH' in all searches for Scheme
1708code.
1709
1710To run Guile without installing it, build it in the normal way, and
1711then set the environment variable `SCHEME_LOAD_PATH' to a
1712colon-separated list of directories, including the top-level directory
1713of the Guile sources. For example, if you unpacked Guile so that the
1714full filename of this NEWS file is /home/jimb/guile-1.0b3/NEWS, then
1715you might say
1716
1717 export SCHEME_LOAD_PATH=/home/jimb/my-scheme:/home/jimb/guile-1.0b3
1718
c6486f8a 1719
4b521edb
JB
1720** Guile's read-eval-print loop no longer prints #<unspecified>
1721results. If the user wants to see this, she can evaluate the
1722expression (assert-repl-print-unspecified #t), perhaps in her startup
48d224d7 1723file.
6685dc83 1724
4b521edb
JB
1725** Guile no longer shows backtraces by default when an error occurs;
1726however, it does display a message saying how to get one, and how to
1727request that they be displayed by default. After an error, evaluate
1728 (backtrace)
1729to see a backtrace, and
1730 (debug-enable 'backtrace)
1731to see them by default.
6685dc83 1732
6685dc83 1733
d9fb83d9 1734
4b521edb
JB
1735* Changes to Guile Scheme:
1736
1737** Guile now distinguishes between #f and the empty list.
1738
1739This is for compatibility with the IEEE standard, the (possibly)
1740upcoming Revised^5 Report on Scheme, and many extant Scheme
1741implementations.
1742
1743Guile used to have #f and '() denote the same object, to make Scheme's
1744type system more compatible with Emacs Lisp's. However, the change
1745caused too much trouble for Scheme programmers, and we found another
1746way to reconcile Emacs Lisp with Scheme that didn't require this.
1747
1748
1749** Guile's delq, delv, delete functions, and their destructive
c6486f8a
JB
1750counterparts, delq!, delv!, and delete!, now remove all matching
1751elements from the list, not just the first. This matches the behavior
1752of the corresponding Emacs Lisp functions, and (I believe) the Maclisp
1753functions which inspired them.
1754
1755I recognize that this change may break code in subtle ways, but it
1756seems best to make the change before the FSF's first Guile release,
1757rather than after.
1758
1759
4b521edb 1760** The compiled-library-path function has been deleted from libguile.
6685dc83 1761
4b521edb 1762** The facilities for loading Scheme source files have changed.
c6486f8a 1763
4b521edb 1764*** The variable %load-path now tells Guile which directories to search
6685dc83
JB
1765for Scheme code. Its value is a list of strings, each of which names
1766a directory.
1767
4b521edb
JB
1768*** The variable %load-extensions now tells Guile which extensions to
1769try appending to a filename when searching the load path. Its value
1770is a list of strings. Its default value is ("" ".scm").
1771
1772*** (%search-load-path FILENAME) searches the directories listed in the
1773value of the %load-path variable for a Scheme file named FILENAME,
1774with all the extensions listed in %load-extensions. If it finds a
1775match, then it returns its full filename. If FILENAME is absolute, it
1776returns it unchanged. Otherwise, it returns #f.
6685dc83 1777
4b521edb
JB
1778%search-load-path will not return matches that refer to directories.
1779
1780*** (primitive-load FILENAME :optional CASE-INSENSITIVE-P SHARP)
1781uses %seach-load-path to find a file named FILENAME, and loads it if
1782it finds it. If it can't read FILENAME for any reason, it throws an
1783error.
6685dc83
JB
1784
1785The arguments CASE-INSENSITIVE-P and SHARP are interpreted as by the
4b521edb
JB
1786`read' function.
1787
1788*** load uses the same searching semantics as primitive-load.
1789
1790*** The functions %try-load, try-load-with-path, %load, load-with-path,
1791basic-try-load-with-path, basic-load-with-path, try-load-module-with-
1792path, and load-module-with-path have been deleted. The functions
1793above should serve their purposes.
1794
1795*** If the value of the variable %load-hook is a procedure,
1796`primitive-load' applies its value to the name of the file being
1797loaded (without the load path directory name prepended). If its value
1798is #f, it is ignored. Otherwise, an error occurs.
1799
1800This is mostly useful for printing load notification messages.
1801
1802
1803** The function `eval!' is no longer accessible from the scheme level.
1804We can't allow operations which introduce glocs into the scheme level,
1805because Guile's type system can't handle these as data. Use `eval' or
1806`read-and-eval!' (see below) as replacement.
1807
1808** The new function read-and-eval! reads an expression from PORT,
1809evaluates it, and returns the result. This is more efficient than
1810simply calling `read' and `eval', since it is not necessary to make a
1811copy of the expression for the evaluator to munge.
1812
1813Its optional arguments CASE_INSENSITIVE_P and SHARP are interpreted as
1814for the `read' function.
1815
1816
1817** The function `int?' has been removed; its definition was identical
1818to that of `integer?'.
1819
1820** The functions `<?', `<?', `<=?', `=?', `>?', and `>=?'. Code should
1821use the R4RS names for these functions.
1822
1823** The function object-properties no longer returns the hash handle;
1824it simply returns the object's property list.
1825
1826** Many functions have been changed to throw errors, instead of
1827returning #f on failure. The point of providing exception handling in
1828the language is to simplify the logic of user code, but this is less
1829useful if Guile's primitives don't throw exceptions.
1830
1831** The function `fileno' has been renamed from `%fileno'.
1832
1833** The function primitive-mode->fdes returns #t or #f now, not 1 or 0.
1834
1835
1836* Changes to Guile's C interface:
1837
1838** The library's initialization procedure has been simplified.
1839scm_boot_guile now has the prototype:
1840
1841void scm_boot_guile (int ARGC,
1842 char **ARGV,
1843 void (*main_func) (),
1844 void *closure);
1845
1846scm_boot_guile calls MAIN_FUNC, passing it CLOSURE, ARGC, and ARGV.
1847MAIN_FUNC should do all the work of the program (initializing other
1848packages, reading user input, etc.) before returning. When MAIN_FUNC
1849returns, call exit (0); this function never returns. If you want some
1850other exit value, MAIN_FUNC may call exit itself.
1851
1852scm_boot_guile arranges for program-arguments to return the strings
1853given by ARGC and ARGV. If MAIN_FUNC modifies ARGC/ARGV, should call
1854scm_set_program_arguments with the final list, so Scheme code will
1855know which arguments have been processed.
1856
1857scm_boot_guile establishes a catch-all catch handler which prints an
1858error message and exits the process. This means that Guile exits in a
1859coherent way when system errors occur and the user isn't prepared to
1860handle it. If the user doesn't like this behavior, they can establish
1861their own universal catcher in MAIN_FUNC to shadow this one.
1862
1863Why must the caller do all the real work from MAIN_FUNC? The garbage
1864collector assumes that all local variables of type SCM will be above
1865scm_boot_guile's stack frame on the stack. If you try to manipulate
1866SCM values after this function returns, it's the luck of the draw
1867whether the GC will be able to find the objects you allocate. So,
1868scm_boot_guile function exits, rather than returning, to discourage
1869people from making that mistake.
1870
1871The IN, OUT, and ERR arguments were removed; there are other
1872convenient ways to override these when desired.
1873
1874The RESULT argument was deleted; this function should never return.
1875
1876The BOOT_CMD argument was deleted; the MAIN_FUNC argument is more
1877general.
1878
1879
1880** Guile's header files should no longer conflict with your system's
1881header files.
1882
1883In order to compile code which #included <libguile.h>, previous
1884versions of Guile required you to add a directory containing all the
1885Guile header files to your #include path. This was a problem, since
1886Guile's header files have names which conflict with many systems'
1887header files.
1888
1889Now only <libguile.h> need appear in your #include path; you must
1890refer to all Guile's other header files as <libguile/mumble.h>.
1891Guile's installation procedure puts libguile.h in $(includedir), and
1892the rest in $(includedir)/libguile.
1893
1894
1895** Two new C functions, scm_protect_object and scm_unprotect_object,
1896have been added to the Guile library.
1897
1898scm_protect_object (OBJ) protects OBJ from the garbage collector.
1899OBJ will not be freed, even if all other references are dropped,
1900until someone does scm_unprotect_object (OBJ). Both functions
1901return OBJ.
1902
1903Note that calls to scm_protect_object do not nest. You can call
1904scm_protect_object any number of times on a given object, and the
1905next call to scm_unprotect_object will unprotect it completely.
1906
1907Basically, scm_protect_object and scm_unprotect_object just
1908maintain a list of references to things. Since the GC knows about
1909this list, all objects it mentions stay alive. scm_protect_object
1910adds its argument to the list; scm_unprotect_object remove its
1911argument from the list.
1912
1913
1914** scm_eval_0str now returns the value of the last expression
1915evaluated.
1916
1917** The new function scm_read_0str reads an s-expression from a
1918null-terminated string, and returns it.
1919
1920** The new function `scm_stdio_to_port' converts a STDIO file pointer
1921to a Scheme port object.
1922
1923** The new function `scm_set_program_arguments' allows C code to set
1924the value teruturned by the Scheme `program-arguments' function.
6685dc83 1925
6685dc83 1926\f
1a1945be
JB
1927Older changes:
1928
1929* Guile no longer includes sophisticated Tcl/Tk support.
1930
1931The old Tcl/Tk support was unsatisfying to us, because it required the
1932user to link against the Tcl library, as well as Tk and Guile. The
1933interface was also un-lispy, in that it preserved Tcl/Tk's practice of
1934referring to widgets by names, rather than exporting widgets to Scheme
1935code as a special datatype.
1936
1937In the Usenix Tk Developer's Workshop held in July 1996, the Tcl/Tk
1938maintainers described some very interesting changes in progress to the
1939Tcl/Tk internals, which would facilitate clean interfaces between lone
1940Tk and other interpreters --- even for garbage-collected languages
1941like Scheme. They expected the new Tk to be publicly available in the
1942fall of 1996.
1943
1944Since it seems that Guile might soon have a new, cleaner interface to
1945lone Tk, and that the old Guile/Tk glue code would probably need to be
1946completely rewritten, we (Jim Blandy and Richard Stallman) have
1947decided not to support the old code. We'll spend the time instead on
1948a good interface to the newer Tk, as soon as it is available.
5c54da76 1949
8512dea6 1950Until then, gtcltk-lib provides trivial, low-maintenance functionality.
deb95d71 1951
5c54da76
JB
1952\f
1953Copyright information:
1954
ea00ecba 1955Copyright (C) 1996,1997 Free Software Foundation, Inc.
5c54da76
JB
1956
1957 Permission is granted to anyone to make or distribute verbatim copies
1958 of this document as received, in any medium, provided that the
1959 copyright notice and this permission notice are preserved,
1960 thus giving the recipient permission to redistribute in turn.
1961
1962 Permission is granted to distribute modified versions
1963 of this document, or of portions of it,
1964 under the above conditions, provided also that they
1965 carry prominent notices stating who last changed them.
1966
48d224d7
JB
1967\f
1968Local variables:
1969mode: outline
1970paragraph-separate: "[ \f]*$"
1971end:
1972