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