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