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