1999-08-12 Gary Houston <ghouston@easynet.co.uk>
[bpt/guile.git] / NEWS
1 Guile NEWS --- history of user-visible changes. -*- text -*-
2 Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
3 See the end for copying conditions.
4
5 Please send Guile bug reports to bug-guile@gnu.org.
6 \f
7 Changes since Guile 1.3:
8
9 * Changes to mailing lists
10
11 ** Some of the Guile mailing lists have moved to sourceware.cygnus.com.
12
13 See the README file to find current addresses for all the Guile
14 mailing lists.
15
16 * Changes to the distribution
17
18 ** Readline support is no longer included with Guile by default.
19
20 Based on the different license terms of Guile and Readline, we
21 concluded that Guile should not *by default* cause the linking of
22 Readline into an application program. Readline support is now offered
23 as a separate module, which is linked into an application only when
24 you explicitly specify it.
25
26 Although Guile is GNU software, its distribution terms add a special
27 exception to the usual GNU General Public License (GPL). Guile's
28 license includes a clause that allows you to link Guile with non-free
29 programs. We add this exception so as not to put Guile at a
30 disadvantage vis-a-vis other extensibility packages that support other
31 languages.
32
33 In contrast, the GNU Readline library is distributed under the GNU
34 General Public License pure and simple. This means that you may not
35 link Readline, even dynamically, into an application unless it is
36 distributed under a free software license that is compatible the GPL.
37
38 Because of this difference in distribution terms, an application that
39 can use Guile may not be able to use Readline. Now users will be
40 explicitly offered two independent decisions about the use of these
41 two packages.
42
43 You can activate the readline support by issuing
44
45 (use-modules (readline-activator))
46 (activate-readline)
47
48 from your ".guile" file, for example.
49
50 * Changes to the stand-alone interpreter
51
52 ** All builtins now print as primitives.
53 Previously builtin procedures not belonging to the fundamental subr
54 types printed as #<compiled closure #<primitive-procedure gsubr-apply>>.
55 Now, they print as #<primitive-procedure NAME>.
56
57 ** Backtraces slightly more intelligible.
58 gsubr-apply and macro transformer application frames no longer appear
59 in backtraces.
60
61 * Changes to Scheme functions and syntax
62
63 ** Guile now correctly handles internal defines by rewriting them into
64 their equivalent letrec. Previously, internal defines would
65 incrementally add to the innermost environment, without checking
66 whether the restrictions specified in RnRS were met. This lead to the
67 correct behaviour when these restriction actually were met, but didn't
68 catch all illegal uses. Such an illegal use could lead to crashes of
69 the Guile interpreter or or other unwanted results. An example of
70 incorrect internal defines that made Guile behave erratically:
71
72 (let ()
73 (define a 1)
74 (define (b) a)
75 (define c (1+ (b)))
76 (define d 3)
77
78 (b))
79
80 => 2
81
82 The problem with this example is that the definition of `c' uses the
83 value of `b' directly. This confuses the meoization machine of Guile
84 so that the second call of `b' (this time in a larger environment that
85 also contains bindings for `c' and `d') refers to the binding of `c'
86 instead of `a'. You could also make Guile crash with a variation on
87 this theme:
88
89 (define (foo flag)
90 (define a 1)
91 (define (b flag) (if flag a 1))
92 (define c (1+ (b flag)))
93 (define d 3)
94
95 (b #t))
96
97 (foo #f)
98 (foo #t)
99
100 From now on, Guile will issue an `Unbound variable: b' error message
101 for both examples.
102
103 ** Hooks
104
105 A hook contains a list of functions which should be called on
106 particular occasions in an existing program. Hooks are used for
107 customization.
108
109 A window manager might have a hook before-window-map-hook. The window
110 manager uses the function run-hooks to call all functions stored in
111 before-window-map-hook each time a window is mapped. The user can
112 store functions in the hook using add-hook!.
113
114 In Guile, hooks are first class objects.
115
116 *** New function: make-hook [N_ARGS]
117
118 Return a hook for hook functions which can take N_ARGS arguments.
119 The default value for N_ARGS is 0.
120
121 (See also scm_make_named_hook below.)
122
123 *** New function: add-hook! HOOK PROC [APPEND_P]
124
125 Put PROC at the beginning of the list of functions stored in HOOK.
126 If APPEND_P is supplied, and non-false, put PROC at the end instead.
127
128 PROC must be able to take the number of arguments specified when the
129 hook was created.
130
131 If PROC already exists in HOOK, then remove it first.
132
133 *** New function: remove-hook! HOOK PROC
134
135 Remove PROC from the list of functions in HOOK.
136
137 *** New function: reset-hook! HOOK
138
139 Clear the list of hook functions stored in HOOK.
140
141 *** New function: run-hook HOOK ARG1 ...
142
143 Run all hook functions stored in HOOK with arguments ARG1 ... .
144 The number of arguments supplied must correspond to the number given
145 when the hook was created.
146
147 ** The function `dynamic-link' now takes optional keyword arguments.
148 The only keyword argument that is currently defined is `:global
149 BOOL'. With it, you can control whether the shared library will be
150 linked in global mode or not. In global mode, the symbols from the
151 linked library can be used to resolve references from other
152 dynamically linked libraries. In non-global mode, the linked
153 library is essentially invisible and can only be accessed via
154 `dynamic-func', etc. The default is now to link in global mode.
155 Previously, the default has been non-global mode.
156
157 The `#:global' keyword is only effective on platforms that support
158 the dlopen family of functions.
159
160 ** New function `provided?'
161
162 - Function: provided? FEATURE
163 Return true iff FEATURE is supported by this installation of
164 Guile. FEATURE must be a symbol naming a feature; the global
165 variable `*features*' is a list of available features.
166
167 ** Changes to the module (ice-9 expect):
168
169 *** The expect-strings macro now matches `$' in a regular expression
170 only at a line-break or end-of-file by default. Previously it would
171 match the end of the string accumulated so far. The old behaviour
172 can be obtained by setting the variable `expect-strings-exec-flags'
173 to 0.
174
175 *** The expect-strings macro now uses a variable `expect-strings-exec-flags'
176 for the regexp-exec flags. If `regexp/noteol' is included, then `$'
177 in a regular expression will still match before a line-break or
178 end-of-file. The default is `regexp/noteol'.
179
180 *** The expect-strings macro now uses a variable
181 `expect-strings-compile-flags' for the flags to be supplied to
182 `make-regexp'. The default is `regexp/newline', which was previously
183 hard-coded.
184
185 *** The expect macro now supplies two arguments to a match procedure:
186 the current accumulated string and a flag to indicate whether
187 end-of-file has been reached. Previously only the string was supplied.
188 If end-of-file is reached, the match procedure will be called an
189 additional time with the same accumulated string as the previous call
190 but with the flag set.
191
192 ** New module (ice-9 format), implementing the Common Lisp `format' function.
193
194 This code, and the documentation for it that appears here, was
195 borrowed from SLIB, with minor adaptations for Guile.
196
197 - Function: format DESTINATION FORMAT-STRING . ARGUMENTS
198 An almost complete implementation of Common LISP format description
199 according to the CL reference book `Common LISP' from Guy L.
200 Steele, Digital Press. Backward compatible to most of the
201 available Scheme format implementations.
202
203 Returns `#t', `#f' or a string; has side effect of printing
204 according to FORMAT-STRING. If DESTINATION is `#t', the output is
205 to the current output port and `#t' is returned. If DESTINATION
206 is `#f', a formatted string is returned as the result of the call.
207 NEW: If DESTINATION is a string, DESTINATION is regarded as the
208 format string; FORMAT-STRING is then the first argument and the
209 output is returned as a string. If DESTINATION is a number, the
210 output is to the current error port if available by the
211 implementation. Otherwise DESTINATION must be an output port and
212 `#t' is returned.
213
214 FORMAT-STRING must be a string. In case of a formatting error
215 format returns `#f' and prints a message on the current output or
216 error port. Characters are output as if the string were output by
217 the `display' function with the exception of those prefixed by a
218 tilde (~). For a detailed description of the FORMAT-STRING syntax
219 please consult a Common LISP format reference manual. For a test
220 suite to verify this format implementation load `formatst.scm'.
221 Please send bug reports to `lutzeb@cs.tu-berlin.de'.
222
223 Note: `format' is not reentrant, i.e. only one `format'-call may
224 be executed at a time.
225
226
227 *** Format Specification (Format version 3.0)
228
229 Please consult a Common LISP format reference manual for a detailed
230 description of the format string syntax. For a demonstration of the
231 implemented directives see `formatst.scm'.
232
233 This implementation supports directive parameters and modifiers (`:'
234 and `@' characters). Multiple parameters must be separated by a comma
235 (`,'). Parameters can be numerical parameters (positive or negative),
236 character parameters (prefixed by a quote character (`''), variable
237 parameters (`v'), number of rest arguments parameter (`#'), empty and
238 default parameters. Directive characters are case independent. The
239 general form of a directive is:
240
241 DIRECTIVE ::= ~{DIRECTIVE-PARAMETER,}[:][@]DIRECTIVE-CHARACTER
242
243 DIRECTIVE-PARAMETER ::= [ [-|+]{0-9}+ | 'CHARACTER | v | # ]
244
245 *** Implemented CL Format Control Directives
246
247 Documentation syntax: Uppercase characters represent the
248 corresponding control directive characters. Lowercase characters
249 represent control directive parameter descriptions.
250
251 `~A'
252 Any (print as `display' does).
253 `~@A'
254 left pad.
255
256 `~MINCOL,COLINC,MINPAD,PADCHARA'
257 full padding.
258
259 `~S'
260 S-expression (print as `write' does).
261 `~@S'
262 left pad.
263
264 `~MINCOL,COLINC,MINPAD,PADCHARS'
265 full padding.
266
267 `~D'
268 Decimal.
269 `~@D'
270 print number sign always.
271
272 `~:D'
273 print comma separated.
274
275 `~MINCOL,PADCHAR,COMMACHARD'
276 padding.
277
278 `~X'
279 Hexadecimal.
280 `~@X'
281 print number sign always.
282
283 `~:X'
284 print comma separated.
285
286 `~MINCOL,PADCHAR,COMMACHARX'
287 padding.
288
289 `~O'
290 Octal.
291 `~@O'
292 print number sign always.
293
294 `~:O'
295 print comma separated.
296
297 `~MINCOL,PADCHAR,COMMACHARO'
298 padding.
299
300 `~B'
301 Binary.
302 `~@B'
303 print number sign always.
304
305 `~:B'
306 print comma separated.
307
308 `~MINCOL,PADCHAR,COMMACHARB'
309 padding.
310
311 `~NR'
312 Radix N.
313 `~N,MINCOL,PADCHAR,COMMACHARR'
314 padding.
315
316 `~@R'
317 print a number as a Roman numeral.
318
319 `~:@R'
320 print a number as an "old fashioned" Roman numeral.
321
322 `~:R'
323 print a number as an ordinal English number.
324
325 `~:@R'
326 print a number as a cardinal English number.
327
328 `~P'
329 Plural.
330 `~@P'
331 prints `y' and `ies'.
332
333 `~:P'
334 as `~P but jumps 1 argument backward.'
335
336 `~:@P'
337 as `~@P but jumps 1 argument backward.'
338
339 `~C'
340 Character.
341 `~@C'
342 prints a character as the reader can understand it (i.e. `#\'
343 prefixing).
344
345 `~:C'
346 prints a character as emacs does (eg. `^C' for ASCII 03).
347
348 `~F'
349 Fixed-format floating-point (prints a flonum like MMM.NNN).
350 `~WIDTH,DIGITS,SCALE,OVERFLOWCHAR,PADCHARF'
351 `~@F'
352 If the number is positive a plus sign is printed.
353
354 `~E'
355 Exponential floating-point (prints a flonum like MMM.NNN`E'EE).
356 `~WIDTH,DIGITS,EXPONENTDIGITS,SCALE,OVERFLOWCHAR,PADCHAR,EXPONENTCHARE'
357 `~@E'
358 If the number is positive a plus sign is printed.
359
360 `~G'
361 General floating-point (prints a flonum either fixed or
362 exponential).
363 `~WIDTH,DIGITS,EXPONENTDIGITS,SCALE,OVERFLOWCHAR,PADCHAR,EXPONENTCHARG'
364 `~@G'
365 If the number is positive a plus sign is printed.
366
367 `~$'
368 Dollars floating-point (prints a flonum in fixed with signs
369 separated).
370 `~DIGITS,SCALE,WIDTH,PADCHAR$'
371 `~@$'
372 If the number is positive a plus sign is printed.
373
374 `~:@$'
375 A sign is always printed and appears before the padding.
376
377 `~:$'
378 The sign appears before the padding.
379
380 `~%'
381 Newline.
382 `~N%'
383 print N newlines.
384
385 `~&'
386 print newline if not at the beginning of the output line.
387 `~N&'
388 prints `~&' and then N-1 newlines.
389
390 `~|'
391 Page Separator.
392 `~N|'
393 print N page separators.
394
395 `~~'
396 Tilde.
397 `~N~'
398 print N tildes.
399
400 `~'<newline>
401 Continuation Line.
402 `~:'<newline>
403 newline is ignored, white space left.
404
405 `~@'<newline>
406 newline is left, white space ignored.
407
408 `~T'
409 Tabulation.
410 `~@T'
411 relative tabulation.
412
413 `~COLNUM,COLINCT'
414 full tabulation.
415
416 `~?'
417 Indirection (expects indirect arguments as a list).
418 `~@?'
419 extracts indirect arguments from format arguments.
420
421 `~(STR~)'
422 Case conversion (converts by `string-downcase').
423 `~:(STR~)'
424 converts by `string-capitalize'.
425
426 `~@(STR~)'
427 converts by `string-capitalize-first'.
428
429 `~:@(STR~)'
430 converts by `string-upcase'.
431
432 `~*'
433 Argument Jumping (jumps 1 argument forward).
434 `~N*'
435 jumps N arguments forward.
436
437 `~:*'
438 jumps 1 argument backward.
439
440 `~N:*'
441 jumps N arguments backward.
442
443 `~@*'
444 jumps to the 0th argument.
445
446 `~N@*'
447 jumps to the Nth argument (beginning from 0)
448
449 `~[STR0~;STR1~;...~;STRN~]'
450 Conditional Expression (numerical clause conditional).
451 `~N['
452 take argument from N.
453
454 `~@['
455 true test conditional.
456
457 `~:['
458 if-else-then conditional.
459
460 `~;'
461 clause separator.
462
463 `~:;'
464 default clause follows.
465
466 `~{STR~}'
467 Iteration (args come from the next argument (a list)).
468 `~N{'
469 at most N iterations.
470
471 `~:{'
472 args from next arg (a list of lists).
473
474 `~@{'
475 args from the rest of arguments.
476
477 `~:@{'
478 args from the rest args (lists).
479
480 `~^'
481 Up and out.
482 `~N^'
483 aborts if N = 0
484
485 `~N,M^'
486 aborts if N = M
487
488 `~N,M,K^'
489 aborts if N <= M <= K
490
491 *** Not Implemented CL Format Control Directives
492
493 `~:A'
494 print `#f' as an empty list (see below).
495
496 `~:S'
497 print `#f' as an empty list (see below).
498
499 `~<~>'
500 Justification.
501
502 `~:^'
503 (sorry I don't understand its semantics completely)
504
505 *** Extended, Replaced and Additional Control Directives
506
507 `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHD'
508 `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHX'
509 `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHO'
510 `~MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHB'
511 `~N,MINCOL,PADCHAR,COMMACHAR,COMMAWIDTHR'
512 COMMAWIDTH is the number of characters between two comma
513 characters.
514
515 `~I'
516 print a R4RS complex number as `~F~@Fi' with passed parameters for
517 `~F'.
518
519 `~Y'
520 Pretty print formatting of an argument for scheme code lists.
521
522 `~K'
523 Same as `~?.'
524
525 `~!'
526 Flushes the output if format DESTINATION is a port.
527
528 `~_'
529 Print a `#\space' character
530 `~N_'
531 print N `#\space' characters.
532
533 `~/'
534 Print a `#\tab' character
535 `~N/'
536 print N `#\tab' characters.
537
538 `~NC'
539 Takes N as an integer representation for a character. No arguments
540 are consumed. N is converted to a character by `integer->char'. N
541 must be a positive decimal number.
542
543 `~:S'
544 Print out readproof. Prints out internal objects represented as
545 `#<...>' as strings `"#<...>"' so that the format output can always
546 be processed by `read'.
547
548 `~:A'
549 Print out readproof. Prints out internal objects represented as
550 `#<...>' as strings `"#<...>"' so that the format output can always
551 be processed by `read'.
552
553 `~Q'
554 Prints information and a copyright notice on the format
555 implementation.
556 `~:Q'
557 prints format version.
558
559 `~F, ~E, ~G, ~$'
560 may also print number strings, i.e. passing a number as a string
561 and format it accordingly.
562
563 *** Configuration Variables
564
565 The format module exports some configuration variables to suit the
566 systems and users needs. There should be no modification necessary for
567 the configuration that comes with Guile. Format detects automatically
568 if the running scheme system implements floating point numbers and
569 complex numbers.
570
571 format:symbol-case-conv
572 Symbols are converted by `symbol->string' so the case type of the
573 printed symbols is implementation dependent.
574 `format:symbol-case-conv' is a one arg closure which is either
575 `#f' (no conversion), `string-upcase', `string-downcase' or
576 `string-capitalize'. (default `#f')
577
578 format:iobj-case-conv
579 As FORMAT:SYMBOL-CASE-CONV but applies for the representation of
580 implementation internal objects. (default `#f')
581
582 format:expch
583 The character prefixing the exponent value in `~E' printing.
584 (default `#\E')
585
586 *** Compatibility With Other Format Implementations
587
588 SLIB format 2.x:
589 See `format.doc'.
590
591 SLIB format 1.4:
592 Downward compatible except for padding support and `~A', `~S',
593 `~P', `~X' uppercase printing. SLIB format 1.4 uses C-style
594 `printf' padding support which is completely replaced by the CL
595 `format' padding style.
596
597 MIT C-Scheme 7.1:
598 Downward compatible except for `~', which is not documented
599 (ignores all characters inside the format string up to a newline
600 character). (7.1 implements `~a', `~s', ~NEWLINE, `~~', `~%',
601 numerical and variable parameters and `:/@' modifiers in the CL
602 sense).
603
604 Elk 1.5/2.0:
605 Downward compatible except for `~A' and `~S' which print in
606 uppercase. (Elk implements `~a', `~s', `~~', and `~%' (no
607 directive parameters or modifiers)).
608
609 Scheme->C 01nov91:
610 Downward compatible except for an optional destination parameter:
611 S2C accepts a format call without a destination which returns a
612 formatted string. This is equivalent to a #f destination in S2C.
613 (S2C implements `~a', `~s', `~c', `~%', and `~~' (no directive
614 parameters or modifiers)).
615
616
617 ** Changes to string-handling functions.
618
619 These functions were added to support the (ice-9 format) module, above.
620
621 *** New function: string-upcase STRING
622 *** New function: string-downcase STRING
623
624 These are non-destructive versions of the existing string-upcase! and
625 string-downcase! functions.
626
627 *** New function: string-capitalize! STRING
628 *** New function: string-capitalize STRING
629
630 These functions convert the first letter of each word in the string to
631 upper case. Thus:
632
633 (string-capitalize "howdy there")
634 => "Howdy There"
635
636 As with the other functions, string-capitalize! modifies the string in
637 place, while string-capitalize returns a modified copy of its argument.
638
639 *** New function: string-ci->symbol STRING
640
641 Return a symbol whose name is STRING, but having the same case as if
642 the symbol had be read by `read'.
643
644 Guile can be configured to be sensitive or insensitive to case
645 differences in Scheme identifiers. If Guile is case-insensitive, all
646 symbols are converted to lower case on input. The `string-ci->symbol'
647 function returns a symbol whose name in STRING, transformed as Guile
648 would if STRING were input.
649
650 *** New function: substring-move! STRING1 START END STRING2 START
651
652 Copy the substring of STRING1 from START (inclusive) to END
653 (exclusive) to STRING2 at START. STRING1 and STRING2 may be the same
654 string, and the source and destination areas may overlap; in all
655 cases, the function behaves as if all the characters were copied
656 simultanously.
657
658 *** Extended functions: substring-move-left! substring-move-right!
659
660 These functions now correctly copy arbitrarily overlapping substrings;
661 they are both synonyms for substring-move!.
662
663
664 ** New module (ice-9 getopt-long), with the function `getopt-long'.
665
666 getopt-long is a function for parsing command-line arguments in a
667 manner consistent with other GNU programs.
668
669 (getopt-long ARGS GRAMMAR)
670 Parse the arguments ARGS according to the argument list grammar GRAMMAR.
671
672 ARGS should be a list of strings. Its first element should be the
673 name of the program; subsequent elements should be the arguments
674 that were passed to the program on the command line. The
675 `program-arguments' procedure returns a list of this form.
676
677 GRAMMAR is a list of the form:
678 ((OPTION (PROPERTY VALUE) ...) ...)
679
680 Each OPTION should be a symbol. `getopt-long' will accept a
681 command-line option named `--OPTION'.
682 Each option can have the following (PROPERTY VALUE) pairs:
683
684 (single-char CHAR) --- Accept `-CHAR' as a single-character
685 equivalent to `--OPTION'. This is how to specify traditional
686 Unix-style flags.
687 (required? BOOL) --- If BOOL is true, the option is required.
688 getopt-long will raise an error if it is not found in ARGS.
689 (value BOOL) --- If BOOL is #t, the option accepts a value; if
690 it is #f, it does not; and if it is the symbol
691 `optional', the option may appear in ARGS with or
692 without a value.
693 (predicate FUNC) --- If the option accepts a value (i.e. you
694 specified `(value #t)' for this option), then getopt
695 will apply FUNC to the value, and throw an exception
696 if it returns #f. FUNC should be a procedure which
697 accepts a string and returns a boolean value; you may
698 need to use quasiquotes to get it into GRAMMAR.
699
700 The (PROPERTY VALUE) pairs may occur in any order, but each
701 property may occur only once. By default, options do not have
702 single-character equivalents, are not required, and do not take
703 values.
704
705 In ARGS, single-character options may be combined, in the usual
706 Unix fashion: ("-x" "-y") is equivalent to ("-xy"). If an option
707 accepts values, then it must be the last option in the
708 combination; the value is the next argument. So, for example, using
709 the following grammar:
710 ((apples (single-char #\a))
711 (blimps (single-char #\b) (value #t))
712 (catalexis (single-char #\c) (value #t)))
713 the following argument lists would be acceptable:
714 ("-a" "-b" "bang" "-c" "couth") ("bang" and "couth" are the values
715 for "blimps" and "catalexis")
716 ("-ab" "bang" "-c" "couth") (same)
717 ("-ac" "couth" "-b" "bang") (same)
718 ("-abc" "couth" "bang") (an error, since `-b' is not the
719 last option in its combination)
720
721 If an option's value is optional, then `getopt-long' decides
722 whether it has a value by looking at what follows it in ARGS. If
723 the next element is a string, and it does not appear to be an
724 option itself, then that string is the option's value.
725
726 The value of a long option can appear as the next element in ARGS,
727 or it can follow the option name, separated by an `=' character.
728 Thus, using the same grammar as above, the following argument lists
729 are equivalent:
730 ("--apples" "Braeburn" "--blimps" "Goodyear")
731 ("--apples=Braeburn" "--blimps" "Goodyear")
732 ("--blimps" "Goodyear" "--apples=Braeburn")
733
734 If the option "--" appears in ARGS, argument parsing stops there;
735 subsequent arguments are returned as ordinary arguments, even if
736 they resemble options. So, in the argument list:
737 ("--apples" "Granny Smith" "--" "--blimp" "Goodyear")
738 `getopt-long' will recognize the `apples' option as having the
739 value "Granny Smith", but it will not recognize the `blimp'
740 option; it will return the strings "--blimp" and "Goodyear" as
741 ordinary argument strings.
742
743 The `getopt-long' function returns the parsed argument list as an
744 assocation list, mapping option names --- the symbols from GRAMMAR
745 --- onto their values, or #t if the option does not accept a value.
746 Unused options do not appear in the alist.
747
748 All arguments that are not the value of any option are returned
749 as a list, associated with the empty list.
750
751 `getopt-long' throws an exception if:
752 - it finds an unrecognized option in ARGS
753 - a required option is omitted
754 - an option that requires an argument doesn't get one
755 - an option that doesn't accept an argument does get one (this can
756 only happen using the long option `--opt=value' syntax)
757 - an option predicate fails
758
759 So, for example:
760
761 (define grammar
762 `((lockfile-dir (required? #t)
763 (value #t)
764 (single-char #\k)
765 (predicate ,file-is-directory?))
766 (verbose (required? #f)
767 (single-char #\v)
768 (value #f))
769 (x-includes (single-char #\x))
770 (rnet-server (single-char #\y)
771 (predicate ,string?))))
772
773 (getopt-long '("my-prog" "-vk" "/tmp" "foo1" "--x-includes=/usr/include"
774 "--rnet-server=lamprod" "--" "-fred" "foo2" "foo3")
775 grammar)
776 => ((() "foo1" "-fred" "foo2" "foo3")
777 (rnet-server . "lamprod")
778 (x-includes . "/usr/include")
779 (lockfile-dir . "/tmp")
780 (verbose . #t))
781
782 ** The (ice-9 getopt-gnu-style) module is obsolete; use (ice-9 getopt-long).
783
784 It will be removed in a few releases.
785
786 ** New syntax: lambda*
787 ** New syntax: define*
788 ** New syntax: define*-public
789 ** New syntax: defmacro*
790 ** New syntax: defmacro*-public
791 Guile now supports optional arguments.
792
793 `lambda*', `define*', `define*-public', `defmacro*' and
794 `defmacro*-public' are identical to the non-* versions except that
795 they use an extended type of parameter list that has the following BNF
796 syntax (parentheses are literal, square brackets indicate grouping,
797 and `*', `+' and `?' have the usual meaning):
798
799 ext-param-list ::= ( [identifier]* [#&optional [ext-var-decl]+]?
800 [#&key [ext-var-decl]+ [#&allow-other-keys]?]?
801 [[#&rest identifier]|[. identifier]]? ) | [identifier]
802
803 ext-var-decl ::= identifier | ( identifier expression )
804
805 The semantics are best illustrated with the following documentation
806 and examples for `lambda*':
807
808 lambda* args . body
809 lambda extended for optional and keyword arguments
810
811 lambda* creates a procedure that takes optional arguments. These
812 are specified by putting them inside brackets at the end of the
813 paramater list, but before any dotted rest argument. For example,
814 (lambda* (a b #&optional c d . e) '())
815 creates a procedure with fixed arguments a and b, optional arguments c
816 and d, and rest argument e. If the optional arguments are omitted
817 in a call, the variables for them are unbound in the procedure. This
818 can be checked with the bound? macro.
819
820 lambda* can also take keyword arguments. For example, a procedure
821 defined like this:
822 (lambda* (#&key xyzzy larch) '())
823 can be called with any of the argument lists (#:xyzzy 11)
824 (#:larch 13) (#:larch 42 #:xyzzy 19) (). Whichever arguments
825 are given as keywords are bound to values.
826
827 Optional and keyword arguments can also be given default values
828 which they take on when they are not present in a call, by giving a
829 two-item list in place of an optional argument, for example in:
830 (lambda* (foo #&optional (bar 42) #&key (baz 73)) (list foo bar baz))
831 foo is a fixed argument, bar is an optional argument with default
832 value 42, and baz is a keyword argument with default value 73.
833 Default value expressions are not evaluated unless they are needed
834 and until the procedure is called.
835
836 lambda* now supports two more special parameter list keywords.
837
838 lambda*-defined procedures now throw an error by default if a
839 keyword other than one of those specified is found in the actual
840 passed arguments. However, specifying #&allow-other-keys
841 immediately after the kyword argument declarations restores the
842 previous behavior of ignoring unknown keywords. lambda* also now
843 guarantees that if the same keyword is passed more than once, the
844 last one passed is the one that takes effect. For example,
845 ((lambda* (#&key (heads 0) (tails 0)) (display (list heads tails)))
846 #:heads 37 #:tails 42 #:heads 99)
847 would result in (99 47) being displayed.
848
849 #&rest is also now provided as a synonym for the dotted syntax rest
850 argument. The argument lists (a . b) and (a #&rest b) are equivalent in
851 all respects to lambda*. This is provided for more similarity to DSSSL,
852 MIT-Scheme and Kawa among others, as well as for refugees from other
853 Lisp dialects.
854
855 Further documentation may be found in the optargs.scm file itself.
856
857 The optional argument module also exports the macros `let-optional',
858 `let-optional*', `let-keywords', `let-keywords*' and `bound?'. These
859 are not documented here because they may be removed in the future, but
860 full documentation is still available in optargs.scm.
861
862 ** New syntax: and-let*
863 Guile now supports the `and-let*' form, described in the draft SRFI-2.
864
865 Syntax: (land* (<clause> ...) <body> ...)
866 Each <clause> should have one of the following forms:
867 (<variable> <expression>)
868 (<expression>)
869 <bound-variable>
870 Each <variable> or <bound-variable> should be an identifier. Each
871 <expression> should be a valid expression. The <body> should be a
872 possibly empty sequence of expressions, like the <body> of a
873 lambda form.
874
875 Semantics: A LAND* expression is evaluated by evaluating the
876 <expression> or <bound-variable> of each of the <clause>s from
877 left to right. The value of the first <expression> or
878 <bound-variable> that evaluates to a false value is returned; the
879 remaining <expression>s and <bound-variable>s are not evaluated.
880 The <body> forms are evaluated iff all the <expression>s and
881 <bound-variable>s evaluate to true values.
882
883 The <expression>s and the <body> are evaluated in an environment
884 binding each <variable> of the preceding (<variable> <expression>)
885 clauses to the value of the <expression>. Later bindings
886 shadow earlier bindings.
887
888 Guile's and-let* macro was contributed by Michael Livshin.
889
890 ** New sorting functions
891
892 *** New function: sorted? SEQUENCE LESS?
893 Returns `#t' when the sequence argument is in non-decreasing order
894 according to LESS? (that is, there is no adjacent pair `... x y
895 ...' for which `(less? y x)').
896
897 Returns `#f' when the sequence contains at least one out-of-order
898 pair. It is an error if the sequence is neither a list nor a
899 vector.
900
901 *** New function: merge LIST1 LIST2 LESS?
902 LIST1 and LIST2 are sorted lists.
903 Returns the sorted list of all elements in LIST1 and LIST2.
904
905 Assume that the elements a and b1 in LIST1 and b2 in LIST2 are "equal"
906 in the sense that (LESS? x y) --> #f for x, y in {a, b1, b2},
907 and that a < b1 in LIST1. Then a < b1 < b2 in the result.
908 (Here "<" should read "comes before".)
909
910 *** New procedure: merge! LIST1 LIST2 LESS?
911 Merges two lists, re-using the pairs of LIST1 and LIST2 to build
912 the result. If the code is compiled, and LESS? constructs no new
913 pairs, no pairs at all will be allocated. The first pair of the
914 result will be either the first pair of LIST1 or the first pair of
915 LIST2.
916
917 *** New function: sort SEQUENCE LESS?
918 Accepts either a list or a vector, and returns a new sequence
919 which is sorted. The new sequence is the same type as the input.
920 Always `(sorted? (sort sequence less?) less?)'. The original
921 sequence is not altered in any way. The new sequence shares its
922 elements with the old one; no elements are copied.
923
924 *** New procedure: sort! SEQUENCE LESS
925 Returns its sorted result in the original boxes. No new storage is
926 allocated at all. Proper usage: (set! slist (sort! slist <))
927
928 *** New function: stable-sort SEQUENCE LESS?
929 Similar to `sort' but stable. That is, if "equal" elements are
930 ordered a < b in the original sequence, they will have the same order
931 in the result.
932
933 *** New function: stable-sort! SEQUENCE LESS?
934 Similar to `sort!' but stable.
935 Uses temporary storage when sorting vectors.
936
937 *** New functions: sort-list, sort-list!
938 Added for compatibility with scsh.
939
940 ** New built-in random number support
941
942 *** New function: random N [STATE]
943 Accepts a positive integer or real N and returns a number of the
944 same type between zero (inclusive) and N (exclusive). The values
945 returned have a uniform distribution.
946
947 The optional argument STATE must be of the type produced by
948 `copy-random-state' or `seed->random-state'. It defaults to the value
949 of the variable `*random-state*'. This object is used to maintain the
950 state of the pseudo-random-number generator and is altered as a side
951 effect of the `random' operation.
952
953 *** New variable: *random-state*
954 Holds a data structure that encodes the internal state of the
955 random-number generator that `random' uses by default. The nature
956 of this data structure is implementation-dependent. It may be
957 printed out and successfully read back in, but may or may not
958 function correctly as a random-number state object in another
959 implementation.
960
961 *** New function: copy-random-state [STATE]
962 Returns a new object of type suitable for use as the value of the
963 variable `*random-state*' and as a second argument to `random'.
964 If argument STATE is given, a copy of it is returned. Otherwise a
965 copy of `*random-state*' is returned.
966
967 *** New function: seed->random-state SEED
968 Returns a new object of type suitable for use as the value of the
969 variable `*random-state*' and as a second argument to `random'.
970 SEED is a string or a number. A new state is generated and
971 initialized using SEED.
972
973 *** New function: random:uniform [STATE]
974 Returns an uniformly distributed inexact real random number in the
975 range between 0 and 1.
976
977 *** New procedure: random:solid-sphere! VECT [STATE]
978 Fills VECT with inexact real random numbers the sum of whose
979 squares is less than 1.0. Thinking of VECT as coordinates in
980 space of dimension N = `(vector-length VECT)', the coordinates are
981 uniformly distributed within the unit N-shere. The sum of the
982 squares of the numbers is returned. VECT can be either a vector
983 or a uniform vector of doubles.
984
985 *** New procedure: random:hollow-sphere! VECT [STATE]
986 Fills VECT with inexact real random numbers the sum of whose squares
987 is equal to 1.0. Thinking of VECT as coordinates in space of
988 dimension n = `(vector-length VECT)', the coordinates are uniformly
989 distributed over the surface of the unit n-shere. VECT can be either
990 a vector or a uniform vector of doubles.
991
992 *** New function: random:normal [STATE]
993 Returns an inexact real in a normal distribution with mean 0 and
994 standard deviation 1. For a normal distribution with mean M and
995 standard deviation D use `(+ M (* D (random:normal)))'.
996
997 *** New procedure: random:normal-vector! VECT [STATE]
998 Fills VECT with inexact real random numbers which are independent and
999 standard normally distributed (i.e., with mean 0 and variance 1).
1000 VECT can be either a vector or a uniform vector of doubles.
1001
1002 *** New function: random:exp STATE
1003 Returns an inexact real in an exponential distribution with mean 1.
1004 For an exponential distribution with mean U use (* U (random:exp)).
1005
1006 ** The range of logand, logior, logxor, logtest, and logbit? have changed.
1007
1008 These functions now operate on numbers in the range of a C unsigned
1009 long.
1010
1011 These functions used to operate on numbers in the range of a C signed
1012 long; however, this seems inappropriate, because Guile integers don't
1013 overflow.
1014
1015 ** New function: make-guardian
1016 This is an implementation of guardians as described in
1017 R. Kent Dybvig, Carl Bruggeman, and David Eby (1993) "Guardians in a
1018 Generation-Based Garbage Collector" ACM SIGPLAN Conference on
1019 Programming Language Design and Implementation, June 1993
1020 ftp://ftp.cs.indiana.edu/pub/scheme-repository/doc/pubs/guardians.ps.gz
1021
1022 ** New functions: delq1!, delv1!, delete1!
1023 These procedures behave similar to delq! and friends but delete only
1024 one object if at all.
1025
1026 ** New function: unread-string STRING PORT
1027 Unread STRING to PORT, that is, push it back onto the port so that
1028 next read operation will work on the pushed back characters.
1029
1030 ** unread-char can now be called multiple times
1031 If unread-char is called multiple times, the unread characters will be
1032 read again in last-in first-out order.
1033
1034 ** the procedures uniform-array-read! and uniform-array-write! now
1035 work on any kind of port, not just ports which are open on a file.
1036
1037 ** now 'l' in a port mode requests line buffering.
1038
1039 ** The procedure truncate-file now works on string ports as well
1040 as file ports. If the size argument is omitted, the current
1041 file position is used.
1042
1043 ** new procedure: seek PORT/FDES OFFSET WHENCE
1044 The arguments are the same as for the old fseek procedure, but it
1045 works on string ports as well as random-access file ports.
1046
1047 ** the fseek procedure now works on string ports, since it has been
1048 redefined using seek.
1049
1050 ** the setvbuf procedure now uses a default size if mode is _IOFBF and
1051 size is not supplied.
1052
1053 ** the newline procedure no longer flushes the port if it's not
1054 line-buffered: previously it did if it was the current output port.
1055
1056 ** open-pipe and close-pipe are no longer primitive procedures, but
1057 an emulation can be obtained using `(use-modules (ice-9 popen))'.
1058
1059 ** the freopen procedure has been removed.
1060
1061 ** new procedure: drain-input PORT
1062 Drains PORT's read buffers (including any pushed-back characters)
1063 and returns the contents as a single string.
1064
1065 ** New function: map-in-order PROC LIST1 LIST2 ...
1066 Version of `map' which guarantees that the procedure is applied to the
1067 lists in serial order.
1068
1069 ** Renamed `serial-array-copy!' and `serial-array-map!' to
1070 `array-copy-in-order!' and `array-map-in-order!'. The old names are
1071 now obsolete and will go away in release 1.5.
1072
1073 ** New syntax: collect BODY1 ...
1074 Version of `begin' which returns a list of the results of the body
1075 forms instead of the result of the last body form. In contrast to
1076 `begin', `collect' allows an empty body.
1077
1078 ** New functions: read-history FILENAME, write-history FILENAME
1079 Read/write command line history from/to file. Returns #t on success
1080 and #f if an error occured.
1081
1082 ** `ls' and `lls' in module (ice-9 ls) now handle no arguments.
1083
1084 These procedures return a list of definitions available in the specified
1085 argument, a relative module reference. In the case of no argument,
1086 `(current-module)' is now consulted for definitions to return, instead
1087 of simply returning #f, the former behavior.
1088
1089 * Changes to the gh_ interface
1090
1091 ** gh_scm2doubles
1092
1093 Now takes a second argument which is the result array. If this
1094 pointer is NULL, a new array is malloced (the old behaviour).
1095
1096 ** gh_chars2byvect, gh_shorts2svect, gh_floats2fvect, gh_scm2chars,
1097 gh_scm2shorts, gh_scm2longs, gh_scm2floats
1098
1099 New functions.
1100
1101 * Changes to the scm_ interface
1102
1103 ** Function: scm_make_named_hook (char* name, int n_args)
1104
1105 Creates a hook in the same way as make-hook above but also
1106 binds a variable named NAME to it.
1107
1108 This is the typical way of creating a hook from C code.
1109
1110 Currently, the variable is created in the root module. This will
1111 change when we get the new module system.
1112
1113 ** The smob interface
1114
1115 The interface for creating smobs has changed. For documentation, see
1116 data-rep.info (made from guile-core/doc/data-rep.texi).
1117
1118 *** Deprecated function: SCM scm_newsmob (scm_smobfuns *)
1119
1120 >>> This function will be removed in 1.3.4. <<<
1121
1122 It is replaced by:
1123
1124 *** Function: SCM scm_make_smob_type (const char *name, scm_sizet size)
1125 This function adds a new smob type, named NAME, with instance size
1126 SIZE to the system. The return value is a tag that is used in
1127 creating instances of the type. If SIZE is 0, then no memory will
1128 be allocated when instances of the smob are created, and nothing
1129 will be freed by the default free function.
1130
1131 *** Function: void scm_set_smob_mark (long tc, SCM (*mark) (SCM))
1132 This function sets the smob marking procedure for the smob type
1133 specified by the tag TC. TC is the tag returned by
1134 `scm_make_smob_type'.
1135
1136 *** Function: void scm_set_smob_free (long tc, SCM (*mark) (SCM))
1137 This function sets the smob freeing procedure for the smob type
1138 specified by the tag TC. TC is the tag returned by
1139 `scm_make_smob_type'.
1140
1141 *** Function: void scm_set_smob_print (tc, print)
1142
1143 - Function: void scm_set_smob_print (long tc,
1144 scm_sizet (*print) (SCM,
1145 SCM,
1146 scm_print_state *))
1147
1148 This function sets the smob printing procedure for the smob type
1149 specified by the tag TC. TC is the tag returned by
1150 `scm_make_smob_type'.
1151
1152 *** Function: void scm_set_smob_equalp (long tc, SCM (*equalp) (SCM, SCM))
1153 This function sets the smob equality-testing predicate for the
1154 smob type specified by the tag TC. TC is the tag returned by
1155 `scm_make_smob_type'.
1156
1157 *** Macro: void SCM_NEWSMOB (SCM var, long tc, void *data)
1158 Make VALUE contain a smob instance of the type with type code TC and
1159 smob data DATA. VALUE must be previously declared as C type `SCM'.
1160
1161 *** Macro: fn_returns SCM_RETURN_NEWSMOB (long tc, void *data)
1162 This macro expands to a block of code that creates a smob instance
1163 of the type with type code TC and smob data DATA, and returns that
1164 `SCM' value. It should be the last piece of code in a block.
1165
1166 ** The interfaces for using I/O ports and implementing port types
1167 (ptobs) have changed significantly. The new interface is based on
1168 shared access to buffers and a new set of ptob procedures.
1169
1170 *** scm_newptob has been removed
1171
1172 It is replaced by:
1173
1174 *** Function: SCM scm_make_port_type (type_name, fill_buffer, write_flush)
1175
1176 - Function: SCM scm_make_port_type (char *type_name,
1177 int (*fill_buffer) (SCM port),
1178 void (*write_flush) (SCM port));
1179
1180 Similarly to the new smob interface, there is a set of function
1181 setters by which the user can customize the behaviour of his port
1182 type. See ports.h (scm_set_port_XXX).
1183
1184 ** scm_strport_to_string: New function: creates a new string from
1185 a string port's buffer.
1186
1187 ** Plug in interface for random number generators
1188 The variable `scm_the_rng' in random.c contains a value and three
1189 function pointers which together define the current random number
1190 generator being used by the Scheme level interface and the random
1191 number library functions.
1192
1193 The user is free to replace the default generator with the generator
1194 of his own choice.
1195
1196 *** Variable: size_t scm_the_rng.rstate_size
1197 The size of the random state type used by the current RNG
1198 measured in chars.
1199
1200 *** Function: unsigned long scm_the_rng.random_bits (scm_rstate *STATE)
1201 Given the random STATE, return 32 random bits.
1202
1203 *** Function: void scm_the_rng.init_rstate (scm_rstate *STATE, chars *S, int N)
1204 Seed random state STATE using string S of length N.
1205
1206 *** Function: scm_rstate *scm_the_rng.copy_rstate (scm_rstate *STATE)
1207 Given random state STATE, return a malloced copy.
1208
1209 ** Default RNG
1210 The default RNG is the MWC (Multiply With Carry) random number
1211 generator described by George Marsaglia at the Department of
1212 Statistics and Supercomputer Computations Research Institute, The
1213 Florida State University (http://stat.fsu.edu/~geo).
1214
1215 It uses 64 bits, has a period of 4578426017172946943 (4.6e18), and
1216 passes all tests in the DIEHARD test suite
1217 (http://stat.fsu.edu/~geo/diehard.html). The generation of 32 bits
1218 costs one multiply and one add on platforms which either supports long
1219 longs (gcc does this on most systems) or have 64 bit longs. The cost
1220 is four multiply on other systems but this can be optimized by writing
1221 scm_i_uniform32 in assembler.
1222
1223 These functions are provided through the scm_the_rng interface for use
1224 by libguile and the application.
1225
1226 *** Function: unsigned long scm_i_uniform32 (scm_i_rstate *STATE)
1227 Given the random STATE, return 32 random bits.
1228 Don't use this function directly. Instead go through the plugin
1229 interface (see "Plug in interface" above).
1230
1231 *** Function: void scm_i_init_rstate (scm_i_rstate *STATE, char *SEED, int N)
1232 Initialize STATE using SEED of length N.
1233
1234 *** Function: scm_i_rstate *scm_i_copy_rstate (scm_i_rstate *STATE)
1235 Return a malloc:ed copy of STATE. This function can easily be re-used
1236 in the interfaces to other RNGs.
1237
1238 ** Random number library functions
1239 These functions use the current RNG through the scm_the_rng interface.
1240 It might be a good idea to use these functions from your C code so
1241 that only one random generator is used by all code in your program.
1242
1243 The default random state is stored in:
1244
1245 *** Variable: SCM scm_var_random_state
1246 Contains the vcell of the Scheme variable "*random-state*" which is
1247 used as default state by all random number functions in the Scheme
1248 level interface.
1249
1250 Example:
1251
1252 double x = scm_c_uniform01 (SCM_RSTATE (SCM_CDR (scm_var_random_state)));
1253
1254 *** Function: scm_rstate *scm_c_default_rstate (void)
1255 This is a convenience function which returns the value of
1256 scm_var_random_state. An error message is generated if this value
1257 isn't a random state.
1258
1259 *** Function: scm_rstate *scm_c_make_rstate (char *SEED, int LENGTH)
1260 Make a new random state from the string SEED of length LENGTH.
1261
1262 It is generally not a good idea to use multiple random states in a
1263 program. While subsequent random numbers generated from one random
1264 state are guaranteed to be reasonably independent, there is no such
1265 guarantee for numbers generated from different random states.
1266
1267 *** Macro: unsigned long scm_c_uniform32 (scm_rstate *STATE)
1268 Return 32 random bits.
1269
1270 *** Function: double scm_c_uniform01 (scm_rstate *STATE)
1271 Return a sample from the uniform(0,1) distribution.
1272
1273 *** Function: double scm_c_normal01 (scm_rstate *STATE)
1274 Return a sample from the normal(0,1) distribution.
1275
1276 *** Function: double scm_c_exp1 (scm_rstate *STATE)
1277 Return a sample from the exp(1) distribution.
1278
1279 *** Function: unsigned long scm_c_random (scm_rstate *STATE, unsigned long M)
1280 Return a sample from the discrete uniform(0,M) distribution.
1281
1282 *** Function: SCM scm_c_random_bignum (scm_rstate *STATE, SCM M)
1283 Return a sample from the discrete uniform(0,M) distribution.
1284 M must be a bignum object. The returned value may be an INUM.
1285
1286
1287 \f
1288 Changes in Guile 1.3 (released Monday, October 19, 1998):
1289
1290 * Changes to the distribution
1291
1292 ** We renamed the SCHEME_LOAD_PATH environment variable to GUILE_LOAD_PATH.
1293 To avoid conflicts, programs should name environment variables after
1294 themselves, except when there's a common practice establishing some
1295 other convention.
1296
1297 For now, Guile supports both GUILE_LOAD_PATH and SCHEME_LOAD_PATH,
1298 giving the former precedence, and printing a warning message if the
1299 latter is set. Guile 1.4 will not recognize SCHEME_LOAD_PATH at all.
1300
1301 ** The header files related to multi-byte characters have been removed.
1302 They were: libguile/extchrs.h and libguile/mbstrings.h. Any C code
1303 which referred to these explicitly will probably need to be rewritten,
1304 since the support for the variant string types has been removed; see
1305 below.
1306
1307 ** The header files append.h and sequences.h have been removed. These
1308 files implemented non-R4RS operations which would encourage
1309 non-portable programming style and less easy-to-read code.
1310
1311 * Changes to the stand-alone interpreter
1312
1313 ** New procedures have been added to implement a "batch mode":
1314
1315 *** Function: batch-mode?
1316
1317 Returns a boolean indicating whether the interpreter is in batch
1318 mode.
1319
1320 *** Function: set-batch-mode?! ARG
1321
1322 If ARG is true, switches the interpreter to batch mode. The `#f'
1323 case has not been implemented.
1324
1325 ** Guile now provides full command-line editing, when run interactively.
1326 To use this feature, you must have the readline library installed.
1327 The Guile build process will notice it, and automatically include
1328 support for it.
1329
1330 The readline library is available via anonymous FTP from any GNU
1331 mirror site; the canonical location is "ftp://prep.ai.mit.edu/pub/gnu".
1332
1333 ** the-last-stack is now a fluid.
1334
1335 * Changes to the procedure for linking libguile with your programs
1336
1337 ** You can now use the `guile-config' utility to build programs that use Guile.
1338
1339 Guile now includes a command-line utility called `guile-config', which
1340 can provide information about how to compile and link programs that
1341 use Guile.
1342
1343 *** `guile-config compile' prints any C compiler flags needed to use Guile.
1344 You should include this command's output on the command line you use
1345 to compile C or C++ code that #includes the Guile header files. It's
1346 usually just a `-I' flag to help the compiler find the Guile headers.
1347
1348
1349 *** `guile-config link' prints any linker flags necessary to link with Guile.
1350
1351 This command writes to its standard output a list of flags which you
1352 must pass to the linker to link your code against the Guile library.
1353 The flags include '-lguile' itself, any other libraries the Guile
1354 library depends upon, and any `-L' flags needed to help the linker
1355 find those libraries.
1356
1357 For example, here is a Makefile rule that builds a program named 'foo'
1358 from the object files ${FOO_OBJECTS}, and links them against Guile:
1359
1360 foo: ${FOO_OBJECTS}
1361 ${CC} ${CFLAGS} ${FOO_OBJECTS} `guile-config link` -o foo
1362
1363 Previous Guile releases recommended that you use autoconf to detect
1364 which of a predefined set of libraries were present on your system.
1365 It is more robust to use `guile-config', since it records exactly which
1366 libraries the installed Guile library requires.
1367
1368 This was originally called `build-guile', but was renamed to
1369 `guile-config' before Guile 1.3 was released, to be consistent with
1370 the analogous script for the GTK+ GUI toolkit, which is called
1371 `gtk-config'.
1372
1373
1374 ** Use the GUILE_FLAGS macro in your configure.in file to find Guile.
1375
1376 If you are using the GNU autoconf package to configure your program,
1377 you can use the GUILE_FLAGS autoconf macro to call `guile-config'
1378 (described above) and gather the necessary values for use in your
1379 Makefiles.
1380
1381 The GUILE_FLAGS macro expands to configure script code which runs the
1382 `guile-config' script, to find out where Guile's header files and
1383 libraries are installed. It sets two variables, marked for
1384 substitution, as by AC_SUBST.
1385
1386 GUILE_CFLAGS --- flags to pass to a C or C++ compiler to build
1387 code that uses Guile header files. This is almost always just a
1388 -I flag.
1389
1390 GUILE_LDFLAGS --- flags to pass to the linker to link a
1391 program against Guile. This includes `-lguile' for the Guile
1392 library itself, any libraries that Guile itself requires (like
1393 -lqthreads), and so on. It may also include a -L flag to tell the
1394 compiler where to find the libraries.
1395
1396 GUILE_FLAGS is defined in the file guile.m4, in the top-level
1397 directory of the Guile distribution. You can copy it into your
1398 package's aclocal.m4 file, and then use it in your configure.in file.
1399
1400 If you are using the `aclocal' program, distributed with GNU automake,
1401 to maintain your aclocal.m4 file, the Guile installation process
1402 installs guile.m4 where aclocal will find it. All you need to do is
1403 use GUILE_FLAGS in your configure.in file, and then run `aclocal';
1404 this will copy the definition of GUILE_FLAGS into your aclocal.m4
1405 file.
1406
1407
1408 * Changes to Scheme functions and syntax
1409
1410 ** Multi-byte strings have been removed, as have multi-byte and wide
1411 ports. We felt that these were the wrong approach to
1412 internationalization support.
1413
1414 ** New function: readline [PROMPT]
1415 Read a line from the terminal, and allow the user to edit it,
1416 prompting with PROMPT. READLINE provides a large set of Emacs-like
1417 editing commands, lets the user recall previously typed lines, and
1418 works on almost every kind of terminal, including dumb terminals.
1419
1420 READLINE assumes that the cursor is at the beginning of the line when
1421 it is invoked. Thus, you can't print a prompt yourself, and then call
1422 READLINE; you need to package up your prompt as a string, pass it to
1423 the function, and let READLINE print the prompt itself. This is
1424 because READLINE needs to know the prompt's screen width.
1425
1426 For Guile to provide this function, you must have the readline
1427 library, version 2.1 or later, installed on your system. Readline is
1428 available via anonymous FTP from prep.ai.mit.edu in pub/gnu, or from
1429 any GNU mirror site.
1430
1431 See also ADD-HISTORY function.
1432
1433 ** New function: add-history STRING
1434 Add STRING as the most recent line in the history used by the READLINE
1435 command. READLINE does not add lines to the history itself; you must
1436 call ADD-HISTORY to make previous input available to the user.
1437
1438 ** The behavior of the read-line function has changed.
1439
1440 This function now uses standard C library functions to read the line,
1441 for speed. This means that it doesn not respect the value of
1442 scm-line-incrementors; it assumes that lines are delimited with
1443 #\newline.
1444
1445 (Note that this is read-line, the function that reads a line of text
1446 from a port, not readline, the function that reads a line from a
1447 terminal, providing full editing capabilities.)
1448
1449 ** New module (ice-9 getopt-gnu-style): Parse command-line arguments.
1450
1451 This module provides some simple argument parsing. It exports one
1452 function:
1453
1454 Function: getopt-gnu-style ARG-LS
1455 Parse a list of program arguments into an alist of option
1456 descriptions.
1457
1458 Each item in the list of program arguments is examined to see if
1459 it meets the syntax of a GNU long-named option. An argument like
1460 `--MUMBLE' produces an element of the form (MUMBLE . #t) in the
1461 returned alist, where MUMBLE is a keyword object with the same
1462 name as the argument. An argument like `--MUMBLE=FROB' produces
1463 an element of the form (MUMBLE . FROB), where FROB is a string.
1464
1465 As a special case, the returned alist also contains a pair whose
1466 car is the symbol `rest'. The cdr of this pair is a list
1467 containing all the items in the argument list that are not options
1468 of the form mentioned above.
1469
1470 The argument `--' is treated specially: all items in the argument
1471 list appearing after such an argument are not examined, and are
1472 returned in the special `rest' list.
1473
1474 This function does not parse normal single-character switches.
1475 You will need to parse them out of the `rest' list yourself.
1476
1477 ** The read syntax for byte vectors and short vectors has changed.
1478
1479 Instead of #bytes(...), write #y(...).
1480
1481 Instead of #short(...), write #h(...).
1482
1483 This may seem nutty, but, like the other uniform vectors, byte vectors
1484 and short vectors want to have the same print and read syntax (and,
1485 more basic, want to have read syntax!). Changing the read syntax to
1486 use multiple characters after the hash sign breaks with the
1487 conventions used in R5RS and the conventions used for the other
1488 uniform vectors. It also introduces complexity in the current reader,
1489 both on the C and Scheme levels. (The Right solution is probably to
1490 change the syntax and prototypes for uniform vectors entirely.)
1491
1492
1493 ** The new module (ice-9 session) provides useful interactive functions.
1494
1495 *** New procedure: (apropos REGEXP OPTION ...)
1496
1497 Display a list of top-level variables whose names match REGEXP, and
1498 the modules they are imported from. Each OPTION should be one of the
1499 following symbols:
1500
1501 value --- Show the value of each matching variable.
1502 shadow --- Show bindings shadowed by subsequently imported modules.
1503 full --- Same as both `shadow' and `value'.
1504
1505 For example:
1506
1507 guile> (apropos "trace" 'full)
1508 debug: trace #<procedure trace args>
1509 debug: untrace #<procedure untrace args>
1510 the-scm-module: display-backtrace #<compiled-closure #<primitive-procedure gsubr-apply>>
1511 the-scm-module: before-backtrace-hook ()
1512 the-scm-module: backtrace #<primitive-procedure backtrace>
1513 the-scm-module: after-backtrace-hook ()
1514 the-scm-module: has-shown-backtrace-hint? #f
1515 guile>
1516
1517 ** There are new functions and syntax for working with macros.
1518
1519 Guile implements macros as a special object type. Any variable whose
1520 top-level binding is a macro object acts as a macro. The macro object
1521 specifies how the expression should be transformed before evaluation.
1522
1523 *** Macro objects now print in a reasonable way, resembling procedures.
1524
1525 *** New function: (macro? OBJ)
1526 True iff OBJ is a macro object.
1527
1528 *** New function: (primitive-macro? OBJ)
1529 Like (macro? OBJ), but true only if OBJ is one of the Guile primitive
1530 macro transformers, implemented in eval.c rather than Scheme code.
1531
1532 Why do we have this function?
1533 - For symmetry with procedure? and primitive-procedure?,
1534 - to allow custom print procedures to tell whether a macro is
1535 primitive, and display it differently, and
1536 - to allow compilers and user-written evaluators to distinguish
1537 builtin special forms from user-defined ones, which could be
1538 compiled.
1539
1540 *** New function: (macro-type OBJ)
1541 Return a value indicating what kind of macro OBJ is. Possible return
1542 values are:
1543
1544 The symbol `syntax' --- a macro created by procedure->syntax.
1545 The symbol `macro' --- a macro created by procedure->macro.
1546 The symbol `macro!' --- a macro created by procedure->memoizing-macro.
1547 The boolean #f --- if OBJ is not a macro object.
1548
1549 *** New function: (macro-name MACRO)
1550 Return the name of the macro object MACRO's procedure, as returned by
1551 procedure-name.
1552
1553 *** New function: (macro-transformer MACRO)
1554 Return the transformer procedure for MACRO.
1555
1556 *** New syntax: (use-syntax MODULE ... TRANSFORMER)
1557
1558 Specify a new macro expander to use in the current module. Each
1559 MODULE is a module name, with the same meaning as in the `use-modules'
1560 form; each named module's exported bindings are added to the current
1561 top-level environment. TRANSFORMER is an expression evaluated in the
1562 resulting environment which must yield a procedure to use as the
1563 module's eval transformer: every expression evaluated in this module
1564 is passed to this function, and the result passed to the Guile
1565 interpreter.
1566
1567 *** macro-eval! is removed. Use local-eval instead.
1568
1569 ** Some magic has been added to the printer to better handle user
1570 written printing routines (like record printers, closure printers).
1571
1572 The problem is that these user written routines must have access to
1573 the current `print-state' to be able to handle fancy things like
1574 detection of circular references. These print-states have to be
1575 passed to the builtin printing routines (display, write, etc) to
1576 properly continue the print chain.
1577
1578 We didn't want to change all existing print code so that it
1579 explicitly passes thru a print state in addition to a port. Instead,
1580 we extented the possible values that the builtin printing routines
1581 accept as a `port'. In addition to a normal port, they now also take
1582 a pair of a normal port and a print-state. Printing will go to the
1583 port and the print-state will be used to control the detection of
1584 circular references, etc. If the builtin function does not care for a
1585 print-state, it is simply ignored.
1586
1587 User written callbacks are now called with such a pair as their
1588 `port', but because every function now accepts this pair as a PORT
1589 argument, you don't have to worry about that. In fact, it is probably
1590 safest to not check for these pairs.
1591
1592 However, it is sometimes necessary to continue a print chain on a
1593 different port, for example to get a intermediate string
1594 representation of the printed value, mangle that string somehow, and
1595 then to finally print the mangled string. Use the new function
1596
1597 inherit-print-state OLD-PORT NEW-PORT
1598
1599 for this. It constructs a new `port' that prints to NEW-PORT but
1600 inherits the print-state of OLD-PORT.
1601
1602 ** struct-vtable-offset renamed to vtable-offset-user
1603
1604 ** New constants: vtable-index-layout, vtable-index-vtable, vtable-index-printer
1605
1606 ** There is now a fourth (optional) argument to make-vtable-vtable and
1607 make-struct when constructing new types (vtables). This argument
1608 initializes field vtable-index-printer of the vtable.
1609
1610 ** The detection of circular references has been extended to structs.
1611 That is, a structure that -- in the process of being printed -- prints
1612 itself does not lead to infinite recursion.
1613
1614 ** There is now some basic support for fluids. Please read
1615 "libguile/fluid.h" to find out more. It is accessible from Scheme with
1616 the following functions and macros:
1617
1618 Function: make-fluid
1619
1620 Create a new fluid object. Fluids are not special variables or
1621 some other extension to the semantics of Scheme, but rather
1622 ordinary Scheme objects. You can store them into variables (that
1623 are still lexically scoped, of course) or into any other place you
1624 like. Every fluid has a initial value of `#f'.
1625
1626 Function: fluid? OBJ
1627
1628 Test whether OBJ is a fluid.
1629
1630 Function: fluid-ref FLUID
1631 Function: fluid-set! FLUID VAL
1632
1633 Access/modify the fluid FLUID. Modifications are only visible
1634 within the current dynamic root (that includes threads).
1635
1636 Function: with-fluids* FLUIDS VALUES THUNK
1637
1638 FLUIDS is a list of fluids and VALUES a corresponding list of
1639 values for these fluids. Before THUNK gets called the values are
1640 installed in the fluids and the old values of the fluids are
1641 saved in the VALUES list. When the flow of control leaves THUNK
1642 or reenters it, the values get swapped again. You might think of
1643 this as a `safe-fluid-excursion'. Note that the VALUES list is
1644 modified by `with-fluids*'.
1645
1646 Macro: with-fluids ((FLUID VALUE) ...) FORM ...
1647
1648 The same as `with-fluids*' but with a different syntax. It looks
1649 just like `let', but both FLUID and VALUE are evaluated. Remember,
1650 fluids are not special variables but ordinary objects. FLUID
1651 should evaluate to a fluid.
1652
1653 ** Changes to system call interfaces:
1654
1655 *** close-port, close-input-port and close-output-port now return a
1656 boolean instead of an `unspecified' object. #t means that the port
1657 was successfully closed, while #f means it was already closed. It is
1658 also now possible for these procedures to raise an exception if an
1659 error occurs (some errors from write can be delayed until close.)
1660
1661 *** the first argument to chmod, fcntl, ftell and fseek can now be a
1662 file descriptor.
1663
1664 *** the third argument to fcntl is now optional.
1665
1666 *** the first argument to chown can now be a file descriptor or a port.
1667
1668 *** the argument to stat can now be a port.
1669
1670 *** The following new procedures have been added (most use scsh
1671 interfaces):
1672
1673 *** procedure: close PORT/FD
1674 Similar to close-port (*note close-port: Closing Ports.), but also
1675 works on file descriptors. A side effect of closing a file
1676 descriptor is that any ports using that file descriptor are moved
1677 to a different file descriptor and have their revealed counts set
1678 to zero.
1679
1680 *** procedure: port->fdes PORT
1681 Returns the integer file descriptor underlying PORT. As a side
1682 effect the revealed count of PORT is incremented.
1683
1684 *** procedure: fdes->ports FDES
1685 Returns a list of existing ports which have FDES as an underlying
1686 file descriptor, without changing their revealed counts.
1687
1688 *** procedure: fdes->inport FDES
1689 Returns an existing input port which has FDES as its underlying
1690 file descriptor, if one exists, and increments its revealed count.
1691 Otherwise, returns a new input port with a revealed count of 1.
1692
1693 *** procedure: fdes->outport FDES
1694 Returns an existing output port which has FDES as its underlying
1695 file descriptor, if one exists, and increments its revealed count.
1696 Otherwise, returns a new output port with a revealed count of 1.
1697
1698 The next group of procedures perform a `dup2' system call, if NEWFD
1699 (an integer) is supplied, otherwise a `dup'. The file descriptor to be
1700 duplicated can be supplied as an integer or contained in a port. The
1701 type of value returned varies depending on which procedure is used.
1702
1703 All procedures also have the side effect when performing `dup2' that
1704 any ports using NEWFD are moved to a different file descriptor and have
1705 their revealed counts set to zero.
1706
1707 *** procedure: dup->fdes PORT/FD [NEWFD]
1708 Returns an integer file descriptor.
1709
1710 *** procedure: dup->inport PORT/FD [NEWFD]
1711 Returns a new input port using the new file descriptor.
1712
1713 *** procedure: dup->outport PORT/FD [NEWFD]
1714 Returns a new output port using the new file descriptor.
1715
1716 *** procedure: dup PORT/FD [NEWFD]
1717 Returns a new port if PORT/FD is a port, with the same mode as the
1718 supplied port, otherwise returns an integer file descriptor.
1719
1720 *** procedure: dup->port PORT/FD MODE [NEWFD]
1721 Returns a new port using the new file descriptor. MODE supplies a
1722 mode string for the port (*note open-file: File Ports.).
1723
1724 *** procedure: setenv NAME VALUE
1725 Modifies the environment of the current process, which is also the
1726 default environment inherited by child processes.
1727
1728 If VALUE is `#f', then NAME is removed from the environment.
1729 Otherwise, the string NAME=VALUE is added to the environment,
1730 replacing any existing string with name matching NAME.
1731
1732 The return value is unspecified.
1733
1734 *** procedure: truncate-file OBJ SIZE
1735 Truncates the file referred to by OBJ to at most SIZE bytes. OBJ
1736 can be a string containing a file name or an integer file
1737 descriptor or port open for output on the file. The underlying
1738 system calls are `truncate' and `ftruncate'.
1739
1740 The return value is unspecified.
1741
1742 *** procedure: setvbuf PORT MODE [SIZE]
1743 Set the buffering mode for PORT. MODE can be:
1744 `_IONBF'
1745 non-buffered
1746
1747 `_IOLBF'
1748 line buffered
1749
1750 `_IOFBF'
1751 block buffered, using a newly allocated buffer of SIZE bytes.
1752 However if SIZE is zero or unspecified, the port will be made
1753 non-buffered.
1754
1755 This procedure should not be used after I/O has been performed with
1756 the port.
1757
1758 Ports are usually block buffered by default, with a default buffer
1759 size. Procedures e.g., *Note open-file: File Ports, which accept a
1760 mode string allow `0' to be added to request an unbuffered port.
1761
1762 *** procedure: fsync PORT/FD
1763 Copies any unwritten data for the specified output file descriptor
1764 to disk. If PORT/FD is a port, its buffer is flushed before the
1765 underlying file descriptor is fsync'd. The return value is
1766 unspecified.
1767
1768 *** procedure: open-fdes PATH FLAGS [MODES]
1769 Similar to `open' but returns a file descriptor instead of a port.
1770
1771 *** procedure: execle PATH ENV [ARG] ...
1772 Similar to `execl', but the environment of the new process is
1773 specified by ENV, which must be a list of strings as returned by
1774 the `environ' procedure.
1775
1776 This procedure is currently implemented using the `execve' system
1777 call, but we call it `execle' because of its Scheme calling
1778 interface.
1779
1780 *** procedure: strerror ERRNO
1781 Returns the Unix error message corresponding to ERRNO, an integer.
1782
1783 *** procedure: primitive-exit [STATUS]
1784 Terminate the current process without unwinding the Scheme stack.
1785 This is would typically be useful after a fork. The exit status
1786 is STATUS if supplied, otherwise zero.
1787
1788 *** procedure: times
1789 Returns an object with information about real and processor time.
1790 The following procedures accept such an object as an argument and
1791 return a selected component:
1792
1793 `tms:clock'
1794 The current real time, expressed as time units relative to an
1795 arbitrary base.
1796
1797 `tms:utime'
1798 The CPU time units used by the calling process.
1799
1800 `tms:stime'
1801 The CPU time units used by the system on behalf of the
1802 calling process.
1803
1804 `tms:cutime'
1805 The CPU time units used by terminated child processes of the
1806 calling process, whose status has been collected (e.g., using
1807 `waitpid').
1808
1809 `tms:cstime'
1810 Similarly, the CPU times units used by the system on behalf of
1811 terminated child processes.
1812
1813 ** Removed: list-length
1814 ** Removed: list-append, list-append!
1815 ** Removed: list-reverse, list-reverse!
1816
1817 ** array-map renamed to array-map!
1818
1819 ** serial-array-map renamed to serial-array-map!
1820
1821 ** catch doesn't take #f as first argument any longer
1822
1823 Previously, it was possible to pass #f instead of a key to `catch'.
1824 That would cause `catch' to pass a jump buffer object to the procedure
1825 passed as second argument. The procedure could then use this jump
1826 buffer objekt as an argument to throw.
1827
1828 This mechanism has been removed since its utility doesn't motivate the
1829 extra complexity it introduces.
1830
1831 ** The `#/' notation for lists now provokes a warning message from Guile.
1832 This syntax will be removed from Guile in the near future.
1833
1834 To disable the warning message, set the GUILE_HUSH environment
1835 variable to any non-empty value.
1836
1837 ** The newline character now prints as `#\newline', following the
1838 normal Scheme notation, not `#\nl'.
1839
1840 * Changes to the gh_ interface
1841
1842 ** The gh_enter function now takes care of loading the Guile startup files.
1843 gh_enter works by calling scm_boot_guile; see the remarks below.
1844
1845 ** Function: void gh_write (SCM x)
1846
1847 Write the printed representation of the scheme object x to the current
1848 output port. Corresponds to the scheme level `write'.
1849
1850 ** gh_list_length renamed to gh_length.
1851
1852 ** vector handling routines
1853
1854 Several major changes. In particular, gh_vector() now resembles
1855 (vector ...) (with a caveat -- see manual), and gh_make_vector() now
1856 exists and behaves like (make-vector ...). gh_vset() and gh_vref()
1857 have been renamed gh_vector_set_x() and gh_vector_ref(). Some missing
1858 vector-related gh_ functions have been implemented.
1859
1860 ** pair and list routines
1861
1862 Implemented several of the R4RS pair and list functions that were
1863 missing.
1864
1865 ** gh_scm2doubles, gh_doubles2scm, gh_doubles2dvect
1866
1867 New function. Converts double arrays back and forth between Scheme
1868 and C.
1869
1870 * Changes to the scm_ interface
1871
1872 ** The function scm_boot_guile now takes care of loading the startup files.
1873
1874 Guile's primary initialization function, scm_boot_guile, now takes
1875 care of loading `boot-9.scm', in the `ice-9' module, to initialize
1876 Guile, define the module system, and put together some standard
1877 bindings. It also loads `init.scm', which is intended to hold
1878 site-specific initialization code.
1879
1880 Since Guile cannot operate properly until boot-9.scm is loaded, there
1881 is no reason to separate loading boot-9.scm from Guile's other
1882 initialization processes.
1883
1884 This job used to be done by scm_compile_shell_switches, which didn't
1885 make much sense; in particular, it meant that people using Guile for
1886 non-shell-like applications had to jump through hoops to get Guile
1887 initialized properly.
1888
1889 ** The function scm_compile_shell_switches no longer loads the startup files.
1890 Now, Guile always loads the startup files, whenever it is initialized;
1891 see the notes above for scm_boot_guile and scm_load_startup_files.
1892
1893 ** Function: scm_load_startup_files
1894 This new function takes care of loading Guile's initialization file
1895 (`boot-9.scm'), and the site initialization file, `init.scm'. Since
1896 this is always called by the Guile initialization process, it's
1897 probably not too useful to call this yourself, but it's there anyway.
1898
1899 ** The semantics of smob marking have changed slightly.
1900
1901 The smob marking function (the `mark' member of the scm_smobfuns
1902 structure) is no longer responsible for setting the mark bit on the
1903 smob. The generic smob handling code in the garbage collector will
1904 set this bit. The mark function need only ensure that any other
1905 objects the smob refers to get marked.
1906
1907 Note that this change means that the smob's GC8MARK bit is typically
1908 already set upon entry to the mark function. Thus, marking functions
1909 which look like this:
1910
1911 {
1912 if (SCM_GC8MARKP (ptr))
1913 return SCM_BOOL_F;
1914 SCM_SETGC8MARK (ptr);
1915 ... mark objects to which the smob refers ...
1916 }
1917
1918 are now incorrect, since they will return early, and fail to mark any
1919 other objects the smob refers to. Some code in the Guile library used
1920 to work this way.
1921
1922 ** The semantics of the I/O port functions in scm_ptobfuns have changed.
1923
1924 If you have implemented your own I/O port type, by writing the
1925 functions required by the scm_ptobfuns and then calling scm_newptob,
1926 you will need to change your functions slightly.
1927
1928 The functions in a scm_ptobfuns structure now expect the port itself
1929 as their argument; they used to expect the `stream' member of the
1930 port's scm_port_table structure. This allows functions in an
1931 scm_ptobfuns structure to easily access the port's cell (and any flags
1932 it its CAR), and the port's scm_port_table structure.
1933
1934 Guile now passes the I/O port itself as the `port' argument in the
1935 following scm_ptobfuns functions:
1936
1937 int (*free) (SCM port);
1938 int (*fputc) (int, SCM port);
1939 int (*fputs) (char *, SCM port);
1940 scm_sizet (*fwrite) SCM_P ((char *ptr,
1941 scm_sizet size,
1942 scm_sizet nitems,
1943 SCM port));
1944 int (*fflush) (SCM port);
1945 int (*fgetc) (SCM port);
1946 int (*fclose) (SCM port);
1947
1948 The interfaces to the `mark', `print', `equalp', and `fgets' methods
1949 are unchanged.
1950
1951 If you have existing code which defines its own port types, it is easy
1952 to convert your code to the new interface; simply apply SCM_STREAM to
1953 the port argument to yield the value you code used to expect.
1954
1955 Note that since both the port and the stream have the same type in the
1956 C code --- they are both SCM values --- the C compiler will not remind
1957 you if you forget to update your scm_ptobfuns functions.
1958
1959
1960 ** Function: int scm_internal_select (int fds,
1961 SELECT_TYPE *rfds,
1962 SELECT_TYPE *wfds,
1963 SELECT_TYPE *efds,
1964 struct timeval *timeout);
1965
1966 This is a replacement for the `select' function provided by the OS.
1967 It enables I/O blocking and sleeping to happen for one cooperative
1968 thread without blocking other threads. It also avoids busy-loops in
1969 these situations. It is intended that all I/O blocking and sleeping
1970 will finally go through this function. Currently, this function is
1971 only available on systems providing `gettimeofday' and `select'.
1972
1973 ** Function: SCM scm_internal_stack_catch (SCM tag,
1974 scm_catch_body_t body,
1975 void *body_data,
1976 scm_catch_handler_t handler,
1977 void *handler_data)
1978
1979 A new sibling to the other two C level `catch' functions
1980 scm_internal_catch and scm_internal_lazy_catch. Use it if you want
1981 the stack to be saved automatically into the variable `the-last-stack'
1982 (scm_the_last_stack_var) on error. This is necessary if you want to
1983 use advanced error reporting, such as calling scm_display_error and
1984 scm_display_backtrace. (They both take a stack object as argument.)
1985
1986 ** Function: SCM scm_spawn_thread (scm_catch_body_t body,
1987 void *body_data,
1988 scm_catch_handler_t handler,
1989 void *handler_data)
1990
1991 Spawns a new thread. It does a job similar to
1992 scm_call_with_new_thread but takes arguments more suitable when
1993 spawning threads from application C code.
1994
1995 ** The hook scm_error_callback has been removed. It was originally
1996 intended as a way for the user to install his own error handler. But
1997 that method works badly since it intervenes between throw and catch,
1998 thereby changing the semantics of expressions like (catch #t ...).
1999 The correct way to do it is to use one of the C level catch functions
2000 in throw.c: scm_internal_catch/lazy_catch/stack_catch.
2001
2002 ** Removed functions:
2003
2004 scm_obj_length, scm_list_length, scm_list_append, scm_list_append_x,
2005 scm_list_reverse, scm_list_reverse_x
2006
2007 ** New macros: SCM_LISTn where n is one of the integers 0-9.
2008
2009 These can be used for pretty list creation from C. The idea is taken
2010 from Erick Gallesio's STk.
2011
2012 ** scm_array_map renamed to scm_array_map_x
2013
2014 ** mbstrings are now removed
2015
2016 This means that the type codes scm_tc7_mb_string and
2017 scm_tc7_mb_substring has been removed.
2018
2019 ** scm_gen_putc, scm_gen_puts, scm_gen_write, and scm_gen_getc have changed.
2020
2021 Since we no longer support multi-byte strings, these I/O functions
2022 have been simplified, and renamed. Here are their old names, and
2023 their new names and arguments:
2024
2025 scm_gen_putc -> void scm_putc (int c, SCM port);
2026 scm_gen_puts -> void scm_puts (char *s, SCM port);
2027 scm_gen_write -> void scm_lfwrite (char *ptr, scm_sizet size, SCM port);
2028 scm_gen_getc -> void scm_getc (SCM port);
2029
2030
2031 ** The macros SCM_TYP7D and SCM_TYP7SD has been removed.
2032
2033 ** The macro SCM_TYP7S has taken the role of the old SCM_TYP7D
2034
2035 SCM_TYP7S now masks away the bit which distinguishes substrings from
2036 strings.
2037
2038 ** scm_catch_body_t: Backward incompatible change!
2039
2040 Body functions to scm_internal_catch and friends do not any longer
2041 take a second argument. This is because it is no longer possible to
2042 pass a #f arg to catch.
2043
2044 ** Calls to scm_protect_object and scm_unprotect now nest properly.
2045
2046 The function scm_protect_object protects its argument from being freed
2047 by the garbage collector. scm_unprotect_object removes that
2048 protection.
2049
2050 These functions now nest properly. That is, for every object O, there
2051 is a counter which scm_protect_object(O) increments and
2052 scm_unprotect_object(O) decrements, if the counter is greater than
2053 zero. Every object's counter is zero when it is first created. If an
2054 object's counter is greater than zero, the garbage collector will not
2055 reclaim its storage.
2056
2057 This allows you to use scm_protect_object in your code without
2058 worrying that some other function you call will call
2059 scm_unprotect_object, and allow it to be freed. Assuming that the
2060 functions you call are well-behaved, and unprotect only those objects
2061 they protect, you can follow the same rule and have confidence that
2062 objects will be freed only at appropriate times.
2063
2064 \f
2065 Changes in Guile 1.2 (released Tuesday, June 24 1997):
2066
2067 * Changes to the distribution
2068
2069 ** Nightly snapshots are now available from ftp.red-bean.com.
2070 The old server, ftp.cyclic.com, has been relinquished to its rightful
2071 owner.
2072
2073 Nightly snapshots of the Guile development sources are now available via
2074 anonymous FTP from ftp.red-bean.com, as /pub/guile/guile-snap.tar.gz.
2075
2076 Via the web, that's: ftp://ftp.red-bean.com/pub/guile/guile-snap.tar.gz
2077 For getit, that's: ftp.red-bean.com:/pub/guile/guile-snap.tar.gz
2078
2079 ** To run Guile without installing it, the procedure has changed a bit.
2080
2081 If you used a separate build directory to compile Guile, you'll need
2082 to include the build directory in SCHEME_LOAD_PATH, as well as the
2083 source directory. See the `INSTALL' file for examples.
2084
2085 * Changes to the procedure for linking libguile with your programs
2086
2087 ** The standard Guile load path for Scheme code now includes
2088 $(datadir)/guile (usually /usr/local/share/guile). This means that
2089 you can install your own Scheme files there, and Guile will find them.
2090 (Previous versions of Guile only checked a directory whose name
2091 contained the Guile version number, so you had to re-install or move
2092 your Scheme sources each time you installed a fresh version of Guile.)
2093
2094 The load path also includes $(datadir)/guile/site; we recommend
2095 putting individual Scheme files there. If you want to install a
2096 package with multiple source files, create a directory for them under
2097 $(datadir)/guile.
2098
2099 ** Guile 1.2 will now use the Rx regular expression library, if it is
2100 installed on your system. When you are linking libguile into your own
2101 programs, this means you will have to link against -lguile, -lqt (if
2102 you configured Guile with thread support), and -lrx.
2103
2104 If you are using autoconf to generate configuration scripts for your
2105 application, the following lines should suffice to add the appropriate
2106 libraries to your link command:
2107
2108 ### Find Rx, quickthreads and libguile.
2109 AC_CHECK_LIB(rx, main)
2110 AC_CHECK_LIB(qt, main)
2111 AC_CHECK_LIB(guile, scm_shell)
2112
2113 The Guile 1.2 distribution does not contain sources for the Rx
2114 library, as Guile 1.0 did. If you want to use Rx, you'll need to
2115 retrieve it from a GNU FTP site and install it separately.
2116
2117 * Changes to Scheme functions and syntax
2118
2119 ** The dynamic linking features of Guile are now enabled by default.
2120 You can disable them by giving the `--disable-dynamic-linking' option
2121 to configure.
2122
2123 (dynamic-link FILENAME)
2124
2125 Find the object file denoted by FILENAME (a string) and link it
2126 into the running Guile application. When everything works out,
2127 return a Scheme object suitable for representing the linked object
2128 file. Otherwise an error is thrown. How object files are
2129 searched is system dependent.
2130
2131 (dynamic-object? VAL)
2132
2133 Determine whether VAL represents a dynamically linked object file.
2134
2135 (dynamic-unlink DYNOBJ)
2136
2137 Unlink the indicated object file from the application. DYNOBJ
2138 should be one of the values returned by `dynamic-link'.
2139
2140 (dynamic-func FUNCTION DYNOBJ)
2141
2142 Search the C function indicated by FUNCTION (a string or symbol)
2143 in DYNOBJ and return some Scheme object that can later be used
2144 with `dynamic-call' to actually call this function. Right now,
2145 these Scheme objects are formed by casting the address of the
2146 function to `long' and converting this number to its Scheme
2147 representation.
2148
2149 (dynamic-call FUNCTION DYNOBJ)
2150
2151 Call the C function indicated by FUNCTION and DYNOBJ. The
2152 function is passed no arguments and its return value is ignored.
2153 When FUNCTION is something returned by `dynamic-func', call that
2154 function and ignore DYNOBJ. When FUNCTION is a string (or symbol,
2155 etc.), look it up in DYNOBJ; this is equivalent to
2156
2157 (dynamic-call (dynamic-func FUNCTION DYNOBJ) #f)
2158
2159 Interrupts are deferred while the C function is executing (with
2160 SCM_DEFER_INTS/SCM_ALLOW_INTS).
2161
2162 (dynamic-args-call FUNCTION DYNOBJ ARGS)
2163
2164 Call the C function indicated by FUNCTION and DYNOBJ, but pass it
2165 some arguments and return its return value. The C function is
2166 expected to take two arguments and return an `int', just like
2167 `main':
2168
2169 int c_func (int argc, char **argv);
2170
2171 ARGS must be a list of strings and is converted into an array of
2172 `char *'. The array is passed in ARGV and its size in ARGC. The
2173 return value is converted to a Scheme number and returned from the
2174 call to `dynamic-args-call'.
2175
2176 When dynamic linking is disabled or not supported on your system,
2177 the above functions throw errors, but they are still available.
2178
2179 Here is a small example that works on GNU/Linux:
2180
2181 (define libc-obj (dynamic-link "libc.so"))
2182 (dynamic-args-call 'rand libc-obj '())
2183
2184 See the file `libguile/DYNAMIC-LINKING' for additional comments.
2185
2186 ** The #/ syntax for module names is depreciated, and will be removed
2187 in a future version of Guile. Instead of
2188
2189 #/foo/bar/baz
2190
2191 instead write
2192
2193 (foo bar baz)
2194
2195 The latter syntax is more consistent with existing Lisp practice.
2196
2197 ** Guile now does fancier printing of structures. Structures are the
2198 underlying implementation for records, which in turn are used to
2199 implement modules, so all of these object now print differently and in
2200 a more informative way.
2201
2202 The Scheme printer will examine the builtin variable *struct-printer*
2203 whenever it needs to print a structure object. When this variable is
2204 not `#f' it is deemed to be a procedure and will be applied to the
2205 structure object and the output port. When *struct-printer* is `#f'
2206 or the procedure return `#f' the structure object will be printed in
2207 the boring #<struct 80458270> form.
2208
2209 This hook is used by some routines in ice-9/boot-9.scm to implement
2210 type specific printing routines. Please read the comments there about
2211 "printing structs".
2212
2213 One of the more specific uses of structs are records. The printing
2214 procedure that could be passed to MAKE-RECORD-TYPE is now actually
2215 called. It should behave like a *struct-printer* procedure (described
2216 above).
2217
2218 ** Guile now supports a new R4RS-compliant syntax for keywords. A
2219 token of the form #:NAME, where NAME has the same syntax as a Scheme
2220 symbol, is the external representation of the keyword named NAME.
2221 Keyword objects print using this syntax as well, so values containing
2222 keyword objects can be read back into Guile. When used in an
2223 expression, keywords are self-quoting objects.
2224
2225 Guile suports this read syntax, and uses this print syntax, regardless
2226 of the current setting of the `keyword' read option. The `keyword'
2227 read option only controls whether Guile recognizes the `:NAME' syntax,
2228 which is incompatible with R4RS. (R4RS says such token represent
2229 symbols.)
2230
2231 ** Guile has regular expression support again. Guile 1.0 included
2232 functions for matching regular expressions, based on the Rx library.
2233 In Guile 1.1, the Guile/Rx interface was removed to simplify the
2234 distribution, and thus Guile had no regular expression support. Guile
2235 1.2 again supports the most commonly used functions, and supports all
2236 of SCSH's regular expression functions.
2237
2238 If your system does not include a POSIX regular expression library,
2239 and you have not linked Guile with a third-party regexp library such as
2240 Rx, these functions will not be available. You can tell whether your
2241 Guile installation includes regular expression support by checking
2242 whether the `*features*' list includes the `regex' symbol.
2243
2244 *** regexp functions
2245
2246 By default, Guile supports POSIX extended regular expressions. That
2247 means that the characters `(', `)', `+' and `?' are special, and must
2248 be escaped if you wish to match the literal characters.
2249
2250 This regular expression interface was modeled after that implemented
2251 by SCSH, the Scheme Shell. It is intended to be upwardly compatible
2252 with SCSH regular expressions.
2253
2254 **** Function: string-match PATTERN STR [START]
2255 Compile the string PATTERN into a regular expression and compare
2256 it with STR. The optional numeric argument START specifies the
2257 position of STR at which to begin matching.
2258
2259 `string-match' returns a "match structure" which describes what,
2260 if anything, was matched by the regular expression. *Note Match
2261 Structures::. If STR does not match PATTERN at all,
2262 `string-match' returns `#f'.
2263
2264 Each time `string-match' is called, it must compile its PATTERN
2265 argument into a regular expression structure. This operation is
2266 expensive, which makes `string-match' inefficient if the same regular
2267 expression is used several times (for example, in a loop). For better
2268 performance, you can compile a regular expression in advance and then
2269 match strings against the compiled regexp.
2270
2271 **** Function: make-regexp STR [FLAGS]
2272 Compile the regular expression described by STR, and return the
2273 compiled regexp structure. If STR does not describe a legal
2274 regular expression, `make-regexp' throws a
2275 `regular-expression-syntax' error.
2276
2277 FLAGS may be the bitwise-or of one or more of the following:
2278
2279 **** Constant: regexp/extended
2280 Use POSIX Extended Regular Expression syntax when interpreting
2281 STR. If not set, POSIX Basic Regular Expression syntax is used.
2282 If the FLAGS argument is omitted, we assume regexp/extended.
2283
2284 **** Constant: regexp/icase
2285 Do not differentiate case. Subsequent searches using the
2286 returned regular expression will be case insensitive.
2287
2288 **** Constant: regexp/newline
2289 Match-any-character operators don't match a newline.
2290
2291 A non-matching list ([^...]) not containing a newline matches a
2292 newline.
2293
2294 Match-beginning-of-line operator (^) matches the empty string
2295 immediately after a newline, regardless of whether the FLAGS
2296 passed to regexp-exec contain regexp/notbol.
2297
2298 Match-end-of-line operator ($) matches the empty string
2299 immediately before a newline, regardless of whether the FLAGS
2300 passed to regexp-exec contain regexp/noteol.
2301
2302 **** Function: regexp-exec REGEXP STR [START [FLAGS]]
2303 Match the compiled regular expression REGEXP against `str'. If
2304 the optional integer START argument is provided, begin matching
2305 from that position in the string. Return a match structure
2306 describing the results of the match, or `#f' if no match could be
2307 found.
2308
2309 FLAGS may be the bitwise-or of one or more of the following:
2310
2311 **** Constant: regexp/notbol
2312 The match-beginning-of-line operator always fails to match (but
2313 see the compilation flag regexp/newline above) This flag may be
2314 used when different portions of a string are passed to
2315 regexp-exec and the beginning of the string should not be
2316 interpreted as the beginning of the line.
2317
2318 **** Constant: regexp/noteol
2319 The match-end-of-line operator always fails to match (but see the
2320 compilation flag regexp/newline above)
2321
2322 **** Function: regexp? OBJ
2323 Return `#t' if OBJ is a compiled regular expression, or `#f'
2324 otherwise.
2325
2326 Regular expressions are commonly used to find patterns in one string
2327 and replace them with the contents of another string.
2328
2329 **** Function: regexp-substitute PORT MATCH [ITEM...]
2330 Write to the output port PORT selected contents of the match
2331 structure MATCH. Each ITEM specifies what should be written, and
2332 may be one of the following arguments:
2333
2334 * A string. String arguments are written out verbatim.
2335
2336 * An integer. The submatch with that number is written.
2337
2338 * The symbol `pre'. The portion of the matched string preceding
2339 the regexp match is written.
2340
2341 * The symbol `post'. The portion of the matched string
2342 following the regexp match is written.
2343
2344 PORT may be `#f', in which case nothing is written; instead,
2345 `regexp-substitute' constructs a string from the specified ITEMs
2346 and returns that.
2347
2348 **** Function: regexp-substitute/global PORT REGEXP TARGET [ITEM...]
2349 Similar to `regexp-substitute', but can be used to perform global
2350 substitutions on STR. Instead of taking a match structure as an
2351 argument, `regexp-substitute/global' takes two string arguments: a
2352 REGEXP string describing a regular expression, and a TARGET string
2353 which should be matched against this regular expression.
2354
2355 Each ITEM behaves as in REGEXP-SUBSTITUTE, with the following
2356 exceptions:
2357
2358 * A function may be supplied. When this function is called, it
2359 will be passed one argument: a match structure for a given
2360 regular expression match. It should return a string to be
2361 written out to PORT.
2362
2363 * The `post' symbol causes `regexp-substitute/global' to recurse
2364 on the unmatched portion of STR. This *must* be supplied in
2365 order to perform global search-and-replace on STR; if it is
2366 not present among the ITEMs, then `regexp-substitute/global'
2367 will return after processing a single match.
2368
2369 *** Match Structures
2370
2371 A "match structure" is the object returned by `string-match' and
2372 `regexp-exec'. It describes which portion of a string, if any, matched
2373 the given regular expression. Match structures include: a reference to
2374 the string that was checked for matches; the starting and ending
2375 positions of the regexp match; and, if the regexp included any
2376 parenthesized subexpressions, the starting and ending positions of each
2377 submatch.
2378
2379 In each of the regexp match functions described below, the `match'
2380 argument must be a match structure returned by a previous call to
2381 `string-match' or `regexp-exec'. Most of these functions return some
2382 information about the original target string that was matched against a
2383 regular expression; we will call that string TARGET for easy reference.
2384
2385 **** Function: regexp-match? OBJ
2386 Return `#t' if OBJ is a match structure returned by a previous
2387 call to `regexp-exec', or `#f' otherwise.
2388
2389 **** Function: match:substring MATCH [N]
2390 Return the portion of TARGET matched by subexpression number N.
2391 Submatch 0 (the default) represents the entire regexp match. If
2392 the regular expression as a whole matched, but the subexpression
2393 number N did not match, return `#f'.
2394
2395 **** Function: match:start MATCH [N]
2396 Return the starting position of submatch number N.
2397
2398 **** Function: match:end MATCH [N]
2399 Return the ending position of submatch number N.
2400
2401 **** Function: match:prefix MATCH
2402 Return the unmatched portion of TARGET preceding the regexp match.
2403
2404 **** Function: match:suffix MATCH
2405 Return the unmatched portion of TARGET following the regexp match.
2406
2407 **** Function: match:count MATCH
2408 Return the number of parenthesized subexpressions from MATCH.
2409 Note that the entire regular expression match itself counts as a
2410 subexpression, and failed submatches are included in the count.
2411
2412 **** Function: match:string MATCH
2413 Return the original TARGET string.
2414
2415 *** Backslash Escapes
2416
2417 Sometimes you will want a regexp to match characters like `*' or `$'
2418 exactly. For example, to check whether a particular string represents
2419 a menu entry from an Info node, it would be useful to match it against
2420 a regexp like `^* [^:]*::'. However, this won't work; because the
2421 asterisk is a metacharacter, it won't match the `*' at the beginning of
2422 the string. In this case, we want to make the first asterisk un-magic.
2423
2424 You can do this by preceding the metacharacter with a backslash
2425 character `\'. (This is also called "quoting" the metacharacter, and
2426 is known as a "backslash escape".) When Guile sees a backslash in a
2427 regular expression, it considers the following glyph to be an ordinary
2428 character, no matter what special meaning it would ordinarily have.
2429 Therefore, we can make the above example work by changing the regexp to
2430 `^\* [^:]*::'. The `\*' sequence tells the regular expression engine
2431 to match only a single asterisk in the target string.
2432
2433 Since the backslash is itself a metacharacter, you may force a
2434 regexp to match a backslash in the target string by preceding the
2435 backslash with itself. For example, to find variable references in a
2436 TeX program, you might want to find occurrences of the string `\let\'
2437 followed by any number of alphabetic characters. The regular expression
2438 `\\let\\[A-Za-z]*' would do this: the double backslashes in the regexp
2439 each match a single backslash in the target string.
2440
2441 **** Function: regexp-quote STR
2442 Quote each special character found in STR with a backslash, and
2443 return the resulting string.
2444
2445 *Very important:* Using backslash escapes in Guile source code (as
2446 in Emacs Lisp or C) can be tricky, because the backslash character has
2447 special meaning for the Guile reader. For example, if Guile encounters
2448 the character sequence `\n' in the middle of a string while processing
2449 Scheme code, it replaces those characters with a newline character.
2450 Similarly, the character sequence `\t' is replaced by a horizontal tab.
2451 Several of these "escape sequences" are processed by the Guile reader
2452 before your code is executed. Unrecognized escape sequences are
2453 ignored: if the characters `\*' appear in a string, they will be
2454 translated to the single character `*'.
2455
2456 This translation is obviously undesirable for regular expressions,
2457 since we want to be able to include backslashes in a string in order to
2458 escape regexp metacharacters. Therefore, to make sure that a backslash
2459 is preserved in a string in your Guile program, you must use *two*
2460 consecutive backslashes:
2461
2462 (define Info-menu-entry-pattern (make-regexp "^\\* [^:]*"))
2463
2464 The string in this example is preprocessed by the Guile reader before
2465 any code is executed. The resulting argument to `make-regexp' is the
2466 string `^\* [^:]*', which is what we really want.
2467
2468 This also means that in order to write a regular expression that
2469 matches a single backslash character, the regular expression string in
2470 the source code must include *four* backslashes. Each consecutive pair
2471 of backslashes gets translated by the Guile reader to a single
2472 backslash, and the resulting double-backslash is interpreted by the
2473 regexp engine as matching a single backslash character. Hence:
2474
2475 (define tex-variable-pattern (make-regexp "\\\\let\\\\=[A-Za-z]*"))
2476
2477 The reason for the unwieldiness of this syntax is historical. Both
2478 regular expression pattern matchers and Unix string processing systems
2479 have traditionally used backslashes with the special meanings described
2480 above. The POSIX regular expression specification and ANSI C standard
2481 both require these semantics. Attempting to abandon either convention
2482 would cause other kinds of compatibility problems, possibly more severe
2483 ones. Therefore, without extending the Scheme reader to support
2484 strings with different quoting conventions (an ungainly and confusing
2485 extension when implemented in other languages), we must adhere to this
2486 cumbersome escape syntax.
2487
2488 * Changes to the gh_ interface
2489
2490 * Changes to the scm_ interface
2491
2492 * Changes to system call interfaces:
2493
2494 ** The value returned by `raise' is now unspecified. It throws an exception
2495 if an error occurs.
2496
2497 *** A new procedure `sigaction' can be used to install signal handlers
2498
2499 (sigaction signum [action] [flags])
2500
2501 signum is the signal number, which can be specified using the value
2502 of SIGINT etc.
2503
2504 If action is omitted, sigaction returns a pair: the CAR is the current
2505 signal hander, which will be either an integer with the value SIG_DFL
2506 (default action) or SIG_IGN (ignore), or the Scheme procedure which
2507 handles the signal, or #f if a non-Scheme procedure handles the
2508 signal. The CDR contains the current sigaction flags for the handler.
2509
2510 If action is provided, it is installed as the new handler for signum.
2511 action can be a Scheme procedure taking one argument, or the value of
2512 SIG_DFL (default action) or SIG_IGN (ignore), or #f to restore
2513 whatever signal handler was installed before sigaction was first used.
2514 Flags can optionally be specified for the new handler (SA_RESTART is
2515 always used if the system provides it, so need not be specified.) The
2516 return value is a pair with information about the old handler as
2517 described above.
2518
2519 This interface does not provide access to the "signal blocking"
2520 facility. Maybe this is not needed, since the thread support may
2521 provide solutions to the problem of consistent access to data
2522 structures.
2523
2524 *** A new procedure `flush-all-ports' is equivalent to running
2525 `force-output' on every port open for output.
2526
2527 ** Guile now provides information on how it was built, via the new
2528 global variable, %guile-build-info. This variable records the values
2529 of the standard GNU makefile directory variables as an assocation
2530 list, mapping variable names (symbols) onto directory paths (strings).
2531 For example, to find out where the Guile link libraries were
2532 installed, you can say:
2533
2534 guile -c "(display (assq-ref %guile-build-info 'libdir)) (newline)"
2535
2536
2537 * Changes to the scm_ interface
2538
2539 ** The new function scm_handle_by_message_noexit is just like the
2540 existing scm_handle_by_message function, except that it doesn't call
2541 exit to terminate the process. Instead, it prints a message and just
2542 returns #f. This might be a more appropriate catch-all handler for
2543 new dynamic roots and threads.
2544
2545 \f
2546 Changes in Guile 1.1 (released Friday, May 16 1997):
2547
2548 * Changes to the distribution.
2549
2550 The Guile 1.0 distribution has been split up into several smaller
2551 pieces:
2552 guile-core --- the Guile interpreter itself.
2553 guile-tcltk --- the interface between the Guile interpreter and
2554 Tcl/Tk; Tcl is an interpreter for a stringy language, and Tk
2555 is a toolkit for building graphical user interfaces.
2556 guile-rgx-ctax --- the interface between Guile and the Rx regular
2557 expression matcher, and the translator for the Ctax
2558 programming language. These are packaged together because the
2559 Ctax translator uses Rx to parse Ctax source code.
2560
2561 This NEWS file describes the changes made to guile-core since the 1.0
2562 release.
2563
2564 We no longer distribute the documentation, since it was either out of
2565 date, or incomplete. As soon as we have current documentation, we
2566 will distribute it.
2567
2568
2569
2570 * Changes to the stand-alone interpreter
2571
2572 ** guile now accepts command-line arguments compatible with SCSH, Olin
2573 Shivers' Scheme Shell.
2574
2575 In general, arguments are evaluated from left to right, but there are
2576 exceptions. The following switches stop argument processing, and
2577 stash all remaining command-line arguments as the value returned by
2578 the (command-line) function.
2579 -s SCRIPT load Scheme source code from FILE, and exit
2580 -c EXPR evalute Scheme expression EXPR, and exit
2581 -- stop scanning arguments; run interactively
2582
2583 The switches below are processed as they are encountered.
2584 -l FILE load Scheme source code from FILE
2585 -e FUNCTION after reading script, apply FUNCTION to
2586 command line arguments
2587 -ds do -s script at this point
2588 --emacs enable Emacs protocol (experimental)
2589 -h, --help display this help and exit
2590 -v, --version display version information and exit
2591 \ read arguments from following script lines
2592
2593 So, for example, here is a Guile script named `ekko' (thanks, Olin)
2594 which re-implements the traditional "echo" command:
2595
2596 #!/usr/local/bin/guile -s
2597 !#
2598 (define (main args)
2599 (map (lambda (arg) (display arg) (display " "))
2600 (cdr args))
2601 (newline))
2602
2603 (main (command-line))
2604
2605 Suppose we invoke this script as follows:
2606
2607 ekko a speckled gecko
2608
2609 Through the magic of Unix script processing (triggered by the `#!'
2610 token at the top of the file), /usr/local/bin/guile receives the
2611 following list of command-line arguments:
2612
2613 ("-s" "./ekko" "a" "speckled" "gecko")
2614
2615 Unix inserts the name of the script after the argument specified on
2616 the first line of the file (in this case, "-s"), and then follows that
2617 with the arguments given to the script. Guile loads the script, which
2618 defines the `main' function, and then applies it to the list of
2619 remaining command-line arguments, ("a" "speckled" "gecko").
2620
2621 In Unix, the first line of a script file must take the following form:
2622
2623 #!INTERPRETER ARGUMENT
2624
2625 where INTERPRETER is the absolute filename of the interpreter
2626 executable, and ARGUMENT is a single command-line argument to pass to
2627 the interpreter.
2628
2629 You may only pass one argument to the interpreter, and its length is
2630 limited. These restrictions can be annoying to work around, so Guile
2631 provides a general mechanism (borrowed from, and compatible with,
2632 SCSH) for circumventing them.
2633
2634 If the ARGUMENT in a Guile script is a single backslash character,
2635 `\', Guile will open the script file, parse arguments from its second
2636 and subsequent lines, and replace the `\' with them. So, for example,
2637 here is another implementation of the `ekko' script:
2638
2639 #!/usr/local/bin/guile \
2640 -e main -s
2641 !#
2642 (define (main args)
2643 (for-each (lambda (arg) (display arg) (display " "))
2644 (cdr args))
2645 (newline))
2646
2647 If the user invokes this script as follows:
2648
2649 ekko a speckled gecko
2650
2651 Unix expands this into
2652
2653 /usr/local/bin/guile \ ekko a speckled gecko
2654
2655 When Guile sees the `\' argument, it replaces it with the arguments
2656 read from the second line of the script, producing:
2657
2658 /usr/local/bin/guile -e main -s ekko a speckled gecko
2659
2660 This tells Guile to load the `ekko' script, and apply the function
2661 `main' to the argument list ("a" "speckled" "gecko").
2662
2663 Here is how Guile parses the command-line arguments:
2664 - Each space character terminates an argument. This means that two
2665 spaces in a row introduce an empty-string argument.
2666 - The tab character is not permitted (unless you quote it with the
2667 backslash character, as described below), to avoid confusion.
2668 - The newline character terminates the sequence of arguments, and will
2669 also terminate a final non-empty argument. (However, a newline
2670 following a space will not introduce a final empty-string argument;
2671 it only terminates the argument list.)
2672 - The backslash character is the escape character. It escapes
2673 backslash, space, tab, and newline. The ANSI C escape sequences
2674 like \n and \t are also supported. These produce argument
2675 constituents; the two-character combination \n doesn't act like a
2676 terminating newline. The escape sequence \NNN for exactly three
2677 octal digits reads as the character whose ASCII code is NNN. As
2678 above, characters produced this way are argument constituents.
2679 Backslash followed by other characters is not allowed.
2680
2681 * Changes to the procedure for linking libguile with your programs
2682
2683 ** Guile now builds and installs a shared guile library, if your
2684 system support shared libraries. (It still builds a static library on
2685 all systems.) Guile automatically detects whether your system
2686 supports shared libraries. To prevent Guile from buildisg shared
2687 libraries, pass the `--disable-shared' flag to the configure script.
2688
2689 Guile takes longer to compile when it builds shared libraries, because
2690 it must compile every file twice --- once to produce position-
2691 independent object code, and once to produce normal object code.
2692
2693 ** The libthreads library has been merged into libguile.
2694
2695 To link a program against Guile, you now need only link against
2696 -lguile and -lqt; -lthreads is no longer needed. If you are using
2697 autoconf to generate configuration scripts for your application, the
2698 following lines should suffice to add the appropriate libraries to
2699 your link command:
2700
2701 ### Find quickthreads and libguile.
2702 AC_CHECK_LIB(qt, main)
2703 AC_CHECK_LIB(guile, scm_shell)
2704
2705 * Changes to Scheme functions
2706
2707 ** Guile Scheme's special syntax for keyword objects is now optional,
2708 and disabled by default.
2709
2710 The syntax variation from R4RS made it difficult to port some
2711 interesting packages to Guile. The routines which accepted keyword
2712 arguments (mostly in the module system) have been modified to also
2713 accept symbols whose names begin with `:'.
2714
2715 To change the keyword syntax, you must first import the (ice-9 debug)
2716 module:
2717 (use-modules (ice-9 debug))
2718
2719 Then you can enable the keyword syntax as follows:
2720 (read-set! keywords 'prefix)
2721
2722 To disable keyword syntax, do this:
2723 (read-set! keywords #f)
2724
2725 ** Many more primitive functions accept shared substrings as
2726 arguments. In the past, these functions required normal, mutable
2727 strings as arguments, although they never made use of this
2728 restriction.
2729
2730 ** The uniform array functions now operate on byte vectors. These
2731 functions are `array-fill!', `serial-array-copy!', `array-copy!',
2732 `serial-array-map', `array-map', `array-for-each', and
2733 `array-index-map!'.
2734
2735 ** The new functions `trace' and `untrace' implement simple debugging
2736 support for Scheme functions.
2737
2738 The `trace' function accepts any number of procedures as arguments,
2739 and tells the Guile interpreter to display each procedure's name and
2740 arguments each time the procedure is invoked. When invoked with no
2741 arguments, `trace' returns the list of procedures currently being
2742 traced.
2743
2744 The `untrace' function accepts any number of procedures as arguments,
2745 and tells the Guile interpreter not to trace them any more. When
2746 invoked with no arguments, `untrace' untraces all curretly traced
2747 procedures.
2748
2749 The tracing in Guile has an advantage over most other systems: we
2750 don't create new procedure objects, but mark the procedure objects
2751 themselves. This means that anonymous and internal procedures can be
2752 traced.
2753
2754 ** The function `assert-repl-prompt' has been renamed to
2755 `set-repl-prompt!'. It takes one argument, PROMPT.
2756 - If PROMPT is #f, the Guile read-eval-print loop will not prompt.
2757 - If PROMPT is a string, we use it as a prompt.
2758 - If PROMPT is a procedure accepting no arguments, we call it, and
2759 display the result as a prompt.
2760 - Otherwise, we display "> ".
2761
2762 ** The new function `eval-string' reads Scheme expressions from a
2763 string and evaluates them, returning the value of the last expression
2764 in the string. If the string contains no expressions, it returns an
2765 unspecified value.
2766
2767 ** The new function `thunk?' returns true iff its argument is a
2768 procedure of zero arguments.
2769
2770 ** `defined?' is now a builtin function, instead of syntax. This
2771 means that its argument should be quoted. It returns #t iff its
2772 argument is bound in the current module.
2773
2774 ** The new syntax `use-modules' allows you to add new modules to your
2775 environment without re-typing a complete `define-module' form. It
2776 accepts any number of module names as arguments, and imports their
2777 public bindings into the current module.
2778
2779 ** The new function (module-defined? NAME MODULE) returns true iff
2780 NAME, a symbol, is defined in MODULE, a module object.
2781
2782 ** The new function `builtin-bindings' creates and returns a hash
2783 table containing copies of all the root module's bindings.
2784
2785 ** The new function `builtin-weak-bindings' does the same as
2786 `builtin-bindings', but creates a doubly-weak hash table.
2787
2788 ** The `equal?' function now considers variable objects to be
2789 equivalent if they have the same name and the same value.
2790
2791 ** The new function `command-line' returns the command-line arguments
2792 given to Guile, as a list of strings.
2793
2794 When using guile as a script interpreter, `command-line' returns the
2795 script's arguments; those processed by the interpreter (like `-s' or
2796 `-c') are omitted. (In other words, you get the normal, expected
2797 behavior.) Any application that uses scm_shell to process its
2798 command-line arguments gets this behavior as well.
2799
2800 ** The new function `load-user-init' looks for a file called `.guile'
2801 in the user's home directory, and loads it if it exists. This is
2802 mostly for use by the code generated by scm_compile_shell_switches,
2803 but we thought it might also be useful in other circumstances.
2804
2805 ** The new function `log10' returns the base-10 logarithm of its
2806 argument.
2807
2808 ** Changes to I/O functions
2809
2810 *** The functions `read', `primitive-load', `read-and-eval!', and
2811 `primitive-load-path' no longer take optional arguments controlling
2812 case insensitivity and a `#' parser.
2813
2814 Case sensitivity is now controlled by a read option called
2815 `case-insensitive'. The user can add new `#' syntaxes with the
2816 `read-hash-extend' function (see below).
2817
2818 *** The new function `read-hash-extend' allows the user to change the
2819 syntax of Guile Scheme in a somewhat controlled way.
2820
2821 (read-hash-extend CHAR PROC)
2822 When parsing S-expressions, if we read a `#' character followed by
2823 the character CHAR, use PROC to parse an object from the stream.
2824 If PROC is #f, remove any parsing procedure registered for CHAR.
2825
2826 The reader applies PROC to two arguments: CHAR and an input port.
2827
2828 *** The new functions read-delimited and read-delimited! provide a
2829 general mechanism for doing delimited input on streams.
2830
2831 (read-delimited DELIMS [PORT HANDLE-DELIM])
2832 Read until we encounter one of the characters in DELIMS (a string),
2833 or end-of-file. PORT is the input port to read from; it defaults to
2834 the current input port. The HANDLE-DELIM parameter determines how
2835 the terminating character is handled; it should be one of the
2836 following symbols:
2837
2838 'trim omit delimiter from result
2839 'peek leave delimiter character in input stream
2840 'concat append delimiter character to returned value
2841 'split return a pair: (RESULT . TERMINATOR)
2842
2843 HANDLE-DELIM defaults to 'peek.
2844
2845 (read-delimited! DELIMS BUF [PORT HANDLE-DELIM START END])
2846 A side-effecting variant of `read-delimited'.
2847
2848 The data is written into the string BUF at the indices in the
2849 half-open interval [START, END); the default interval is the whole
2850 string: START = 0 and END = (string-length BUF). The values of
2851 START and END must specify a well-defined interval in BUF, i.e.
2852 0 <= START <= END <= (string-length BUF).
2853
2854 It returns NBYTES, the number of bytes read. If the buffer filled
2855 up without a delimiter character being found, it returns #f. If the
2856 port is at EOF when the read starts, it returns the EOF object.
2857
2858 If an integer is returned (i.e., the read is successfully terminated
2859 by reading a delimiter character), then the HANDLE-DELIM parameter
2860 determines how to handle the terminating character. It is described
2861 above, and defaults to 'peek.
2862
2863 (The descriptions of these functions were borrowed from the SCSH
2864 manual, by Olin Shivers and Brian Carlstrom.)
2865
2866 *** The `%read-delimited!' function is the primitive used to implement
2867 `read-delimited' and `read-delimited!'.
2868
2869 (%read-delimited! DELIMS BUF GOBBLE? [PORT START END])
2870
2871 This returns a pair of values: (TERMINATOR . NUM-READ).
2872 - TERMINATOR describes why the read was terminated. If it is a
2873 character or the eof object, then that is the value that terminated
2874 the read. If it is #f, the function filled the buffer without finding
2875 a delimiting character.
2876 - NUM-READ is the number of characters read into BUF.
2877
2878 If the read is successfully terminated by reading a delimiter
2879 character, then the gobble? parameter determines what to do with the
2880 terminating character. If true, the character is removed from the
2881 input stream; if false, the character is left in the input stream
2882 where a subsequent read operation will retrieve it. In either case,
2883 the character is also the first value returned by the procedure call.
2884
2885 (The descriptions of this function was borrowed from the SCSH manual,
2886 by Olin Shivers and Brian Carlstrom.)
2887
2888 *** The `read-line' and `read-line!' functions have changed; they now
2889 trim the terminator by default; previously they appended it to the
2890 returned string. For the old behavior, use (read-line PORT 'concat).
2891
2892 *** The functions `uniform-array-read!' and `uniform-array-write!' now
2893 take new optional START and END arguments, specifying the region of
2894 the array to read and write.
2895
2896 *** The `ungetc-char-ready?' function has been removed. We feel it's
2897 inappropriate for an interface to expose implementation details this
2898 way.
2899
2900 ** Changes to the Unix library and system call interface
2901
2902 *** The new fcntl function provides access to the Unix `fcntl' system
2903 call.
2904
2905 (fcntl PORT COMMAND VALUE)
2906 Apply COMMAND to PORT's file descriptor, with VALUE as an argument.
2907 Values for COMMAND are:
2908
2909 F_DUPFD duplicate a file descriptor
2910 F_GETFD read the descriptor's close-on-exec flag
2911 F_SETFD set the descriptor's close-on-exec flag to VALUE
2912 F_GETFL read the descriptor's flags, as set on open
2913 F_SETFL set the descriptor's flags, as set on open to VALUE
2914 F_GETOWN return the process ID of a socket's owner, for SIGIO
2915 F_SETOWN set the process that owns a socket to VALUE, for SIGIO
2916 FD_CLOEXEC not sure what this is
2917
2918 For details, see the documentation for the fcntl system call.
2919
2920 *** The arguments to `select' have changed, for compatibility with
2921 SCSH. The TIMEOUT parameter may now be non-integral, yielding the
2922 expected behavior. The MILLISECONDS parameter has been changed to
2923 MICROSECONDS, to more closely resemble the underlying system call.
2924 The RVEC, WVEC, and EVEC arguments can now be vectors; the type of the
2925 corresponding return set will be the same.
2926
2927 *** The arguments to the `mknod' system call have changed. They are
2928 now:
2929
2930 (mknod PATH TYPE PERMS DEV)
2931 Create a new file (`node') in the file system. PATH is the name of
2932 the file to create. TYPE is the kind of file to create; it should
2933 be 'fifo, 'block-special, or 'char-special. PERMS specifies the
2934 permission bits to give the newly created file. If TYPE is
2935 'block-special or 'char-special, DEV specifies which device the
2936 special file refers to; its interpretation depends on the kind of
2937 special file being created.
2938
2939 *** The `fork' function has been renamed to `primitive-fork', to avoid
2940 clashing with various SCSH forks.
2941
2942 *** The `recv' and `recvfrom' functions have been renamed to `recv!'
2943 and `recvfrom!'. They no longer accept a size for a second argument;
2944 you must pass a string to hold the received value. They no longer
2945 return the buffer. Instead, `recv' returns the length of the message
2946 received, and `recvfrom' returns a pair containing the packet's length
2947 and originating address.
2948
2949 *** The file descriptor datatype has been removed, as have the
2950 `read-fd', `write-fd', `close', `lseek', and `dup' functions.
2951 We plan to replace these functions with a SCSH-compatible interface.
2952
2953 *** The `create' function has been removed; it's just a special case
2954 of `open'.
2955
2956 *** There are new functions to break down process termination status
2957 values. In the descriptions below, STATUS is a value returned by
2958 `waitpid'.
2959
2960 (status:exit-val STATUS)
2961 If the child process exited normally, this function returns the exit
2962 code for the child process (i.e., the value passed to exit, or
2963 returned from main). If the child process did not exit normally,
2964 this function returns #f.
2965
2966 (status:stop-sig STATUS)
2967 If the child process was suspended by a signal, this function
2968 returns the signal that suspended the child. Otherwise, it returns
2969 #f.
2970
2971 (status:term-sig STATUS)
2972 If the child process terminated abnormally, this function returns
2973 the signal that terminated the child. Otherwise, this function
2974 returns false.
2975
2976 POSIX promises that exactly one of these functions will return true on
2977 a valid STATUS value.
2978
2979 These functions are compatible with SCSH.
2980
2981 *** There are new accessors and setters for the broken-out time vectors
2982 returned by `localtime', `gmtime', and that ilk. They are:
2983
2984 Component Accessor Setter
2985 ========================= ============ ============
2986 seconds tm:sec set-tm:sec
2987 minutes tm:min set-tm:min
2988 hours tm:hour set-tm:hour
2989 day of the month tm:mday set-tm:mday
2990 month tm:mon set-tm:mon
2991 year tm:year set-tm:year
2992 day of the week tm:wday set-tm:wday
2993 day in the year tm:yday set-tm:yday
2994 daylight saving time tm:isdst set-tm:isdst
2995 GMT offset, seconds tm:gmtoff set-tm:gmtoff
2996 name of time zone tm:zone set-tm:zone
2997
2998 *** There are new accessors for the vectors returned by `uname',
2999 describing the host system:
3000
3001 Component Accessor
3002 ============================================== ================
3003 name of the operating system implementation utsname:sysname
3004 network name of this machine utsname:nodename
3005 release level of the operating system utsname:release
3006 version level of the operating system utsname:version
3007 machine hardware platform utsname:machine
3008
3009 *** There are new accessors for the vectors returned by `getpw',
3010 `getpwnam', `getpwuid', and `getpwent', describing entries from the
3011 system's user database:
3012
3013 Component Accessor
3014 ====================== =================
3015 user name passwd:name
3016 user password passwd:passwd
3017 user id passwd:uid
3018 group id passwd:gid
3019 real name passwd:gecos
3020 home directory passwd:dir
3021 shell program passwd:shell
3022
3023 *** There are new accessors for the vectors returned by `getgr',
3024 `getgrnam', `getgrgid', and `getgrent', describing entries from the
3025 system's group database:
3026
3027 Component Accessor
3028 ======================= ============
3029 group name group:name
3030 group password group:passwd
3031 group id group:gid
3032 group members group:mem
3033
3034 *** There are new accessors for the vectors returned by `gethost',
3035 `gethostbyaddr', `gethostbyname', and `gethostent', describing
3036 internet hosts:
3037
3038 Component Accessor
3039 ========================= ===============
3040 official name of host hostent:name
3041 alias list hostent:aliases
3042 host address type hostent:addrtype
3043 length of address hostent:length
3044 list of addresses hostent:addr-list
3045
3046 *** There are new accessors for the vectors returned by `getnet',
3047 `getnetbyaddr', `getnetbyname', and `getnetent', describing internet
3048 networks:
3049
3050 Component Accessor
3051 ========================= ===============
3052 official name of net netent:name
3053 alias list netent:aliases
3054 net number type netent:addrtype
3055 net number netent:net
3056
3057 *** There are new accessors for the vectors returned by `getproto',
3058 `getprotobyname', `getprotobynumber', and `getprotoent', describing
3059 internet protocols:
3060
3061 Component Accessor
3062 ========================= ===============
3063 official protocol name protoent:name
3064 alias list protoent:aliases
3065 protocol number protoent:proto
3066
3067 *** There are new accessors for the vectors returned by `getserv',
3068 `getservbyname', `getservbyport', and `getservent', describing
3069 internet protocols:
3070
3071 Component Accessor
3072 ========================= ===============
3073 official service name servent:name
3074 alias list servent:aliases
3075 port number servent:port
3076 protocol to use servent:proto
3077
3078 *** There are new accessors for the sockaddr structures returned by
3079 `accept', `getsockname', `getpeername', `recvfrom!':
3080
3081 Component Accessor
3082 ======================================== ===============
3083 address format (`family') sockaddr:fam
3084 path, for file domain addresses sockaddr:path
3085 address, for internet domain addresses sockaddr:addr
3086 TCP or UDP port, for internet sockaddr:port
3087
3088 *** The `getpwent', `getgrent', `gethostent', `getnetent',
3089 `getprotoent', and `getservent' functions now return #f at the end of
3090 the user database. (They used to throw an exception.)
3091
3092 Note that calling MUMBLEent function is equivalent to calling the
3093 corresponding MUMBLE function with no arguments.
3094
3095 *** The `setpwent', `setgrent', `sethostent', `setnetent',
3096 `setprotoent', and `setservent' routines now take no arguments.
3097
3098 *** The `gethost', `getproto', `getnet', and `getserv' functions now
3099 provide more useful information when they throw an exception.
3100
3101 *** The `lnaof' function has been renamed to `inet-lnaof'.
3102
3103 *** Guile now claims to have the `current-time' feature.
3104
3105 *** The `mktime' function now takes an optional second argument ZONE,
3106 giving the time zone to use for the conversion. ZONE should be a
3107 string, in the same format as expected for the "TZ" environment variable.
3108
3109 *** The `strptime' function now returns a pair (TIME . COUNT), where
3110 TIME is the parsed time as a vector, and COUNT is the number of
3111 characters from the string left unparsed. This function used to
3112 return the remaining characters as a string.
3113
3114 *** The `gettimeofday' function has replaced the old `time+ticks' function.
3115 The return value is now (SECONDS . MICROSECONDS); the fractional
3116 component is no longer expressed in "ticks".
3117
3118 *** The `ticks/sec' constant has been removed, in light of the above change.
3119
3120 * Changes to the gh_ interface
3121
3122 ** gh_eval_str() now returns an SCM object which is the result of the
3123 evaluation
3124
3125 ** gh_scm2str() now copies the Scheme data to a caller-provided C
3126 array
3127
3128 ** gh_scm2newstr() now makes a C array, copies the Scheme data to it,
3129 and returns the array
3130
3131 ** gh_scm2str0() is gone: there is no need to distinguish
3132 null-terminated from non-null-terminated, since gh_scm2newstr() allows
3133 the user to interpret the data both ways.
3134
3135 * Changes to the scm_ interface
3136
3137 ** The new function scm_symbol_value0 provides an easy way to get a
3138 symbol's value from C code:
3139
3140 SCM scm_symbol_value0 (char *NAME)
3141 Return the value of the symbol named by the null-terminated string
3142 NAME in the current module. If the symbol named NAME is unbound in
3143 the current module, return SCM_UNDEFINED.
3144
3145 ** The new function scm_sysintern0 creates new top-level variables,
3146 without assigning them a value.
3147
3148 SCM scm_sysintern0 (char *NAME)
3149 Create a new Scheme top-level variable named NAME. NAME is a
3150 null-terminated string. Return the variable's value cell.
3151
3152 ** The function scm_internal_catch is the guts of catch. It handles
3153 all the mechanics of setting up a catch target, invoking the catch
3154 body, and perhaps invoking the handler if the body does a throw.
3155
3156 The function is designed to be usable from C code, but is general
3157 enough to implement all the semantics Guile Scheme expects from throw.
3158
3159 TAG is the catch tag. Typically, this is a symbol, but this function
3160 doesn't actually care about that.
3161
3162 BODY is a pointer to a C function which runs the body of the catch;
3163 this is the code you can throw from. We call it like this:
3164 BODY (BODY_DATA, JMPBUF)
3165 where:
3166 BODY_DATA is just the BODY_DATA argument we received; we pass it
3167 through to BODY as its first argument. The caller can make
3168 BODY_DATA point to anything useful that BODY might need.
3169 JMPBUF is the Scheme jmpbuf object corresponding to this catch,
3170 which we have just created and initialized.
3171
3172 HANDLER is a pointer to a C function to deal with a throw to TAG,
3173 should one occur. We call it like this:
3174 HANDLER (HANDLER_DATA, THROWN_TAG, THROW_ARGS)
3175 where
3176 HANDLER_DATA is the HANDLER_DATA argument we recevied; it's the
3177 same idea as BODY_DATA above.
3178 THROWN_TAG is the tag that the user threw to; usually this is
3179 TAG, but it could be something else if TAG was #t (i.e., a
3180 catch-all), or the user threw to a jmpbuf.
3181 THROW_ARGS is the list of arguments the user passed to the THROW
3182 function.
3183
3184 BODY_DATA is just a pointer we pass through to BODY. HANDLER_DATA
3185 is just a pointer we pass through to HANDLER. We don't actually
3186 use either of those pointers otherwise ourselves. The idea is
3187 that, if our caller wants to communicate something to BODY or
3188 HANDLER, it can pass a pointer to it as MUMBLE_DATA, which BODY and
3189 HANDLER can then use. Think of it as a way to make BODY and
3190 HANDLER closures, not just functions; MUMBLE_DATA points to the
3191 enclosed variables.
3192
3193 Of course, it's up to the caller to make sure that any data a
3194 MUMBLE_DATA needs is protected from GC. A common way to do this is
3195 to make MUMBLE_DATA a pointer to data stored in an automatic
3196 structure variable; since the collector must scan the stack for
3197 references anyway, this assures that any references in MUMBLE_DATA
3198 will be found.
3199
3200 ** The new function scm_internal_lazy_catch is exactly like
3201 scm_internal_catch, except:
3202
3203 - It does not unwind the stack (this is the major difference).
3204 - If handler returns, its value is returned from the throw.
3205 - BODY always receives #f as its JMPBUF argument (since there's no
3206 jmpbuf associated with a lazy catch, because we don't unwind the
3207 stack.)
3208
3209 ** scm_body_thunk is a new body function you can pass to
3210 scm_internal_catch if you want the body to be like Scheme's `catch'
3211 --- a thunk, or a function of one argument if the tag is #f.
3212
3213 BODY_DATA is a pointer to a scm_body_thunk_data structure, which
3214 contains the Scheme procedure to invoke as the body, and the tag
3215 we're catching. If the tag is #f, then we pass JMPBUF (created by
3216 scm_internal_catch) to the body procedure; otherwise, the body gets
3217 no arguments.
3218
3219 ** scm_handle_by_proc is a new handler function you can pass to
3220 scm_internal_catch if you want the handler to act like Scheme's catch
3221 --- call a procedure with the tag and the throw arguments.
3222
3223 If the user does a throw to this catch, this function runs a handler
3224 procedure written in Scheme. HANDLER_DATA is a pointer to an SCM
3225 variable holding the Scheme procedure object to invoke. It ought to
3226 be a pointer to an automatic variable (i.e., one living on the stack),
3227 or the procedure object should be otherwise protected from GC.
3228
3229 ** scm_handle_by_message is a new handler function to use with
3230 `scm_internal_catch' if you want Guile to print a message and die.
3231 It's useful for dealing with throws to uncaught keys at the top level.
3232
3233 HANDLER_DATA, if non-zero, is assumed to be a char * pointing to a
3234 message header to print; if zero, we use "guile" instead. That
3235 text is followed by a colon, then the message described by ARGS.
3236
3237 ** The return type of scm_boot_guile is now void; the function does
3238 not return a value, and indeed, never returns at all.
3239
3240 ** The new function scm_shell makes it easy for user applications to
3241 process command-line arguments in a way that is compatible with the
3242 stand-alone guile interpreter (which is in turn compatible with SCSH,
3243 the Scheme shell).
3244
3245 To use the scm_shell function, first initialize any guile modules
3246 linked into your application, and then call scm_shell with the values
3247 of ARGC and ARGV your `main' function received. scm_shell will add
3248 any SCSH-style meta-arguments from the top of the script file to the
3249 argument vector, and then process the command-line arguments. This
3250 generally means loading a script file or starting up an interactive
3251 command interpreter. For details, see "Changes to the stand-alone
3252 interpreter" above.
3253
3254 ** The new functions scm_get_meta_args and scm_count_argv help you
3255 implement the SCSH-style meta-argument, `\'.
3256
3257 char **scm_get_meta_args (int ARGC, char **ARGV)
3258 If the second element of ARGV is a string consisting of a single
3259 backslash character (i.e. "\\" in Scheme notation), open the file
3260 named by the following argument, parse arguments from it, and return
3261 the spliced command line. The returned array is terminated by a
3262 null pointer.
3263
3264 For details of argument parsing, see above, under "guile now accepts
3265 command-line arguments compatible with SCSH..."
3266
3267 int scm_count_argv (char **ARGV)
3268 Count the arguments in ARGV, assuming it is terminated by a null
3269 pointer.
3270
3271 For an example of how these functions might be used, see the source
3272 code for the function scm_shell in libguile/script.c.
3273
3274 You will usually want to use scm_shell instead of calling this
3275 function yourself.
3276
3277 ** The new function scm_compile_shell_switches turns an array of
3278 command-line arguments into Scheme code to carry out the actions they
3279 describe. Given ARGC and ARGV, it returns a Scheme expression to
3280 evaluate, and calls scm_set_program_arguments to make any remaining
3281 command-line arguments available to the Scheme code. For example,
3282 given the following arguments:
3283
3284 -e main -s ekko a speckled gecko
3285
3286 scm_set_program_arguments will return the following expression:
3287
3288 (begin (load "ekko") (main (command-line)) (quit))
3289
3290 You will usually want to use scm_shell instead of calling this
3291 function yourself.
3292
3293 ** The function scm_shell_usage prints a usage message appropriate for
3294 an interpreter that uses scm_compile_shell_switches to handle its
3295 command-line arguments.
3296
3297 void scm_shell_usage (int FATAL, char *MESSAGE)
3298 Print a usage message to the standard error output. If MESSAGE is
3299 non-zero, write it before the usage message, followed by a newline.
3300 If FATAL is non-zero, exit the process, using FATAL as the
3301 termination status. (If you want to be compatible with Guile,
3302 always use 1 as the exit status when terminating due to command-line
3303 usage problems.)
3304
3305 You will usually want to use scm_shell instead of calling this
3306 function yourself.
3307
3308 ** scm_eval_0str now returns SCM_UNSPECIFIED if the string contains no
3309 expressions. It used to return SCM_EOL. Earth-shattering.
3310
3311 ** The macros for declaring scheme objects in C code have been
3312 rearranged slightly. They are now:
3313
3314 SCM_SYMBOL (C_NAME, SCHEME_NAME)
3315 Declare a static SCM variable named C_NAME, and initialize it to
3316 point to the Scheme symbol whose name is SCHEME_NAME. C_NAME should
3317 be a C identifier, and SCHEME_NAME should be a C string.
3318
3319 SCM_GLOBAL_SYMBOL (C_NAME, SCHEME_NAME)
3320 Just like SCM_SYMBOL, but make C_NAME globally visible.
3321
3322 SCM_VCELL (C_NAME, SCHEME_NAME)
3323 Create a global variable at the Scheme level named SCHEME_NAME.
3324 Declare a static SCM variable named C_NAME, and initialize it to
3325 point to the Scheme variable's value cell.
3326
3327 SCM_GLOBAL_VCELL (C_NAME, SCHEME_NAME)
3328 Just like SCM_VCELL, but make C_NAME globally visible.
3329
3330 The `guile-snarf' script writes initialization code for these macros
3331 to its standard output, given C source code as input.
3332
3333 The SCM_GLOBAL macro is gone.
3334
3335 ** The scm_read_line and scm_read_line_x functions have been replaced
3336 by Scheme code based on the %read-delimited! procedure (known to C
3337 code as scm_read_delimited_x). See its description above for more
3338 information.
3339
3340 ** The function scm_sys_open has been renamed to scm_open. It now
3341 returns a port instead of an FD object.
3342
3343 * The dynamic linking support has changed. For more information, see
3344 libguile/DYNAMIC-LINKING.
3345
3346 \f
3347 Guile 1.0b3
3348
3349 User-visible changes from Thursday, September 5, 1996 until Guile 1.0
3350 (Sun 5 Jan 1997):
3351
3352 * Changes to the 'guile' program:
3353
3354 ** Guile now loads some new files when it starts up. Guile first
3355 searches the load path for init.scm, and loads it if found. Then, if
3356 Guile is not being used to execute a script, and the user's home
3357 directory contains a file named `.guile', Guile loads that.
3358
3359 ** You can now use Guile as a shell script interpreter.
3360
3361 To paraphrase the SCSH manual:
3362
3363 When Unix tries to execute an executable file whose first two
3364 characters are the `#!', it treats the file not as machine code to
3365 be directly executed by the native processor, but as source code
3366 to be executed by some interpreter. The interpreter to use is
3367 specified immediately after the #! sequence on the first line of
3368 the source file. The kernel reads in the name of the interpreter,
3369 and executes that instead. It passes the interpreter the source
3370 filename as its first argument, with the original arguments
3371 following. Consult the Unix man page for the `exec' system call
3372 for more information.
3373
3374 Now you can use Guile as an interpreter, using a mechanism which is a
3375 compatible subset of that provided by SCSH.
3376
3377 Guile now recognizes a '-s' command line switch, whose argument is the
3378 name of a file of Scheme code to load. It also treats the two
3379 characters `#!' as the start of a comment, terminated by `!#'. Thus,
3380 to make a file of Scheme code directly executable by Unix, insert the
3381 following two lines at the top of the file:
3382
3383 #!/usr/local/bin/guile -s
3384 !#
3385
3386 Guile treats the argument of the `-s' command-line switch as the name
3387 of a file of Scheme code to load, and treats the sequence `#!' as the
3388 start of a block comment, terminated by `!#'.
3389
3390 For example, here's a version of 'echo' written in Scheme:
3391
3392 #!/usr/local/bin/guile -s
3393 !#
3394 (let loop ((args (cdr (program-arguments))))
3395 (if (pair? args)
3396 (begin
3397 (display (car args))
3398 (if (pair? (cdr args))
3399 (display " "))
3400 (loop (cdr args)))))
3401 (newline)
3402
3403 Why does `#!' start a block comment terminated by `!#', instead of the
3404 end of the line? That is the notation SCSH uses, and although we
3405 don't yet support the other SCSH features that motivate that choice,
3406 we would like to be backward-compatible with any existing Guile
3407 scripts once we do. Furthermore, if the path to Guile on your system
3408 is too long for your kernel, you can start the script with this
3409 horrible hack:
3410
3411 #!/bin/sh
3412 exec /really/long/path/to/guile -s "$0" ${1+"$@"}
3413 !#
3414
3415 Note that some very old Unix systems don't support the `#!' syntax.
3416
3417
3418 ** You can now run Guile without installing it.
3419
3420 Previous versions of the interactive Guile interpreter (`guile')
3421 couldn't start up unless Guile's Scheme library had been installed;
3422 they used the value of the environment variable `SCHEME_LOAD_PATH'
3423 later on in the startup process, but not to find the startup code
3424 itself. Now Guile uses `SCHEME_LOAD_PATH' in all searches for Scheme
3425 code.
3426
3427 To run Guile without installing it, build it in the normal way, and
3428 then set the environment variable `SCHEME_LOAD_PATH' to a
3429 colon-separated list of directories, including the top-level directory
3430 of the Guile sources. For example, if you unpacked Guile so that the
3431 full filename of this NEWS file is /home/jimb/guile-1.0b3/NEWS, then
3432 you might say
3433
3434 export SCHEME_LOAD_PATH=/home/jimb/my-scheme:/home/jimb/guile-1.0b3
3435
3436
3437 ** Guile's read-eval-print loop no longer prints #<unspecified>
3438 results. If the user wants to see this, she can evaluate the
3439 expression (assert-repl-print-unspecified #t), perhaps in her startup
3440 file.
3441
3442 ** Guile no longer shows backtraces by default when an error occurs;
3443 however, it does display a message saying how to get one, and how to
3444 request that they be displayed by default. After an error, evaluate
3445 (backtrace)
3446 to see a backtrace, and
3447 (debug-enable 'backtrace)
3448 to see them by default.
3449
3450
3451
3452 * Changes to Guile Scheme:
3453
3454 ** Guile now distinguishes between #f and the empty list.
3455
3456 This is for compatibility with the IEEE standard, the (possibly)
3457 upcoming Revised^5 Report on Scheme, and many extant Scheme
3458 implementations.
3459
3460 Guile used to have #f and '() denote the same object, to make Scheme's
3461 type system more compatible with Emacs Lisp's. However, the change
3462 caused too much trouble for Scheme programmers, and we found another
3463 way to reconcile Emacs Lisp with Scheme that didn't require this.
3464
3465
3466 ** Guile's delq, delv, delete functions, and their destructive
3467 counterparts, delq!, delv!, and delete!, now remove all matching
3468 elements from the list, not just the first. This matches the behavior
3469 of the corresponding Emacs Lisp functions, and (I believe) the Maclisp
3470 functions which inspired them.
3471
3472 I recognize that this change may break code in subtle ways, but it
3473 seems best to make the change before the FSF's first Guile release,
3474 rather than after.
3475
3476
3477 ** The compiled-library-path function has been deleted from libguile.
3478
3479 ** The facilities for loading Scheme source files have changed.
3480
3481 *** The variable %load-path now tells Guile which directories to search
3482 for Scheme code. Its value is a list of strings, each of which names
3483 a directory.
3484
3485 *** The variable %load-extensions now tells Guile which extensions to
3486 try appending to a filename when searching the load path. Its value
3487 is a list of strings. Its default value is ("" ".scm").
3488
3489 *** (%search-load-path FILENAME) searches the directories listed in the
3490 value of the %load-path variable for a Scheme file named FILENAME,
3491 with all the extensions listed in %load-extensions. If it finds a
3492 match, then it returns its full filename. If FILENAME is absolute, it
3493 returns it unchanged. Otherwise, it returns #f.
3494
3495 %search-load-path will not return matches that refer to directories.
3496
3497 *** (primitive-load FILENAME :optional CASE-INSENSITIVE-P SHARP)
3498 uses %seach-load-path to find a file named FILENAME, and loads it if
3499 it finds it. If it can't read FILENAME for any reason, it throws an
3500 error.
3501
3502 The arguments CASE-INSENSITIVE-P and SHARP are interpreted as by the
3503 `read' function.
3504
3505 *** load uses the same searching semantics as primitive-load.
3506
3507 *** The functions %try-load, try-load-with-path, %load, load-with-path,
3508 basic-try-load-with-path, basic-load-with-path, try-load-module-with-
3509 path, and load-module-with-path have been deleted. The functions
3510 above should serve their purposes.
3511
3512 *** If the value of the variable %load-hook is a procedure,
3513 `primitive-load' applies its value to the name of the file being
3514 loaded (without the load path directory name prepended). If its value
3515 is #f, it is ignored. Otherwise, an error occurs.
3516
3517 This is mostly useful for printing load notification messages.
3518
3519
3520 ** The function `eval!' is no longer accessible from the scheme level.
3521 We can't allow operations which introduce glocs into the scheme level,
3522 because Guile's type system can't handle these as data. Use `eval' or
3523 `read-and-eval!' (see below) as replacement.
3524
3525 ** The new function read-and-eval! reads an expression from PORT,
3526 evaluates it, and returns the result. This is more efficient than
3527 simply calling `read' and `eval', since it is not necessary to make a
3528 copy of the expression for the evaluator to munge.
3529
3530 Its optional arguments CASE_INSENSITIVE_P and SHARP are interpreted as
3531 for the `read' function.
3532
3533
3534 ** The function `int?' has been removed; its definition was identical
3535 to that of `integer?'.
3536
3537 ** The functions `<?', `<?', `<=?', `=?', `>?', and `>=?'. Code should
3538 use the R4RS names for these functions.
3539
3540 ** The function object-properties no longer returns the hash handle;
3541 it simply returns the object's property list.
3542
3543 ** Many functions have been changed to throw errors, instead of
3544 returning #f on failure. The point of providing exception handling in
3545 the language is to simplify the logic of user code, but this is less
3546 useful if Guile's primitives don't throw exceptions.
3547
3548 ** The function `fileno' has been renamed from `%fileno'.
3549
3550 ** The function primitive-mode->fdes returns #t or #f now, not 1 or 0.
3551
3552
3553 * Changes to Guile's C interface:
3554
3555 ** The library's initialization procedure has been simplified.
3556 scm_boot_guile now has the prototype:
3557
3558 void scm_boot_guile (int ARGC,
3559 char **ARGV,
3560 void (*main_func) (),
3561 void *closure);
3562
3563 scm_boot_guile calls MAIN_FUNC, passing it CLOSURE, ARGC, and ARGV.
3564 MAIN_FUNC should do all the work of the program (initializing other
3565 packages, reading user input, etc.) before returning. When MAIN_FUNC
3566 returns, call exit (0); this function never returns. If you want some
3567 other exit value, MAIN_FUNC may call exit itself.
3568
3569 scm_boot_guile arranges for program-arguments to return the strings
3570 given by ARGC and ARGV. If MAIN_FUNC modifies ARGC/ARGV, should call
3571 scm_set_program_arguments with the final list, so Scheme code will
3572 know which arguments have been processed.
3573
3574 scm_boot_guile establishes a catch-all catch handler which prints an
3575 error message and exits the process. This means that Guile exits in a
3576 coherent way when system errors occur and the user isn't prepared to
3577 handle it. If the user doesn't like this behavior, they can establish
3578 their own universal catcher in MAIN_FUNC to shadow this one.
3579
3580 Why must the caller do all the real work from MAIN_FUNC? The garbage
3581 collector assumes that all local variables of type SCM will be above
3582 scm_boot_guile's stack frame on the stack. If you try to manipulate
3583 SCM values after this function returns, it's the luck of the draw
3584 whether the GC will be able to find the objects you allocate. So,
3585 scm_boot_guile function exits, rather than returning, to discourage
3586 people from making that mistake.
3587
3588 The IN, OUT, and ERR arguments were removed; there are other
3589 convenient ways to override these when desired.
3590
3591 The RESULT argument was deleted; this function should never return.
3592
3593 The BOOT_CMD argument was deleted; the MAIN_FUNC argument is more
3594 general.
3595
3596
3597 ** Guile's header files should no longer conflict with your system's
3598 header files.
3599
3600 In order to compile code which #included <libguile.h>, previous
3601 versions of Guile required you to add a directory containing all the
3602 Guile header files to your #include path. This was a problem, since
3603 Guile's header files have names which conflict with many systems'
3604 header files.
3605
3606 Now only <libguile.h> need appear in your #include path; you must
3607 refer to all Guile's other header files as <libguile/mumble.h>.
3608 Guile's installation procedure puts libguile.h in $(includedir), and
3609 the rest in $(includedir)/libguile.
3610
3611
3612 ** Two new C functions, scm_protect_object and scm_unprotect_object,
3613 have been added to the Guile library.
3614
3615 scm_protect_object (OBJ) protects OBJ from the garbage collector.
3616 OBJ will not be freed, even if all other references are dropped,
3617 until someone does scm_unprotect_object (OBJ). Both functions
3618 return OBJ.
3619
3620 Note that calls to scm_protect_object do not nest. You can call
3621 scm_protect_object any number of times on a given object, and the
3622 next call to scm_unprotect_object will unprotect it completely.
3623
3624 Basically, scm_protect_object and scm_unprotect_object just
3625 maintain a list of references to things. Since the GC knows about
3626 this list, all objects it mentions stay alive. scm_protect_object
3627 adds its argument to the list; scm_unprotect_object remove its
3628 argument from the list.
3629
3630
3631 ** scm_eval_0str now returns the value of the last expression
3632 evaluated.
3633
3634 ** The new function scm_read_0str reads an s-expression from a
3635 null-terminated string, and returns it.
3636
3637 ** The new function `scm_stdio_to_port' converts a STDIO file pointer
3638 to a Scheme port object.
3639
3640 ** The new function `scm_set_program_arguments' allows C code to set
3641 the value returned by the Scheme `program-arguments' function.
3642
3643 \f
3644 Older changes:
3645
3646 * Guile no longer includes sophisticated Tcl/Tk support.
3647
3648 The old Tcl/Tk support was unsatisfying to us, because it required the
3649 user to link against the Tcl library, as well as Tk and Guile. The
3650 interface was also un-lispy, in that it preserved Tcl/Tk's practice of
3651 referring to widgets by names, rather than exporting widgets to Scheme
3652 code as a special datatype.
3653
3654 In the Usenix Tk Developer's Workshop held in July 1996, the Tcl/Tk
3655 maintainers described some very interesting changes in progress to the
3656 Tcl/Tk internals, which would facilitate clean interfaces between lone
3657 Tk and other interpreters --- even for garbage-collected languages
3658 like Scheme. They expected the new Tk to be publicly available in the
3659 fall of 1996.
3660
3661 Since it seems that Guile might soon have a new, cleaner interface to
3662 lone Tk, and that the old Guile/Tk glue code would probably need to be
3663 completely rewritten, we (Jim Blandy and Richard Stallman) have
3664 decided not to support the old code. We'll spend the time instead on
3665 a good interface to the newer Tk, as soon as it is available.
3666
3667 Until then, gtcltk-lib provides trivial, low-maintenance functionality.
3668
3669 \f
3670 Copyright information:
3671
3672 Copyright (C) 1996,1997 Free Software Foundation, Inc.
3673
3674 Permission is granted to anyone to make or distribute verbatim copies
3675 of this document as received, in any medium, provided that the
3676 copyright notice and this permission notice are preserved,
3677 thus giving the recipient permission to redistribute in turn.
3678
3679 Permission is granted to distribute modified versions
3680 of this document, or of portions of it,
3681 under the above conditions, provided also that they
3682 carry prominent notices stating who last changed them.
3683
3684 \f
3685 Local variables:
3686 mode: outline
3687 paragraph-separate: "[ \f]*$"
3688 end:
3689