*** empty log message ***
[bpt/guile.git] / NEWS
CommitLineData
f7b47737 1Guile NEWS --- history of user-visible changes. -*- text -*-
d23bbf3e 2Copyright (C) 1996, 1997, 1998 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
f3227c7a
JB
7Changes since Guile 1.3:
8
e4eae9b1
MD
9* Changes to the stand-alone interpreter
10
b3a941b9
MD
11** New options interface: readline-options,
12readline-enable, readline-disable, readline-set!
13
e4eae9b1
MD
14** Command line history is now restored from and saved to file
15
b3a941b9
MD
16If readline is used and the readline option `history-file' is enabled,
17the command line history is read from file when the interpreter is
e4eae9b1
MD
18entered, and written to file on exit. The filename used can be
19specified with the environment variable GUILE_HISTORY. Default file
20name is "$HOME/.guile_history". Nothing special happens if errors
21occur during read or write.
22
23** Command line history length can now be customized.
b3a941b9 24Command line history length is now controlled by the readline option
e4eae9b1
MD
25`history-length'. Default is 200 lines.
26
67ad463a
MD
27** All builtins now print as primitives.
28Previously builtin procedures not belonging to the fundamental subr
29types printed as #<compiled closure #<primitive-procedure gsubr-apply>>.
30Now, they print as #<primitive-procedure NAME>.
31
32** Backtraces slightly more intelligible.
33gsubr-apply and macro transformer application frames no longer appear
34in backtraces.
35
69c6acbb
JB
36* Changes to Scheme functions and syntax
37
ed8c8636
MD
38** New function: sorted? SEQUENCE LESS?
39Returns `#t' when the sequence argument is in non-decreasing order
40according to LESS? (that is, there is no adjacent pair `... x y
41...' for which `(less? y x)').
42
43Returns `#f' when the sequence contains at least one out-of-order
44pair. It is an error if the sequence is neither a list nor a
45vector.
46
47** New function: merge LIST1 LIST2 LESS?
48LIST1 and LIST2 are sorted lists.
49Returns the sorted list of all elements in LIST1 and LIST2.
50
51Assume that the elements a and b1 in LIST1 and b2 in LIST2 are "equal"
52in the sense that (LESS? x y) --> #f for x, y in {a, b1, b2},
53and that a < b1 in LIST1. Then a < b1 < b2 in the result.
54(Here "<" should read "comes before".)
55
56** New procedure: merge! LIST1 LIST2 LESS?
57Merges two lists, re-using the pairs of LIST1 and LIST2 to build
58the result. If the code is compiled, and LESS? constructs no new
59pairs, no pairs at all will be allocated. The first pair of the
60result will be either the first pair of LIST1 or the first pair of
61LIST2.
62
63** New function: sort SEQUENCE LESS?
64Accepts either a list or a vector, and returns a new sequence
65which is sorted. The new sequence is the same type as the input.
66Always `(sorted? (sort sequence less?) less?)'. The original
67sequence is not altered in any way. The new sequence shares its
68elements with the old one; no elements are copied.
69
70** New procedure: sort! SEQUENCE LESS
71Returns its sorted result in the original boxes. No new storage is
72allocated at all. Proper usage: (set! slist (sort! slist <))
73
74** New function: stable-sort SEQUENCE LESS?
75Similar to `sort' but stable. That is, if "equal" elements are
76ordered a < b in the original sequence, they will have the same order
77in the result.
78
79** New function: stable-sort! SEQUENCE LESS?
80Similar to `sort!' but stable.
81Uses temporary storage when sorting vectors.
82
83** New functions: sort-list, sort-list!
84Added for compatibility with scsh.
85
3e8370c3
MD
86** New function: random N [STATE]
87Accepts a positive integer or real N and returns a number of the
88same type between zero (inclusive) and N (exclusive). The values
89returned have a uniform distribution.
90
91The optional argument STATE must be of the type produced by
92`(make-random-state)'. It defaults to the value of the variable
93`*random-state*'. This object is used to maintain the state of the
94pseudo-random-number generator and is altered as a side effect of
95the `random' operation.
96
97** New variable: *random-state*
98Holds a data structure that encodes the internal state of the
99random-number generator that `random' uses by default. The nature
100of this data structure is implementation-dependent. It may be
101printed out and successfully read back in, but may or may not
102function correctly as a random-number state object in another
103implementation.
104
105** New function: make-random-state [STATE|SEED]
106Returns a new object of type suitable for use as the value of the
107variable `*random-state*' and as a second argument to `random'.
108If argument STATE is given, a copy of it is returned. Otherwise a
109copy of `*random-state*' is returned.
110If SEED is given (a string or an integer), a new state is
111generated and initialized using SEED.
112
113** New function: random:uniform [STATE]
114Returns an uniformly distributed inexact real random number in the
115range between 0 and 1.
116
117** New procedure: random:solid-sphere! VECT [STATE]
118Fills VECT with inexact real random numbers the sum of whose
119squares is less than 1.0. Thinking of VECT as coordinates in
120space of dimension N = `(vector-length VECT)', the coordinates are
121uniformly distributed within the unit N-shere. The sum of the
122squares of the numbers is returned. VECT can be either a vector
123or a uniform vector of doubles.
124
125** New procedure: random:hollow-sphere! VECT [STATE]
126Fills VECT with inexact real random numbers the sum of whose squares
127is equal to 1.0. Thinking of VECT as coordinates in space of
128dimension n = `(vector-length VECT)', the coordinates are uniformly
129distributed over the surface of the unit n-shere. VECT can be either
130a vector or a uniform vector of doubles.
131
132** New function: random:normal [STATE]
133Returns an inexact real in a normal distribution with mean 0 and
134standard deviation 1. For a normal distribution with mean M and
135standard deviation D use `(+ M (* D (random:normal)))'.
136
137** New procedure: random:normal-vector! VECT [STATE]
138Fills VECT with inexact real random numbers which are independent and
139standard normally distributed (i.e., with mean 0 and variance 1).
140VECT can be either a vector or a uniform vector of doubles.
141
142** New function: random:exp STATE
143Returns an inexact real in an exponential distribution with mean 1.
144For an exponential distribution with mean U use (* U (random:exp)).
145
69c6acbb
JB
146** The range of logand, logior, logxor, logtest, and logbit? have changed.
147
148These functions now operate on numbers in the range of a C unsigned
149long.
150
151These functions used to operate on numbers in the range of a C signed
152long; however, this seems inappropriate, because Guile integers don't
153overflow.
154
ba4ee0d6
MD
155** New function: make-guardian
156This is an implementation of guardians as described in
157R. Kent Dybvig, Carl Bruggeman, and David Eby (1993) "Guardians in a
158Generation-Based Garbage Collector" ACM SIGPLAN Conference on
159Programming Language Design and Implementation, June 1993
160ftp://ftp.cs.indiana.edu/pub/scheme-repository/doc/pubs/guardians.ps.gz
161
88ceea5c
MD
162** New functions: delq1!, delv1!, delete1!
163These procedures behave similar to delq! and friends but delete only
164one object if at all.
165
55254a6a
MD
166** New function: unread-string STRING PORT
167Unread STRING to PORT, that is, push it back onto the port so that
168next read operation will work on the pushed back characters.
169
170** unread-char can now be called multiple times
171If unread-char is called multiple times, the unread characters will be
172read again in last-in first-out order.
173
67ad463a 174** New function: map-in-order PROC LIST1 LIST2 ...
d41b3904
MD
175Version of `map' which guarantees that the procedure is applied to the
176lists in serial order.
177
67ad463a
MD
178** Renamed `serial-array-copy!' and `serial-array-map!' to
179`array-copy-in-order!' and `array-map-in-order!'. The old names are
180now obsolete and will go away in release 1.5.
181
cf7132b3 182** New syntax: collect BODY1 ...
d41b3904
MD
183Version of `begin' which returns a list of the results of the body
184forms instead of the result of the last body form. In contrast to
cf7132b3 185`begin', `collect' allows an empty body.
d41b3904 186
e4eae9b1
MD
187** New functions: read-history FILENAME, write-history FILENAME
188Read/write command line history from/to file. Returns #t on success
189and #f if an error occured.
190
3ffc7a36
MD
191* Changes to the gh_ interface
192
193** gh_scm2doubles
194
195Now takes a second argument which is the result array. If this
196pointer is NULL, a new array is malloced (the old behaviour).
197
198** gh_chars2byvect, gh_shorts2svect, gh_floats2fvect, gh_scm2chars,
199 gh_scm2shorts, gh_scm2longs, gh_scm2floats
200
201New functions.
202
3e8370c3
MD
203* Changes to the scm_ interface
204
205** Plug in interface for random number generators
206The variable `scm_the_rng' in random.c contains a value and three
207function pointers which together define the current random number
208generator being used by the Scheme level interface and the random
209number library functions.
210
211The user is free to replace the default generator with the generator
212of his own choice.
213
214*** Variable: size_t scm_the_rng.rstate_size
215The size of the random state type used by the current RNG
216measured in chars.
217
218*** Function: unsigned long scm_the_rng.random_bits (scm_rstate *STATE)
219Given the random STATE, return 32 random bits.
220
221*** Function: void scm_the_rng.init_rstate (scm_rstate *STATE, chars *S, int N)
222Seed random state STATE using string S of length N.
223
224*** Function: scm_rstate *scm_the_rng.copy_rstate (scm_rstate *STATE)
225Given random state STATE, return a malloced copy.
226
227** Default RNG
228The default RNG is the MWC (Multiply With Carry) random number
229generator described by George Marsaglia at the Department of
230Statistics and Supercomputer Computations Research Institute, The
231Florida State University (http://stat.fsu.edu/~geo).
232
233It uses 64 bits, has a period of 4578426017172946943 (4.6e18), and
234passes all tests in the DIEHARD test suite
235(http://stat.fsu.edu/~geo/diehard.html). The generation of 32 bits
236costs one multiply and one add on platforms which either supports long
237longs (gcc does this on most systems) or have 64 bit longs. The cost
238is four multiply on other systems but this can be optimized by writing
239scm_i_uniform32 in assembler.
240
241These functions are provided through the scm_the_rng interface for use
242by libguile and the application.
243
244*** Function: unsigned long scm_i_uniform32 (scm_i_rstate *STATE)
245Given the random STATE, return 32 random bits.
246Don't use this function directly. Instead go through the plugin
247interface (see "Plug in interface" above).
248
249*** Function: void scm_i_init_rstate (scm_i_rstate *STATE, char *SEED, int N)
250Initialize STATE using SEED of length N.
251
252*** Function: scm_i_rstate *scm_i_copy_rstate (scm_i_rstate *STATE)
253Return a malloc:ed copy of STATE. This function can easily be re-used
254in the interfaces to other RNGs.
255
256** Random number library functions
257These functions use the current RNG through the scm_the_rng interface.
258It might be a good idea to use these functions from your C code so
259that only one random generator is used by all code in your program.
260
261You can get the default random state using:
262
263*** Variable: SCM scm_var_random_state
264Contains the vcell of the Scheme variable "*random-state*" which is
265used as default state by all random number functions in the Scheme
266level interface.
267
268Example:
269
270 double x = scm_i_uniform01 (SCM_RSTATE (SCM_CDR (scm_var_random_state)));
271
272*** Function: double scm_i_uniform01 (scm_rstate *STATE)
273Return a sample from the uniform(0,1) distribution.
274
275*** Function: double scm_i_normal01 (scm_rstate *STATE)
276Return a sample from the normal(0,1) distribution.
277
278*** Function: double scm_i_exp1 (scm_rstate *STATE)
279Return a sample from the exp(1) distribution.
280
281*** Function: unsigned long scm_i_random (unsigned long M, scm_rstate *STATE)
282Return a sample from the discrete uniform(0,M) distribution.
283
f3227c7a 284\f
d23bbf3e 285Changes in Guile 1.3 (released Monday, October 19, 1998):
c484bf7f
JB
286
287* Changes to the distribution
288
e2d6569c
JB
289** We renamed the SCHEME_LOAD_PATH environment variable to GUILE_LOAD_PATH.
290To avoid conflicts, programs should name environment variables after
291themselves, except when there's a common practice establishing some
292other convention.
293
294For now, Guile supports both GUILE_LOAD_PATH and SCHEME_LOAD_PATH,
295giving the former precedence, and printing a warning message if the
296latter is set. Guile 1.4 will not recognize SCHEME_LOAD_PATH at all.
297
298** The header files related to multi-byte characters have been removed.
299They were: libguile/extchrs.h and libguile/mbstrings.h. Any C code
300which referred to these explicitly will probably need to be rewritten,
301since the support for the variant string types has been removed; see
302below.
303
304** The header files append.h and sequences.h have been removed. These
305files implemented non-R4RS operations which would encourage
306non-portable programming style and less easy-to-read code.
3a97e020 307
c484bf7f
JB
308* Changes to the stand-alone interpreter
309
2e368582 310** New procedures have been added to implement a "batch mode":
ec4ab4fd 311
2e368582 312*** Function: batch-mode?
ec4ab4fd
GH
313
314 Returns a boolean indicating whether the interpreter is in batch
315 mode.
316
2e368582 317*** Function: set-batch-mode?! ARG
ec4ab4fd
GH
318
319 If ARG is true, switches the interpreter to batch mode. The `#f'
320 case has not been implemented.
321
2e368582
JB
322** Guile now provides full command-line editing, when run interactively.
323To use this feature, you must have the readline library installed.
324The Guile build process will notice it, and automatically include
325support for it.
326
327The readline library is available via anonymous FTP from any GNU
328mirror site; the canonical location is "ftp://prep.ai.mit.edu/pub/gnu".
329
a5d6d578
MD
330** the-last-stack is now a fluid.
331
c484bf7f
JB
332* Changes to the procedure for linking libguile with your programs
333
71f20534 334** You can now use the `guile-config' utility to build programs that use Guile.
2e368582 335
2adfe1c0 336Guile now includes a command-line utility called `guile-config', which
71f20534
JB
337can provide information about how to compile and link programs that
338use Guile.
339
340*** `guile-config compile' prints any C compiler flags needed to use Guile.
341You should include this command's output on the command line you use
342to compile C or C++ code that #includes the Guile header files. It's
343usually just a `-I' flag to help the compiler find the Guile headers.
344
345
346*** `guile-config link' prints any linker flags necessary to link with Guile.
8aa5c148 347
71f20534 348This command writes to its standard output a list of flags which you
8aa5c148
JB
349must pass to the linker to link your code against the Guile library.
350The flags include '-lguile' itself, any other libraries the Guile
351library depends upon, and any `-L' flags needed to help the linker
352find those libraries.
2e368582
JB
353
354For example, here is a Makefile rule that builds a program named 'foo'
355from the object files ${FOO_OBJECTS}, and links them against Guile:
356
357 foo: ${FOO_OBJECTS}
2adfe1c0 358 ${CC} ${CFLAGS} ${FOO_OBJECTS} `guile-config link` -o foo
2e368582 359
e2d6569c
JB
360Previous Guile releases recommended that you use autoconf to detect
361which of a predefined set of libraries were present on your system.
2adfe1c0 362It is more robust to use `guile-config', since it records exactly which
e2d6569c
JB
363libraries the installed Guile library requires.
364
2adfe1c0
JB
365This was originally called `build-guile', but was renamed to
366`guile-config' before Guile 1.3 was released, to be consistent with
367the analogous script for the GTK+ GUI toolkit, which is called
368`gtk-config'.
369
2e368582 370
8aa5c148
JB
371** Use the GUILE_FLAGS macro in your configure.in file to find Guile.
372
373If you are using the GNU autoconf package to configure your program,
374you can use the GUILE_FLAGS autoconf macro to call `guile-config'
375(described above) and gather the necessary values for use in your
376Makefiles.
377
378The GUILE_FLAGS macro expands to configure script code which runs the
379`guile-config' script, to find out where Guile's header files and
380libraries are installed. It sets two variables, marked for
381substitution, as by AC_SUBST.
382
383 GUILE_CFLAGS --- flags to pass to a C or C++ compiler to build
384 code that uses Guile header files. This is almost always just a
385 -I flag.
386
387 GUILE_LDFLAGS --- flags to pass to the linker to link a
388 program against Guile. This includes `-lguile' for the Guile
389 library itself, any libraries that Guile itself requires (like
390 -lqthreads), and so on. It may also include a -L flag to tell the
391 compiler where to find the libraries.
392
393GUILE_FLAGS is defined in the file guile.m4, in the top-level
394directory of the Guile distribution. You can copy it into your
395package's aclocal.m4 file, and then use it in your configure.in file.
396
397If you are using the `aclocal' program, distributed with GNU automake,
398to maintain your aclocal.m4 file, the Guile installation process
399installs guile.m4 where aclocal will find it. All you need to do is
400use GUILE_FLAGS in your configure.in file, and then run `aclocal';
401this will copy the definition of GUILE_FLAGS into your aclocal.m4
402file.
403
404
c484bf7f 405* Changes to Scheme functions and syntax
7ad3c1e7 406
02755d59 407** Multi-byte strings have been removed, as have multi-byte and wide
e2d6569c
JB
408ports. We felt that these were the wrong approach to
409internationalization support.
02755d59 410
2e368582
JB
411** New function: readline [PROMPT]
412Read a line from the terminal, and allow the user to edit it,
413prompting with PROMPT. READLINE provides a large set of Emacs-like
414editing commands, lets the user recall previously typed lines, and
415works on almost every kind of terminal, including dumb terminals.
416
417READLINE assumes that the cursor is at the beginning of the line when
418it is invoked. Thus, you can't print a prompt yourself, and then call
419READLINE; you need to package up your prompt as a string, pass it to
420the function, and let READLINE print the prompt itself. This is
421because READLINE needs to know the prompt's screen width.
422
8cd57bd0
JB
423For Guile to provide this function, you must have the readline
424library, version 2.1 or later, installed on your system. Readline is
425available via anonymous FTP from prep.ai.mit.edu in pub/gnu, or from
426any GNU mirror site.
2e368582
JB
427
428See also ADD-HISTORY function.
429
430** New function: add-history STRING
431Add STRING as the most recent line in the history used by the READLINE
432command. READLINE does not add lines to the history itself; you must
433call ADD-HISTORY to make previous input available to the user.
434
8cd57bd0
JB
435** The behavior of the read-line function has changed.
436
437This function now uses standard C library functions to read the line,
438for speed. This means that it doesn not respect the value of
439scm-line-incrementors; it assumes that lines are delimited with
440#\newline.
441
442(Note that this is read-line, the function that reads a line of text
443from a port, not readline, the function that reads a line from a
444terminal, providing full editing capabilities.)
445
1a0106ef
JB
446** New module (ice-9 getopt-gnu-style): Parse command-line arguments.
447
448This module provides some simple argument parsing. It exports one
449function:
450
451Function: getopt-gnu-style ARG-LS
452 Parse a list of program arguments into an alist of option
453 descriptions.
454
455 Each item in the list of program arguments is examined to see if
456 it meets the syntax of a GNU long-named option. An argument like
457 `--MUMBLE' produces an element of the form (MUMBLE . #t) in the
458 returned alist, where MUMBLE is a keyword object with the same
459 name as the argument. An argument like `--MUMBLE=FROB' produces
460 an element of the form (MUMBLE . FROB), where FROB is a string.
461
462 As a special case, the returned alist also contains a pair whose
463 car is the symbol `rest'. The cdr of this pair is a list
464 containing all the items in the argument list that are not options
465 of the form mentioned above.
466
467 The argument `--' is treated specially: all items in the argument
468 list appearing after such an argument are not examined, and are
469 returned in the special `rest' list.
470
471 This function does not parse normal single-character switches.
472 You will need to parse them out of the `rest' list yourself.
473
8cd57bd0
JB
474** The read syntax for byte vectors and short vectors has changed.
475
476Instead of #bytes(...), write #y(...).
477
478Instead of #short(...), write #h(...).
479
480This may seem nutty, but, like the other uniform vectors, byte vectors
481and short vectors want to have the same print and read syntax (and,
482more basic, want to have read syntax!). Changing the read syntax to
483use multiple characters after the hash sign breaks with the
484conventions used in R5RS and the conventions used for the other
485uniform vectors. It also introduces complexity in the current reader,
486both on the C and Scheme levels. (The Right solution is probably to
487change the syntax and prototypes for uniform vectors entirely.)
488
489
490** The new module (ice-9 session) provides useful interactive functions.
491
492*** New procedure: (apropos REGEXP OPTION ...)
493
494Display a list of top-level variables whose names match REGEXP, and
495the modules they are imported from. Each OPTION should be one of the
496following symbols:
497
498 value --- Show the value of each matching variable.
499 shadow --- Show bindings shadowed by subsequently imported modules.
500 full --- Same as both `shadow' and `value'.
501
502For example:
503
504 guile> (apropos "trace" 'full)
505 debug: trace #<procedure trace args>
506 debug: untrace #<procedure untrace args>
507 the-scm-module: display-backtrace #<compiled-closure #<primitive-procedure gsubr-apply>>
508 the-scm-module: before-backtrace-hook ()
509 the-scm-module: backtrace #<primitive-procedure backtrace>
510 the-scm-module: after-backtrace-hook ()
511 the-scm-module: has-shown-backtrace-hint? #f
512 guile>
513
514** There are new functions and syntax for working with macros.
515
516Guile implements macros as a special object type. Any variable whose
517top-level binding is a macro object acts as a macro. The macro object
518specifies how the expression should be transformed before evaluation.
519
520*** Macro objects now print in a reasonable way, resembling procedures.
521
522*** New function: (macro? OBJ)
523True iff OBJ is a macro object.
524
525*** New function: (primitive-macro? OBJ)
526Like (macro? OBJ), but true only if OBJ is one of the Guile primitive
527macro transformers, implemented in eval.c rather than Scheme code.
528
dbdd0c16
JB
529Why do we have this function?
530- For symmetry with procedure? and primitive-procedure?,
531- to allow custom print procedures to tell whether a macro is
532 primitive, and display it differently, and
533- to allow compilers and user-written evaluators to distinguish
534 builtin special forms from user-defined ones, which could be
535 compiled.
536
8cd57bd0
JB
537*** New function: (macro-type OBJ)
538Return a value indicating what kind of macro OBJ is. Possible return
539values are:
540
541 The symbol `syntax' --- a macro created by procedure->syntax.
542 The symbol `macro' --- a macro created by procedure->macro.
543 The symbol `macro!' --- a macro created by procedure->memoizing-macro.
544 The boolean #f --- if OBJ is not a macro object.
545
546*** New function: (macro-name MACRO)
547Return the name of the macro object MACRO's procedure, as returned by
548procedure-name.
549
550*** New function: (macro-transformer MACRO)
551Return the transformer procedure for MACRO.
552
553*** New syntax: (use-syntax MODULE ... TRANSFORMER)
554
555Specify a new macro expander to use in the current module. Each
556MODULE is a module name, with the same meaning as in the `use-modules'
557form; each named module's exported bindings are added to the current
558top-level environment. TRANSFORMER is an expression evaluated in the
559resulting environment which must yield a procedure to use as the
560module's eval transformer: every expression evaluated in this module
561is passed to this function, and the result passed to the Guile
562interpreter.
563
564*** macro-eval! is removed. Use local-eval instead.
29521173 565
8d9dcb3c
MV
566** Some magic has been added to the printer to better handle user
567written printing routines (like record printers, closure printers).
568
569The problem is that these user written routines must have access to
7fbd77df 570the current `print-state' to be able to handle fancy things like
8d9dcb3c
MV
571detection of circular references. These print-states have to be
572passed to the builtin printing routines (display, write, etc) to
573properly continue the print chain.
574
575We didn't want to change all existing print code so that it
8cd57bd0 576explicitly passes thru a print state in addition to a port. Instead,
8d9dcb3c
MV
577we extented the possible values that the builtin printing routines
578accept as a `port'. In addition to a normal port, they now also take
579a pair of a normal port and a print-state. Printing will go to the
580port and the print-state will be used to control the detection of
581circular references, etc. If the builtin function does not care for a
582print-state, it is simply ignored.
583
584User written callbacks are now called with such a pair as their
585`port', but because every function now accepts this pair as a PORT
586argument, you don't have to worry about that. In fact, it is probably
587safest to not check for these pairs.
588
589However, it is sometimes necessary to continue a print chain on a
590different port, for example to get a intermediate string
591representation of the printed value, mangle that string somehow, and
592then to finally print the mangled string. Use the new function
593
594 inherit-print-state OLD-PORT NEW-PORT
595
596for this. It constructs a new `port' that prints to NEW-PORT but
597inherits the print-state of OLD-PORT.
598
ef1ea498
MD
599** struct-vtable-offset renamed to vtable-offset-user
600
601** New constants: vtable-index-layout, vtable-index-vtable, vtable-index-printer
602
603** There is now a fourth (optional) argument to make-vtable-vtable and
604 make-struct when constructing new types (vtables). This argument
605 initializes field vtable-index-printer of the vtable.
606
4851dc57
MV
607** The detection of circular references has been extended to structs.
608That is, a structure that -- in the process of being printed -- prints
609itself does not lead to infinite recursion.
610
611** There is now some basic support for fluids. Please read
612"libguile/fluid.h" to find out more. It is accessible from Scheme with
613the following functions and macros:
614
9c3fb66f
MV
615Function: make-fluid
616
617 Create a new fluid object. Fluids are not special variables or
618 some other extension to the semantics of Scheme, but rather
619 ordinary Scheme objects. You can store them into variables (that
620 are still lexically scoped, of course) or into any other place you
621 like. Every fluid has a initial value of `#f'.
04c76b58 622
9c3fb66f 623Function: fluid? OBJ
04c76b58 624
9c3fb66f 625 Test whether OBJ is a fluid.
04c76b58 626
9c3fb66f
MV
627Function: fluid-ref FLUID
628Function: fluid-set! FLUID VAL
04c76b58
MV
629
630 Access/modify the fluid FLUID. Modifications are only visible
631 within the current dynamic root (that includes threads).
632
9c3fb66f
MV
633Function: with-fluids* FLUIDS VALUES THUNK
634
635 FLUIDS is a list of fluids and VALUES a corresponding list of
636 values for these fluids. Before THUNK gets called the values are
637 installed in the fluids and the old values of the fluids are
638 saved in the VALUES list. When the flow of control leaves THUNK
639 or reenters it, the values get swapped again. You might think of
640 this as a `safe-fluid-excursion'. Note that the VALUES list is
641 modified by `with-fluids*'.
642
643Macro: with-fluids ((FLUID VALUE) ...) FORM ...
644
645 The same as `with-fluids*' but with a different syntax. It looks
646 just like `let', but both FLUID and VALUE are evaluated. Remember,
647 fluids are not special variables but ordinary objects. FLUID
648 should evaluate to a fluid.
04c76b58 649
e2d6569c 650** Changes to system call interfaces:
64d01d13 651
e2d6569c 652*** close-port, close-input-port and close-output-port now return a
64d01d13
GH
653boolean instead of an `unspecified' object. #t means that the port
654was successfully closed, while #f means it was already closed. It is
655also now possible for these procedures to raise an exception if an
656error occurs (some errors from write can be delayed until close.)
657
e2d6569c 658*** the first argument to chmod, fcntl, ftell and fseek can now be a
6afcd3b2
GH
659file descriptor.
660
e2d6569c 661*** the third argument to fcntl is now optional.
6afcd3b2 662
e2d6569c 663*** the first argument to chown can now be a file descriptor or a port.
6afcd3b2 664
e2d6569c 665*** the argument to stat can now be a port.
6afcd3b2 666
e2d6569c 667*** The following new procedures have been added (most use scsh
64d01d13
GH
668interfaces):
669
e2d6569c 670*** procedure: close PORT/FD
ec4ab4fd
GH
671 Similar to close-port (*note close-port: Closing Ports.), but also
672 works on file descriptors. A side effect of closing a file
673 descriptor is that any ports using that file descriptor are moved
674 to a different file descriptor and have their revealed counts set
675 to zero.
676
e2d6569c 677*** procedure: port->fdes PORT
ec4ab4fd
GH
678 Returns the integer file descriptor underlying PORT. As a side
679 effect the revealed count of PORT is incremented.
680
e2d6569c 681*** procedure: fdes->ports FDES
ec4ab4fd
GH
682 Returns a list of existing ports which have FDES as an underlying
683 file descriptor, without changing their revealed counts.
684
e2d6569c 685*** procedure: fdes->inport FDES
ec4ab4fd
GH
686 Returns an existing input port which has FDES as its underlying
687 file descriptor, if one exists, and increments its revealed count.
688 Otherwise, returns a new input port with a revealed count of 1.
689
e2d6569c 690*** procedure: fdes->outport FDES
ec4ab4fd
GH
691 Returns an existing output port which has FDES as its underlying
692 file descriptor, if one exists, and increments its revealed count.
693 Otherwise, returns a new output port with a revealed count of 1.
694
695 The next group of procedures perform a `dup2' system call, if NEWFD
696(an integer) is supplied, otherwise a `dup'. The file descriptor to be
697duplicated can be supplied as an integer or contained in a port. The
64d01d13
GH
698type of value returned varies depending on which procedure is used.
699
ec4ab4fd
GH
700 All procedures also have the side effect when performing `dup2' that
701any ports using NEWFD are moved to a different file descriptor and have
64d01d13
GH
702their revealed counts set to zero.
703
e2d6569c 704*** procedure: dup->fdes PORT/FD [NEWFD]
ec4ab4fd 705 Returns an integer file descriptor.
64d01d13 706
e2d6569c 707*** procedure: dup->inport PORT/FD [NEWFD]
ec4ab4fd 708 Returns a new input port using the new file descriptor.
64d01d13 709
e2d6569c 710*** procedure: dup->outport PORT/FD [NEWFD]
ec4ab4fd 711 Returns a new output port using the new file descriptor.
64d01d13 712
e2d6569c 713*** procedure: dup PORT/FD [NEWFD]
ec4ab4fd
GH
714 Returns a new port if PORT/FD is a port, with the same mode as the
715 supplied port, otherwise returns an integer file descriptor.
64d01d13 716
e2d6569c 717*** procedure: dup->port PORT/FD MODE [NEWFD]
ec4ab4fd
GH
718 Returns a new port using the new file descriptor. MODE supplies a
719 mode string for the port (*note open-file: File Ports.).
64d01d13 720
e2d6569c 721*** procedure: setenv NAME VALUE
ec4ab4fd
GH
722 Modifies the environment of the current process, which is also the
723 default environment inherited by child processes.
64d01d13 724
ec4ab4fd
GH
725 If VALUE is `#f', then NAME is removed from the environment.
726 Otherwise, the string NAME=VALUE is added to the environment,
727 replacing any existing string with name matching NAME.
64d01d13 728
ec4ab4fd 729 The return value is unspecified.
956055a9 730
e2d6569c 731*** procedure: truncate-file OBJ SIZE
6afcd3b2
GH
732 Truncates the file referred to by OBJ to at most SIZE bytes. OBJ
733 can be a string containing a file name or an integer file
734 descriptor or port open for output on the file. The underlying
735 system calls are `truncate' and `ftruncate'.
736
737 The return value is unspecified.
738
e2d6569c 739*** procedure: setvbuf PORT MODE [SIZE]
7a6f1ffa
GH
740 Set the buffering mode for PORT. MODE can be:
741 `_IONBF'
742 non-buffered
743
744 `_IOLBF'
745 line buffered
746
747 `_IOFBF'
748 block buffered, using a newly allocated buffer of SIZE bytes.
749 However if SIZE is zero or unspecified, the port will be made
750 non-buffered.
751
752 This procedure should not be used after I/O has been performed with
753 the port.
754
755 Ports are usually block buffered by default, with a default buffer
756 size. Procedures e.g., *Note open-file: File Ports, which accept a
757 mode string allow `0' to be added to request an unbuffered port.
758
e2d6569c 759*** procedure: fsync PORT/FD
6afcd3b2
GH
760 Copies any unwritten data for the specified output file descriptor
761 to disk. If PORT/FD is a port, its buffer is flushed before the
762 underlying file descriptor is fsync'd. The return value is
763 unspecified.
764
e2d6569c 765*** procedure: open-fdes PATH FLAGS [MODES]
6afcd3b2
GH
766 Similar to `open' but returns a file descriptor instead of a port.
767
e2d6569c 768*** procedure: execle PATH ENV [ARG] ...
6afcd3b2
GH
769 Similar to `execl', but the environment of the new process is
770 specified by ENV, which must be a list of strings as returned by
771 the `environ' procedure.
772
773 This procedure is currently implemented using the `execve' system
774 call, but we call it `execle' because of its Scheme calling
775 interface.
776
e2d6569c 777*** procedure: strerror ERRNO
ec4ab4fd
GH
778 Returns the Unix error message corresponding to ERRNO, an integer.
779
e2d6569c 780*** procedure: primitive-exit [STATUS]
6afcd3b2
GH
781 Terminate the current process without unwinding the Scheme stack.
782 This is would typically be useful after a fork. The exit status
783 is STATUS if supplied, otherwise zero.
784
e2d6569c 785*** procedure: times
6afcd3b2
GH
786 Returns an object with information about real and processor time.
787 The following procedures accept such an object as an argument and
788 return a selected component:
789
790 `tms:clock'
791 The current real time, expressed as time units relative to an
792 arbitrary base.
793
794 `tms:utime'
795 The CPU time units used by the calling process.
796
797 `tms:stime'
798 The CPU time units used by the system on behalf of the
799 calling process.
800
801 `tms:cutime'
802 The CPU time units used by terminated child processes of the
803 calling process, whose status has been collected (e.g., using
804 `waitpid').
805
806 `tms:cstime'
807 Similarly, the CPU times units used by the system on behalf of
808 terminated child processes.
7ad3c1e7 809
e2d6569c
JB
810** Removed: list-length
811** Removed: list-append, list-append!
812** Removed: list-reverse, list-reverse!
813
814** array-map renamed to array-map!
815
816** serial-array-map renamed to serial-array-map!
817
660f41fa
MD
818** catch doesn't take #f as first argument any longer
819
820Previously, it was possible to pass #f instead of a key to `catch'.
821That would cause `catch' to pass a jump buffer object to the procedure
822passed as second argument. The procedure could then use this jump
823buffer objekt as an argument to throw.
824
825This mechanism has been removed since its utility doesn't motivate the
826extra complexity it introduces.
827
332d00f6
JB
828** The `#/' notation for lists now provokes a warning message from Guile.
829This syntax will be removed from Guile in the near future.
830
831To disable the warning message, set the GUILE_HUSH environment
832variable to any non-empty value.
833
8cd57bd0
JB
834** The newline character now prints as `#\newline', following the
835normal Scheme notation, not `#\nl'.
836
c484bf7f
JB
837* Changes to the gh_ interface
838
8986901b
JB
839** The gh_enter function now takes care of loading the Guile startup files.
840gh_enter works by calling scm_boot_guile; see the remarks below.
841
5424b4f7
MD
842** Function: void gh_write (SCM x)
843
844Write the printed representation of the scheme object x to the current
845output port. Corresponds to the scheme level `write'.
846
3a97e020
MD
847** gh_list_length renamed to gh_length.
848
8d6787b6
MG
849** vector handling routines
850
851Several major changes. In particular, gh_vector() now resembles
852(vector ...) (with a caveat -- see manual), and gh_make_vector() now
956328d2
MG
853exists and behaves like (make-vector ...). gh_vset() and gh_vref()
854have been renamed gh_vector_set_x() and gh_vector_ref(). Some missing
8d6787b6
MG
855vector-related gh_ functions have been implemented.
856
7fee59bd
MG
857** pair and list routines
858
859Implemented several of the R4RS pair and list functions that were
860missing.
861
171422a9
MD
862** gh_scm2doubles, gh_doubles2scm, gh_doubles2dvect
863
864New function. Converts double arrays back and forth between Scheme
865and C.
866
c484bf7f
JB
867* Changes to the scm_ interface
868
8986901b
JB
869** The function scm_boot_guile now takes care of loading the startup files.
870
871Guile's primary initialization function, scm_boot_guile, now takes
872care of loading `boot-9.scm', in the `ice-9' module, to initialize
873Guile, define the module system, and put together some standard
874bindings. It also loads `init.scm', which is intended to hold
875site-specific initialization code.
876
877Since Guile cannot operate properly until boot-9.scm is loaded, there
878is no reason to separate loading boot-9.scm from Guile's other
879initialization processes.
880
881This job used to be done by scm_compile_shell_switches, which didn't
882make much sense; in particular, it meant that people using Guile for
883non-shell-like applications had to jump through hoops to get Guile
884initialized properly.
885
886** The function scm_compile_shell_switches no longer loads the startup files.
887Now, Guile always loads the startup files, whenever it is initialized;
888see the notes above for scm_boot_guile and scm_load_startup_files.
889
890** Function: scm_load_startup_files
891This new function takes care of loading Guile's initialization file
892(`boot-9.scm'), and the site initialization file, `init.scm'. Since
893this is always called by the Guile initialization process, it's
894probably not too useful to call this yourself, but it's there anyway.
895
87148d9e
JB
896** The semantics of smob marking have changed slightly.
897
898The smob marking function (the `mark' member of the scm_smobfuns
899structure) is no longer responsible for setting the mark bit on the
900smob. The generic smob handling code in the garbage collector will
901set this bit. The mark function need only ensure that any other
902objects the smob refers to get marked.
903
904Note that this change means that the smob's GC8MARK bit is typically
905already set upon entry to the mark function. Thus, marking functions
906which look like this:
907
908 {
909 if (SCM_GC8MARKP (ptr))
910 return SCM_BOOL_F;
911 SCM_SETGC8MARK (ptr);
912 ... mark objects to which the smob refers ...
913 }
914
915are now incorrect, since they will return early, and fail to mark any
916other objects the smob refers to. Some code in the Guile library used
917to work this way.
918
1cf84ea5
JB
919** The semantics of the I/O port functions in scm_ptobfuns have changed.
920
921If you have implemented your own I/O port type, by writing the
922functions required by the scm_ptobfuns and then calling scm_newptob,
923you will need to change your functions slightly.
924
925The functions in a scm_ptobfuns structure now expect the port itself
926as their argument; they used to expect the `stream' member of the
927port's scm_port_table structure. This allows functions in an
928scm_ptobfuns structure to easily access the port's cell (and any flags
929it its CAR), and the port's scm_port_table structure.
930
931Guile now passes the I/O port itself as the `port' argument in the
932following scm_ptobfuns functions:
933
934 int (*free) (SCM port);
935 int (*fputc) (int, SCM port);
936 int (*fputs) (char *, SCM port);
937 scm_sizet (*fwrite) SCM_P ((char *ptr,
938 scm_sizet size,
939 scm_sizet nitems,
940 SCM port));
941 int (*fflush) (SCM port);
942 int (*fgetc) (SCM port);
943 int (*fclose) (SCM port);
944
945The interfaces to the `mark', `print', `equalp', and `fgets' methods
946are unchanged.
947
948If you have existing code which defines its own port types, it is easy
949to convert your code to the new interface; simply apply SCM_STREAM to
950the port argument to yield the value you code used to expect.
951
952Note that since both the port and the stream have the same type in the
953C code --- they are both SCM values --- the C compiler will not remind
954you if you forget to update your scm_ptobfuns functions.
955
956
933a7411
MD
957** Function: int scm_internal_select (int fds,
958 SELECT_TYPE *rfds,
959 SELECT_TYPE *wfds,
960 SELECT_TYPE *efds,
961 struct timeval *timeout);
962
963This is a replacement for the `select' function provided by the OS.
964It enables I/O blocking and sleeping to happen for one cooperative
965thread without blocking other threads. It also avoids busy-loops in
966these situations. It is intended that all I/O blocking and sleeping
967will finally go through this function. Currently, this function is
968only available on systems providing `gettimeofday' and `select'.
969
5424b4f7
MD
970** Function: SCM scm_internal_stack_catch (SCM tag,
971 scm_catch_body_t body,
972 void *body_data,
973 scm_catch_handler_t handler,
974 void *handler_data)
975
976A new sibling to the other two C level `catch' functions
977scm_internal_catch and scm_internal_lazy_catch. Use it if you want
978the stack to be saved automatically into the variable `the-last-stack'
979(scm_the_last_stack_var) on error. This is necessary if you want to
980use advanced error reporting, such as calling scm_display_error and
981scm_display_backtrace. (They both take a stack object as argument.)
982
df366c26
MD
983** Function: SCM scm_spawn_thread (scm_catch_body_t body,
984 void *body_data,
985 scm_catch_handler_t handler,
986 void *handler_data)
987
988Spawns a new thread. It does a job similar to
989scm_call_with_new_thread but takes arguments more suitable when
990spawning threads from application C code.
991
88482b31
MD
992** The hook scm_error_callback has been removed. It was originally
993intended as a way for the user to install his own error handler. But
994that method works badly since it intervenes between throw and catch,
995thereby changing the semantics of expressions like (catch #t ...).
996The correct way to do it is to use one of the C level catch functions
997in throw.c: scm_internal_catch/lazy_catch/stack_catch.
998
3a97e020
MD
999** Removed functions:
1000
1001scm_obj_length, scm_list_length, scm_list_append, scm_list_append_x,
1002scm_list_reverse, scm_list_reverse_x
1003
1004** New macros: SCM_LISTn where n is one of the integers 0-9.
1005
1006These can be used for pretty list creation from C. The idea is taken
1007from Erick Gallesio's STk.
1008
298aa6e3
MD
1009** scm_array_map renamed to scm_array_map_x
1010
527da704
MD
1011** mbstrings are now removed
1012
1013This means that the type codes scm_tc7_mb_string and
1014scm_tc7_mb_substring has been removed.
1015
8cd57bd0
JB
1016** scm_gen_putc, scm_gen_puts, scm_gen_write, and scm_gen_getc have changed.
1017
1018Since we no longer support multi-byte strings, these I/O functions
1019have been simplified, and renamed. Here are their old names, and
1020their new names and arguments:
1021
1022scm_gen_putc -> void scm_putc (int c, SCM port);
1023scm_gen_puts -> void scm_puts (char *s, SCM port);
1024scm_gen_write -> void scm_lfwrite (char *ptr, scm_sizet size, SCM port);
1025scm_gen_getc -> void scm_getc (SCM port);
1026
1027
527da704
MD
1028** The macros SCM_TYP7D and SCM_TYP7SD has been removed.
1029
1030** The macro SCM_TYP7S has taken the role of the old SCM_TYP7D
1031
1032SCM_TYP7S now masks away the bit which distinguishes substrings from
1033strings.
1034
660f41fa
MD
1035** scm_catch_body_t: Backward incompatible change!
1036
1037Body functions to scm_internal_catch and friends do not any longer
1038take a second argument. This is because it is no longer possible to
1039pass a #f arg to catch.
1040
a8e05009
JB
1041** Calls to scm_protect_object and scm_unprotect now nest properly.
1042
1043The function scm_protect_object protects its argument from being freed
1044by the garbage collector. scm_unprotect_object removes that
1045protection.
1046
1047These functions now nest properly. That is, for every object O, there
1048is a counter which scm_protect_object(O) increments and
1049scm_unprotect_object(O) decrements, if the counter is greater than
1050zero. Every object's counter is zero when it is first created. If an
1051object's counter is greater than zero, the garbage collector will not
1052reclaim its storage.
1053
1054This allows you to use scm_protect_object in your code without
1055worrying that some other function you call will call
1056scm_unprotect_object, and allow it to be freed. Assuming that the
1057functions you call are well-behaved, and unprotect only those objects
1058they protect, you can follow the same rule and have confidence that
1059objects will be freed only at appropriate times.
1060
c484bf7f
JB
1061\f
1062Changes in Guile 1.2 (released Tuesday, June 24 1997):
cf78e9e8 1063
737c9113
JB
1064* Changes to the distribution
1065
832b09ed
JB
1066** Nightly snapshots are now available from ftp.red-bean.com.
1067The old server, ftp.cyclic.com, has been relinquished to its rightful
1068owner.
1069
1070Nightly snapshots of the Guile development sources are now available via
1071anonymous FTP from ftp.red-bean.com, as /pub/guile/guile-snap.tar.gz.
1072
1073Via the web, that's: ftp://ftp.red-bean.com/pub/guile/guile-snap.tar.gz
1074For getit, that's: ftp.red-bean.com:/pub/guile/guile-snap.tar.gz
1075
0fcab5ed
JB
1076** To run Guile without installing it, the procedure has changed a bit.
1077
1078If you used a separate build directory to compile Guile, you'll need
1079to include the build directory in SCHEME_LOAD_PATH, as well as the
1080source directory. See the `INSTALL' file for examples.
1081
737c9113
JB
1082* Changes to the procedure for linking libguile with your programs
1083
94982a4e
JB
1084** The standard Guile load path for Scheme code now includes
1085$(datadir)/guile (usually /usr/local/share/guile). This means that
1086you can install your own Scheme files there, and Guile will find them.
1087(Previous versions of Guile only checked a directory whose name
1088contained the Guile version number, so you had to re-install or move
1089your Scheme sources each time you installed a fresh version of Guile.)
1090
1091The load path also includes $(datadir)/guile/site; we recommend
1092putting individual Scheme files there. If you want to install a
1093package with multiple source files, create a directory for them under
1094$(datadir)/guile.
1095
1096** Guile 1.2 will now use the Rx regular expression library, if it is
1097installed on your system. When you are linking libguile into your own
1098programs, this means you will have to link against -lguile, -lqt (if
1099you configured Guile with thread support), and -lrx.
27590f82
JB
1100
1101If you are using autoconf to generate configuration scripts for your
1102application, the following lines should suffice to add the appropriate
1103libraries to your link command:
1104
1105### Find Rx, quickthreads and libguile.
1106AC_CHECK_LIB(rx, main)
1107AC_CHECK_LIB(qt, main)
1108AC_CHECK_LIB(guile, scm_shell)
1109
94982a4e
JB
1110The Guile 1.2 distribution does not contain sources for the Rx
1111library, as Guile 1.0 did. If you want to use Rx, you'll need to
1112retrieve it from a GNU FTP site and install it separately.
1113
b83b8bee
JB
1114* Changes to Scheme functions and syntax
1115
e035e7e6
MV
1116** The dynamic linking features of Guile are now enabled by default.
1117You can disable them by giving the `--disable-dynamic-linking' option
1118to configure.
1119
e035e7e6
MV
1120 (dynamic-link FILENAME)
1121
1122 Find the object file denoted by FILENAME (a string) and link it
1123 into the running Guile application. When everything works out,
1124 return a Scheme object suitable for representing the linked object
1125 file. Otherwise an error is thrown. How object files are
1126 searched is system dependent.
1127
1128 (dynamic-object? VAL)
1129
1130 Determine whether VAL represents a dynamically linked object file.
1131
1132 (dynamic-unlink DYNOBJ)
1133
1134 Unlink the indicated object file from the application. DYNOBJ
1135 should be one of the values returned by `dynamic-link'.
1136
1137 (dynamic-func FUNCTION DYNOBJ)
1138
1139 Search the C function indicated by FUNCTION (a string or symbol)
1140 in DYNOBJ and return some Scheme object that can later be used
1141 with `dynamic-call' to actually call this function. Right now,
1142 these Scheme objects are formed by casting the address of the
1143 function to `long' and converting this number to its Scheme
1144 representation.
1145
1146 (dynamic-call FUNCTION DYNOBJ)
1147
1148 Call the C function indicated by FUNCTION and DYNOBJ. The
1149 function is passed no arguments and its return value is ignored.
1150 When FUNCTION is something returned by `dynamic-func', call that
1151 function and ignore DYNOBJ. When FUNCTION is a string (or symbol,
1152 etc.), look it up in DYNOBJ; this is equivalent to
1153
1154 (dynamic-call (dynamic-func FUNCTION DYNOBJ) #f)
1155
1156 Interrupts are deferred while the C function is executing (with
1157 SCM_DEFER_INTS/SCM_ALLOW_INTS).
1158
1159 (dynamic-args-call FUNCTION DYNOBJ ARGS)
1160
1161 Call the C function indicated by FUNCTION and DYNOBJ, but pass it
1162 some arguments and return its return value. The C function is
1163 expected to take two arguments and return an `int', just like
1164 `main':
1165
1166 int c_func (int argc, char **argv);
1167
1168 ARGS must be a list of strings and is converted into an array of
1169 `char *'. The array is passed in ARGV and its size in ARGC. The
1170 return value is converted to a Scheme number and returned from the
1171 call to `dynamic-args-call'.
1172
0fcab5ed
JB
1173When dynamic linking is disabled or not supported on your system,
1174the above functions throw errors, but they are still available.
1175
e035e7e6
MV
1176Here is a small example that works on GNU/Linux:
1177
1178 (define libc-obj (dynamic-link "libc.so"))
1179 (dynamic-args-call 'rand libc-obj '())
1180
1181See the file `libguile/DYNAMIC-LINKING' for additional comments.
1182
27590f82
JB
1183** The #/ syntax for module names is depreciated, and will be removed
1184in a future version of Guile. Instead of
1185
1186 #/foo/bar/baz
1187
1188instead write
1189
1190 (foo bar baz)
1191
1192The latter syntax is more consistent with existing Lisp practice.
1193
5dade857
MV
1194** Guile now does fancier printing of structures. Structures are the
1195underlying implementation for records, which in turn are used to
1196implement modules, so all of these object now print differently and in
1197a more informative way.
1198
161029df
JB
1199The Scheme printer will examine the builtin variable *struct-printer*
1200whenever it needs to print a structure object. When this variable is
1201not `#f' it is deemed to be a procedure and will be applied to the
1202structure object and the output port. When *struct-printer* is `#f'
1203or the procedure return `#f' the structure object will be printed in
1204the boring #<struct 80458270> form.
5dade857
MV
1205
1206This hook is used by some routines in ice-9/boot-9.scm to implement
1207type specific printing routines. Please read the comments there about
1208"printing structs".
1209
1210One of the more specific uses of structs are records. The printing
1211procedure that could be passed to MAKE-RECORD-TYPE is now actually
1212called. It should behave like a *struct-printer* procedure (described
1213above).
1214
b83b8bee
JB
1215** Guile now supports a new R4RS-compliant syntax for keywords. A
1216token of the form #:NAME, where NAME has the same syntax as a Scheme
1217symbol, is the external representation of the keyword named NAME.
1218Keyword objects print using this syntax as well, so values containing
1e5afba0
JB
1219keyword objects can be read back into Guile. When used in an
1220expression, keywords are self-quoting objects.
b83b8bee
JB
1221
1222Guile suports this read syntax, and uses this print syntax, regardless
1223of the current setting of the `keyword' read option. The `keyword'
1224read option only controls whether Guile recognizes the `:NAME' syntax,
1225which is incompatible with R4RS. (R4RS says such token represent
1226symbols.)
737c9113
JB
1227
1228** Guile has regular expression support again. Guile 1.0 included
1229functions for matching regular expressions, based on the Rx library.
1230In Guile 1.1, the Guile/Rx interface was removed to simplify the
1231distribution, and thus Guile had no regular expression support. Guile
94982a4e
JB
12321.2 again supports the most commonly used functions, and supports all
1233of SCSH's regular expression functions.
2409cdfa 1234
94982a4e
JB
1235If your system does not include a POSIX regular expression library,
1236and you have not linked Guile with a third-party regexp library such as
1237Rx, these functions will not be available. You can tell whether your
1238Guile installation includes regular expression support by checking
1239whether the `*features*' list includes the `regex' symbol.
737c9113 1240
94982a4e 1241*** regexp functions
161029df 1242
94982a4e
JB
1243By default, Guile supports POSIX extended regular expressions. That
1244means that the characters `(', `)', `+' and `?' are special, and must
1245be escaped if you wish to match the literal characters.
e1a191a8 1246
94982a4e
JB
1247This regular expression interface was modeled after that implemented
1248by SCSH, the Scheme Shell. It is intended to be upwardly compatible
1249with SCSH regular expressions.
1250
1251**** Function: string-match PATTERN STR [START]
1252 Compile the string PATTERN into a regular expression and compare
1253 it with STR. The optional numeric argument START specifies the
1254 position of STR at which to begin matching.
1255
1256 `string-match' returns a "match structure" which describes what,
1257 if anything, was matched by the regular expression. *Note Match
1258 Structures::. If STR does not match PATTERN at all,
1259 `string-match' returns `#f'.
1260
1261 Each time `string-match' is called, it must compile its PATTERN
1262argument into a regular expression structure. This operation is
1263expensive, which makes `string-match' inefficient if the same regular
1264expression is used several times (for example, in a loop). For better
1265performance, you can compile a regular expression in advance and then
1266match strings against the compiled regexp.
1267
1268**** Function: make-regexp STR [FLAGS]
1269 Compile the regular expression described by STR, and return the
1270 compiled regexp structure. If STR does not describe a legal
1271 regular expression, `make-regexp' throws a
1272 `regular-expression-syntax' error.
1273
1274 FLAGS may be the bitwise-or of one or more of the following:
1275
1276**** Constant: regexp/extended
1277 Use POSIX Extended Regular Expression syntax when interpreting
1278 STR. If not set, POSIX Basic Regular Expression syntax is used.
1279 If the FLAGS argument is omitted, we assume regexp/extended.
1280
1281**** Constant: regexp/icase
1282 Do not differentiate case. Subsequent searches using the
1283 returned regular expression will be case insensitive.
1284
1285**** Constant: regexp/newline
1286 Match-any-character operators don't match a newline.
1287
1288 A non-matching list ([^...]) not containing a newline matches a
1289 newline.
1290
1291 Match-beginning-of-line operator (^) matches the empty string
1292 immediately after a newline, regardless of whether the FLAGS
1293 passed to regexp-exec contain regexp/notbol.
1294
1295 Match-end-of-line operator ($) matches the empty string
1296 immediately before a newline, regardless of whether the FLAGS
1297 passed to regexp-exec contain regexp/noteol.
1298
1299**** Function: regexp-exec REGEXP STR [START [FLAGS]]
1300 Match the compiled regular expression REGEXP against `str'. If
1301 the optional integer START argument is provided, begin matching
1302 from that position in the string. Return a match structure
1303 describing the results of the match, or `#f' if no match could be
1304 found.
1305
1306 FLAGS may be the bitwise-or of one or more of the following:
1307
1308**** Constant: regexp/notbol
1309 The match-beginning-of-line operator always fails to match (but
1310 see the compilation flag regexp/newline above) This flag may be
1311 used when different portions of a string are passed to
1312 regexp-exec and the beginning of the string should not be
1313 interpreted as the beginning of the line.
1314
1315**** Constant: regexp/noteol
1316 The match-end-of-line operator always fails to match (but see the
1317 compilation flag regexp/newline above)
1318
1319**** Function: regexp? OBJ
1320 Return `#t' if OBJ is a compiled regular expression, or `#f'
1321 otherwise.
1322
1323 Regular expressions are commonly used to find patterns in one string
1324and replace them with the contents of another string.
1325
1326**** Function: regexp-substitute PORT MATCH [ITEM...]
1327 Write to the output port PORT selected contents of the match
1328 structure MATCH. Each ITEM specifies what should be written, and
1329 may be one of the following arguments:
1330
1331 * A string. String arguments are written out verbatim.
1332
1333 * An integer. The submatch with that number is written.
1334
1335 * The symbol `pre'. The portion of the matched string preceding
1336 the regexp match is written.
1337
1338 * The symbol `post'. The portion of the matched string
1339 following the regexp match is written.
1340
1341 PORT may be `#f', in which case nothing is written; instead,
1342 `regexp-substitute' constructs a string from the specified ITEMs
1343 and returns that.
1344
1345**** Function: regexp-substitute/global PORT REGEXP TARGET [ITEM...]
1346 Similar to `regexp-substitute', but can be used to perform global
1347 substitutions on STR. Instead of taking a match structure as an
1348 argument, `regexp-substitute/global' takes two string arguments: a
1349 REGEXP string describing a regular expression, and a TARGET string
1350 which should be matched against this regular expression.
1351
1352 Each ITEM behaves as in REGEXP-SUBSTITUTE, with the following
1353 exceptions:
1354
1355 * A function may be supplied. When this function is called, it
1356 will be passed one argument: a match structure for a given
1357 regular expression match. It should return a string to be
1358 written out to PORT.
1359
1360 * The `post' symbol causes `regexp-substitute/global' to recurse
1361 on the unmatched portion of STR. This *must* be supplied in
1362 order to perform global search-and-replace on STR; if it is
1363 not present among the ITEMs, then `regexp-substitute/global'
1364 will return after processing a single match.
1365
1366*** Match Structures
1367
1368 A "match structure" is the object returned by `string-match' and
1369`regexp-exec'. It describes which portion of a string, if any, matched
1370the given regular expression. Match structures include: a reference to
1371the string that was checked for matches; the starting and ending
1372positions of the regexp match; and, if the regexp included any
1373parenthesized subexpressions, the starting and ending positions of each
1374submatch.
1375
1376 In each of the regexp match functions described below, the `match'
1377argument must be a match structure returned by a previous call to
1378`string-match' or `regexp-exec'. Most of these functions return some
1379information about the original target string that was matched against a
1380regular expression; we will call that string TARGET for easy reference.
1381
1382**** Function: regexp-match? OBJ
1383 Return `#t' if OBJ is a match structure returned by a previous
1384 call to `regexp-exec', or `#f' otherwise.
1385
1386**** Function: match:substring MATCH [N]
1387 Return the portion of TARGET matched by subexpression number N.
1388 Submatch 0 (the default) represents the entire regexp match. If
1389 the regular expression as a whole matched, but the subexpression
1390 number N did not match, return `#f'.
1391
1392**** Function: match:start MATCH [N]
1393 Return the starting position of submatch number N.
1394
1395**** Function: match:end MATCH [N]
1396 Return the ending position of submatch number N.
1397
1398**** Function: match:prefix MATCH
1399 Return the unmatched portion of TARGET preceding the regexp match.
1400
1401**** Function: match:suffix MATCH
1402 Return the unmatched portion of TARGET following the regexp match.
1403
1404**** Function: match:count MATCH
1405 Return the number of parenthesized subexpressions from MATCH.
1406 Note that the entire regular expression match itself counts as a
1407 subexpression, and failed submatches are included in the count.
1408
1409**** Function: match:string MATCH
1410 Return the original TARGET string.
1411
1412*** Backslash Escapes
1413
1414 Sometimes you will want a regexp to match characters like `*' or `$'
1415exactly. For example, to check whether a particular string represents
1416a menu entry from an Info node, it would be useful to match it against
1417a regexp like `^* [^:]*::'. However, this won't work; because the
1418asterisk is a metacharacter, it won't match the `*' at the beginning of
1419the string. In this case, we want to make the first asterisk un-magic.
1420
1421 You can do this by preceding the metacharacter with a backslash
1422character `\'. (This is also called "quoting" the metacharacter, and
1423is known as a "backslash escape".) When Guile sees a backslash in a
1424regular expression, it considers the following glyph to be an ordinary
1425character, no matter what special meaning it would ordinarily have.
1426Therefore, we can make the above example work by changing the regexp to
1427`^\* [^:]*::'. The `\*' sequence tells the regular expression engine
1428to match only a single asterisk in the target string.
1429
1430 Since the backslash is itself a metacharacter, you may force a
1431regexp to match a backslash in the target string by preceding the
1432backslash with itself. For example, to find variable references in a
1433TeX program, you might want to find occurrences of the string `\let\'
1434followed by any number of alphabetic characters. The regular expression
1435`\\let\\[A-Za-z]*' would do this: the double backslashes in the regexp
1436each match a single backslash in the target string.
1437
1438**** Function: regexp-quote STR
1439 Quote each special character found in STR with a backslash, and
1440 return the resulting string.
1441
1442 *Very important:* Using backslash escapes in Guile source code (as
1443in Emacs Lisp or C) can be tricky, because the backslash character has
1444special meaning for the Guile reader. For example, if Guile encounters
1445the character sequence `\n' in the middle of a string while processing
1446Scheme code, it replaces those characters with a newline character.
1447Similarly, the character sequence `\t' is replaced by a horizontal tab.
1448Several of these "escape sequences" are processed by the Guile reader
1449before your code is executed. Unrecognized escape sequences are
1450ignored: if the characters `\*' appear in a string, they will be
1451translated to the single character `*'.
1452
1453 This translation is obviously undesirable for regular expressions,
1454since we want to be able to include backslashes in a string in order to
1455escape regexp metacharacters. Therefore, to make sure that a backslash
1456is preserved in a string in your Guile program, you must use *two*
1457consecutive backslashes:
1458
1459 (define Info-menu-entry-pattern (make-regexp "^\\* [^:]*"))
1460
1461 The string in this example is preprocessed by the Guile reader before
1462any code is executed. The resulting argument to `make-regexp' is the
1463string `^\* [^:]*', which is what we really want.
1464
1465 This also means that in order to write a regular expression that
1466matches a single backslash character, the regular expression string in
1467the source code must include *four* backslashes. Each consecutive pair
1468of backslashes gets translated by the Guile reader to a single
1469backslash, and the resulting double-backslash is interpreted by the
1470regexp engine as matching a single backslash character. Hence:
1471
1472 (define tex-variable-pattern (make-regexp "\\\\let\\\\=[A-Za-z]*"))
1473
1474 The reason for the unwieldiness of this syntax is historical. Both
1475regular expression pattern matchers and Unix string processing systems
1476have traditionally used backslashes with the special meanings described
1477above. The POSIX regular expression specification and ANSI C standard
1478both require these semantics. Attempting to abandon either convention
1479would cause other kinds of compatibility problems, possibly more severe
1480ones. Therefore, without extending the Scheme reader to support
1481strings with different quoting conventions (an ungainly and confusing
1482extension when implemented in other languages), we must adhere to this
1483cumbersome escape syntax.
1484
7ad3c1e7
GH
1485* Changes to the gh_ interface
1486
1487* Changes to the scm_ interface
1488
1489* Changes to system call interfaces:
94982a4e 1490
7ad3c1e7 1491** The value returned by `raise' is now unspecified. It throws an exception
e1a191a8
GH
1492if an error occurs.
1493
94982a4e 1494*** A new procedure `sigaction' can be used to install signal handlers
115b09a5
GH
1495
1496(sigaction signum [action] [flags])
1497
1498signum is the signal number, which can be specified using the value
1499of SIGINT etc.
1500
1501If action is omitted, sigaction returns a pair: the CAR is the current
1502signal hander, which will be either an integer with the value SIG_DFL
1503(default action) or SIG_IGN (ignore), or the Scheme procedure which
1504handles the signal, or #f if a non-Scheme procedure handles the
1505signal. The CDR contains the current sigaction flags for the handler.
1506
1507If action is provided, it is installed as the new handler for signum.
1508action can be a Scheme procedure taking one argument, or the value of
1509SIG_DFL (default action) or SIG_IGN (ignore), or #f to restore
1510whatever signal handler was installed before sigaction was first used.
1511Flags can optionally be specified for the new handler (SA_RESTART is
1512always used if the system provides it, so need not be specified.) The
1513return value is a pair with information about the old handler as
1514described above.
1515
1516This interface does not provide access to the "signal blocking"
1517facility. Maybe this is not needed, since the thread support may
1518provide solutions to the problem of consistent access to data
1519structures.
e1a191a8 1520
94982a4e 1521*** A new procedure `flush-all-ports' is equivalent to running
89ea5b7c
GH
1522`force-output' on every port open for output.
1523
94982a4e
JB
1524** Guile now provides information on how it was built, via the new
1525global variable, %guile-build-info. This variable records the values
1526of the standard GNU makefile directory variables as an assocation
1527list, mapping variable names (symbols) onto directory paths (strings).
1528For example, to find out where the Guile link libraries were
1529installed, you can say:
1530
1531guile -c "(display (assq-ref %guile-build-info 'libdir)) (newline)"
1532
1533
1534* Changes to the scm_ interface
1535
1536** The new function scm_handle_by_message_noexit is just like the
1537existing scm_handle_by_message function, except that it doesn't call
1538exit to terminate the process. Instead, it prints a message and just
1539returns #f. This might be a more appropriate catch-all handler for
1540new dynamic roots and threads.
1541
cf78e9e8 1542\f
c484bf7f 1543Changes in Guile 1.1 (released Friday, May 16 1997):
f3b1485f
JB
1544
1545* Changes to the distribution.
1546
1547The Guile 1.0 distribution has been split up into several smaller
1548pieces:
1549guile-core --- the Guile interpreter itself.
1550guile-tcltk --- the interface between the Guile interpreter and
1551 Tcl/Tk; Tcl is an interpreter for a stringy language, and Tk
1552 is a toolkit for building graphical user interfaces.
1553guile-rgx-ctax --- the interface between Guile and the Rx regular
1554 expression matcher, and the translator for the Ctax
1555 programming language. These are packaged together because the
1556 Ctax translator uses Rx to parse Ctax source code.
1557
095936d2
JB
1558This NEWS file describes the changes made to guile-core since the 1.0
1559release.
1560
48d224d7
JB
1561We no longer distribute the documentation, since it was either out of
1562date, or incomplete. As soon as we have current documentation, we
1563will distribute it.
1564
0fcab5ed
JB
1565
1566
f3b1485f
JB
1567* Changes to the stand-alone interpreter
1568
48d224d7
JB
1569** guile now accepts command-line arguments compatible with SCSH, Olin
1570Shivers' Scheme Shell.
1571
1572In general, arguments are evaluated from left to right, but there are
1573exceptions. The following switches stop argument processing, and
1574stash all remaining command-line arguments as the value returned by
1575the (command-line) function.
1576 -s SCRIPT load Scheme source code from FILE, and exit
1577 -c EXPR evalute Scheme expression EXPR, and exit
1578 -- stop scanning arguments; run interactively
1579
1580The switches below are processed as they are encountered.
1581 -l FILE load Scheme source code from FILE
1582 -e FUNCTION after reading script, apply FUNCTION to
1583 command line arguments
1584 -ds do -s script at this point
1585 --emacs enable Emacs protocol (experimental)
1586 -h, --help display this help and exit
1587 -v, --version display version information and exit
1588 \ read arguments from following script lines
1589
1590So, for example, here is a Guile script named `ekko' (thanks, Olin)
1591which re-implements the traditional "echo" command:
1592
1593#!/usr/local/bin/guile -s
1594!#
1595(define (main args)
1596 (map (lambda (arg) (display arg) (display " "))
1597 (cdr args))
1598 (newline))
1599
1600(main (command-line))
1601
1602Suppose we invoke this script as follows:
1603
1604 ekko a speckled gecko
1605
1606Through the magic of Unix script processing (triggered by the `#!'
1607token at the top of the file), /usr/local/bin/guile receives the
1608following list of command-line arguments:
1609
1610 ("-s" "./ekko" "a" "speckled" "gecko")
1611
1612Unix inserts the name of the script after the argument specified on
1613the first line of the file (in this case, "-s"), and then follows that
1614with the arguments given to the script. Guile loads the script, which
1615defines the `main' function, and then applies it to the list of
1616remaining command-line arguments, ("a" "speckled" "gecko").
1617
095936d2
JB
1618In Unix, the first line of a script file must take the following form:
1619
1620#!INTERPRETER ARGUMENT
1621
1622where INTERPRETER is the absolute filename of the interpreter
1623executable, and ARGUMENT is a single command-line argument to pass to
1624the interpreter.
1625
1626You may only pass one argument to the interpreter, and its length is
1627limited. These restrictions can be annoying to work around, so Guile
1628provides a general mechanism (borrowed from, and compatible with,
1629SCSH) for circumventing them.
1630
1631If the ARGUMENT in a Guile script is a single backslash character,
1632`\', Guile will open the script file, parse arguments from its second
1633and subsequent lines, and replace the `\' with them. So, for example,
1634here is another implementation of the `ekko' script:
1635
1636#!/usr/local/bin/guile \
1637-e main -s
1638!#
1639(define (main args)
1640 (for-each (lambda (arg) (display arg) (display " "))
1641 (cdr args))
1642 (newline))
1643
1644If the user invokes this script as follows:
1645
1646 ekko a speckled gecko
1647
1648Unix expands this into
1649
1650 /usr/local/bin/guile \ ekko a speckled gecko
1651
1652When Guile sees the `\' argument, it replaces it with the arguments
1653read from the second line of the script, producing:
1654
1655 /usr/local/bin/guile -e main -s ekko a speckled gecko
1656
1657This tells Guile to load the `ekko' script, and apply the function
1658`main' to the argument list ("a" "speckled" "gecko").
1659
1660Here is how Guile parses the command-line arguments:
1661- Each space character terminates an argument. This means that two
1662 spaces in a row introduce an empty-string argument.
1663- The tab character is not permitted (unless you quote it with the
1664 backslash character, as described below), to avoid confusion.
1665- The newline character terminates the sequence of arguments, and will
1666 also terminate a final non-empty argument. (However, a newline
1667 following a space will not introduce a final empty-string argument;
1668 it only terminates the argument list.)
1669- The backslash character is the escape character. It escapes
1670 backslash, space, tab, and newline. The ANSI C escape sequences
1671 like \n and \t are also supported. These produce argument
1672 constituents; the two-character combination \n doesn't act like a
1673 terminating newline. The escape sequence \NNN for exactly three
1674 octal digits reads as the character whose ASCII code is NNN. As
1675 above, characters produced this way are argument constituents.
1676 Backslash followed by other characters is not allowed.
1677
48d224d7
JB
1678* Changes to the procedure for linking libguile with your programs
1679
1680** Guile now builds and installs a shared guile library, if your
1681system support shared libraries. (It still builds a static library on
1682all systems.) Guile automatically detects whether your system
1683supports shared libraries. To prevent Guile from buildisg shared
1684libraries, pass the `--disable-shared' flag to the configure script.
1685
1686Guile takes longer to compile when it builds shared libraries, because
1687it must compile every file twice --- once to produce position-
1688independent object code, and once to produce normal object code.
1689
1690** The libthreads library has been merged into libguile.
1691
1692To link a program against Guile, you now need only link against
1693-lguile and -lqt; -lthreads is no longer needed. If you are using
1694autoconf to generate configuration scripts for your application, the
1695following lines should suffice to add the appropriate libraries to
1696your link command:
1697
1698### Find quickthreads and libguile.
1699AC_CHECK_LIB(qt, main)
1700AC_CHECK_LIB(guile, scm_shell)
f3b1485f
JB
1701
1702* Changes to Scheme functions
1703
095936d2
JB
1704** Guile Scheme's special syntax for keyword objects is now optional,
1705and disabled by default.
1706
1707The syntax variation from R4RS made it difficult to port some
1708interesting packages to Guile. The routines which accepted keyword
1709arguments (mostly in the module system) have been modified to also
1710accept symbols whose names begin with `:'.
1711
1712To change the keyword syntax, you must first import the (ice-9 debug)
1713module:
1714 (use-modules (ice-9 debug))
1715
1716Then you can enable the keyword syntax as follows:
1717 (read-set! keywords 'prefix)
1718
1719To disable keyword syntax, do this:
1720 (read-set! keywords #f)
1721
1722** Many more primitive functions accept shared substrings as
1723arguments. In the past, these functions required normal, mutable
1724strings as arguments, although they never made use of this
1725restriction.
1726
1727** The uniform array functions now operate on byte vectors. These
1728functions are `array-fill!', `serial-array-copy!', `array-copy!',
1729`serial-array-map', `array-map', `array-for-each', and
1730`array-index-map!'.
1731
1732** The new functions `trace' and `untrace' implement simple debugging
1733support for Scheme functions.
1734
1735The `trace' function accepts any number of procedures as arguments,
1736and tells the Guile interpreter to display each procedure's name and
1737arguments each time the procedure is invoked. When invoked with no
1738arguments, `trace' returns the list of procedures currently being
1739traced.
1740
1741The `untrace' function accepts any number of procedures as arguments,
1742and tells the Guile interpreter not to trace them any more. When
1743invoked with no arguments, `untrace' untraces all curretly traced
1744procedures.
1745
1746The tracing in Guile has an advantage over most other systems: we
1747don't create new procedure objects, but mark the procedure objects
1748themselves. This means that anonymous and internal procedures can be
1749traced.
1750
1751** The function `assert-repl-prompt' has been renamed to
1752`set-repl-prompt!'. It takes one argument, PROMPT.
1753- If PROMPT is #f, the Guile read-eval-print loop will not prompt.
1754- If PROMPT is a string, we use it as a prompt.
1755- If PROMPT is a procedure accepting no arguments, we call it, and
1756 display the result as a prompt.
1757- Otherwise, we display "> ".
1758
1759** The new function `eval-string' reads Scheme expressions from a
1760string and evaluates them, returning the value of the last expression
1761in the string. If the string contains no expressions, it returns an
1762unspecified value.
1763
1764** The new function `thunk?' returns true iff its argument is a
1765procedure of zero arguments.
1766
1767** `defined?' is now a builtin function, instead of syntax. This
1768means that its argument should be quoted. It returns #t iff its
1769argument is bound in the current module.
1770
1771** The new syntax `use-modules' allows you to add new modules to your
1772environment without re-typing a complete `define-module' form. It
1773accepts any number of module names as arguments, and imports their
1774public bindings into the current module.
1775
1776** The new function (module-defined? NAME MODULE) returns true iff
1777NAME, a symbol, is defined in MODULE, a module object.
1778
1779** The new function `builtin-bindings' creates and returns a hash
1780table containing copies of all the root module's bindings.
1781
1782** The new function `builtin-weak-bindings' does the same as
1783`builtin-bindings', but creates a doubly-weak hash table.
1784
1785** The `equal?' function now considers variable objects to be
1786equivalent if they have the same name and the same value.
1787
1788** The new function `command-line' returns the command-line arguments
1789given to Guile, as a list of strings.
1790
1791When using guile as a script interpreter, `command-line' returns the
1792script's arguments; those processed by the interpreter (like `-s' or
1793`-c') are omitted. (In other words, you get the normal, expected
1794behavior.) Any application that uses scm_shell to process its
1795command-line arguments gets this behavior as well.
1796
1797** The new function `load-user-init' looks for a file called `.guile'
1798in the user's home directory, and loads it if it exists. This is
1799mostly for use by the code generated by scm_compile_shell_switches,
1800but we thought it might also be useful in other circumstances.
1801
1802** The new function `log10' returns the base-10 logarithm of its
1803argument.
1804
1805** Changes to I/O functions
1806
1807*** The functions `read', `primitive-load', `read-and-eval!', and
1808`primitive-load-path' no longer take optional arguments controlling
1809case insensitivity and a `#' parser.
1810
1811Case sensitivity is now controlled by a read option called
1812`case-insensitive'. The user can add new `#' syntaxes with the
1813`read-hash-extend' function (see below).
1814
1815*** The new function `read-hash-extend' allows the user to change the
1816syntax of Guile Scheme in a somewhat controlled way.
1817
1818(read-hash-extend CHAR PROC)
1819 When parsing S-expressions, if we read a `#' character followed by
1820 the character CHAR, use PROC to parse an object from the stream.
1821 If PROC is #f, remove any parsing procedure registered for CHAR.
1822
1823 The reader applies PROC to two arguments: CHAR and an input port.
1824
1825*** The new functions read-delimited and read-delimited! provide a
1826general mechanism for doing delimited input on streams.
1827
1828(read-delimited DELIMS [PORT HANDLE-DELIM])
1829 Read until we encounter one of the characters in DELIMS (a string),
1830 or end-of-file. PORT is the input port to read from; it defaults to
1831 the current input port. The HANDLE-DELIM parameter determines how
1832 the terminating character is handled; it should be one of the
1833 following symbols:
1834
1835 'trim omit delimiter from result
1836 'peek leave delimiter character in input stream
1837 'concat append delimiter character to returned value
1838 'split return a pair: (RESULT . TERMINATOR)
1839
1840 HANDLE-DELIM defaults to 'peek.
1841
1842(read-delimited! DELIMS BUF [PORT HANDLE-DELIM START END])
1843 A side-effecting variant of `read-delimited'.
1844
1845 The data is written into the string BUF at the indices in the
1846 half-open interval [START, END); the default interval is the whole
1847 string: START = 0 and END = (string-length BUF). The values of
1848 START and END must specify a well-defined interval in BUF, i.e.
1849 0 <= START <= END <= (string-length BUF).
1850
1851 It returns NBYTES, the number of bytes read. If the buffer filled
1852 up without a delimiter character being found, it returns #f. If the
1853 port is at EOF when the read starts, it returns the EOF object.
1854
1855 If an integer is returned (i.e., the read is successfully terminated
1856 by reading a delimiter character), then the HANDLE-DELIM parameter
1857 determines how to handle the terminating character. It is described
1858 above, and defaults to 'peek.
1859
1860(The descriptions of these functions were borrowed from the SCSH
1861manual, by Olin Shivers and Brian Carlstrom.)
1862
1863*** The `%read-delimited!' function is the primitive used to implement
1864`read-delimited' and `read-delimited!'.
1865
1866(%read-delimited! DELIMS BUF GOBBLE? [PORT START END])
1867
1868This returns a pair of values: (TERMINATOR . NUM-READ).
1869- TERMINATOR describes why the read was terminated. If it is a
1870 character or the eof object, then that is the value that terminated
1871 the read. If it is #f, the function filled the buffer without finding
1872 a delimiting character.
1873- NUM-READ is the number of characters read into BUF.
1874
1875If the read is successfully terminated by reading a delimiter
1876character, then the gobble? parameter determines what to do with the
1877terminating character. If true, the character is removed from the
1878input stream; if false, the character is left in the input stream
1879where a subsequent read operation will retrieve it. In either case,
1880the character is also the first value returned by the procedure call.
1881
1882(The descriptions of this function was borrowed from the SCSH manual,
1883by Olin Shivers and Brian Carlstrom.)
1884
1885*** The `read-line' and `read-line!' functions have changed; they now
1886trim the terminator by default; previously they appended it to the
1887returned string. For the old behavior, use (read-line PORT 'concat).
1888
1889*** The functions `uniform-array-read!' and `uniform-array-write!' now
1890take new optional START and END arguments, specifying the region of
1891the array to read and write.
1892
f348c807
JB
1893*** The `ungetc-char-ready?' function has been removed. We feel it's
1894inappropriate for an interface to expose implementation details this
1895way.
095936d2
JB
1896
1897** Changes to the Unix library and system call interface
1898
1899*** The new fcntl function provides access to the Unix `fcntl' system
1900call.
1901
1902(fcntl PORT COMMAND VALUE)
1903 Apply COMMAND to PORT's file descriptor, with VALUE as an argument.
1904 Values for COMMAND are:
1905
1906 F_DUPFD duplicate a file descriptor
1907 F_GETFD read the descriptor's close-on-exec flag
1908 F_SETFD set the descriptor's close-on-exec flag to VALUE
1909 F_GETFL read the descriptor's flags, as set on open
1910 F_SETFL set the descriptor's flags, as set on open to VALUE
1911 F_GETOWN return the process ID of a socket's owner, for SIGIO
1912 F_SETOWN set the process that owns a socket to VALUE, for SIGIO
1913 FD_CLOEXEC not sure what this is
1914
1915For details, see the documentation for the fcntl system call.
1916
1917*** The arguments to `select' have changed, for compatibility with
1918SCSH. The TIMEOUT parameter may now be non-integral, yielding the
1919expected behavior. The MILLISECONDS parameter has been changed to
1920MICROSECONDS, to more closely resemble the underlying system call.
1921The RVEC, WVEC, and EVEC arguments can now be vectors; the type of the
1922corresponding return set will be the same.
1923
1924*** The arguments to the `mknod' system call have changed. They are
1925now:
1926
1927(mknod PATH TYPE PERMS DEV)
1928 Create a new file (`node') in the file system. PATH is the name of
1929 the file to create. TYPE is the kind of file to create; it should
1930 be 'fifo, 'block-special, or 'char-special. PERMS specifies the
1931 permission bits to give the newly created file. If TYPE is
1932 'block-special or 'char-special, DEV specifies which device the
1933 special file refers to; its interpretation depends on the kind of
1934 special file being created.
1935
1936*** The `fork' function has been renamed to `primitive-fork', to avoid
1937clashing with various SCSH forks.
1938
1939*** The `recv' and `recvfrom' functions have been renamed to `recv!'
1940and `recvfrom!'. They no longer accept a size for a second argument;
1941you must pass a string to hold the received value. They no longer
1942return the buffer. Instead, `recv' returns the length of the message
1943received, and `recvfrom' returns a pair containing the packet's length
1944and originating address.
1945
1946*** The file descriptor datatype has been removed, as have the
1947`read-fd', `write-fd', `close', `lseek', and `dup' functions.
1948We plan to replace these functions with a SCSH-compatible interface.
1949
1950*** The `create' function has been removed; it's just a special case
1951of `open'.
1952
1953*** There are new functions to break down process termination status
1954values. In the descriptions below, STATUS is a value returned by
1955`waitpid'.
1956
1957(status:exit-val STATUS)
1958 If the child process exited normally, this function returns the exit
1959 code for the child process (i.e., the value passed to exit, or
1960 returned from main). If the child process did not exit normally,
1961 this function returns #f.
1962
1963(status:stop-sig STATUS)
1964 If the child process was suspended by a signal, this function
1965 returns the signal that suspended the child. Otherwise, it returns
1966 #f.
1967
1968(status:term-sig STATUS)
1969 If the child process terminated abnormally, this function returns
1970 the signal that terminated the child. Otherwise, this function
1971 returns false.
1972
1973POSIX promises that exactly one of these functions will return true on
1974a valid STATUS value.
1975
1976These functions are compatible with SCSH.
1977
1978*** There are new accessors and setters for the broken-out time vectors
48d224d7
JB
1979returned by `localtime', `gmtime', and that ilk. They are:
1980
1981 Component Accessor Setter
1982 ========================= ============ ============
1983 seconds tm:sec set-tm:sec
1984 minutes tm:min set-tm:min
1985 hours tm:hour set-tm:hour
1986 day of the month tm:mday set-tm:mday
1987 month tm:mon set-tm:mon
1988 year tm:year set-tm:year
1989 day of the week tm:wday set-tm:wday
1990 day in the year tm:yday set-tm:yday
1991 daylight saving time tm:isdst set-tm:isdst
1992 GMT offset, seconds tm:gmtoff set-tm:gmtoff
1993 name of time zone tm:zone set-tm:zone
1994
095936d2
JB
1995*** There are new accessors for the vectors returned by `uname',
1996describing the host system:
48d224d7
JB
1997
1998 Component Accessor
1999 ============================================== ================
2000 name of the operating system implementation utsname:sysname
2001 network name of this machine utsname:nodename
2002 release level of the operating system utsname:release
2003 version level of the operating system utsname:version
2004 machine hardware platform utsname:machine
2005
095936d2
JB
2006*** There are new accessors for the vectors returned by `getpw',
2007`getpwnam', `getpwuid', and `getpwent', describing entries from the
2008system's user database:
2009
2010 Component Accessor
2011 ====================== =================
2012 user name passwd:name
2013 user password passwd:passwd
2014 user id passwd:uid
2015 group id passwd:gid
2016 real name passwd:gecos
2017 home directory passwd:dir
2018 shell program passwd:shell
2019
2020*** There are new accessors for the vectors returned by `getgr',
2021`getgrnam', `getgrgid', and `getgrent', describing entries from the
2022system's group database:
2023
2024 Component Accessor
2025 ======================= ============
2026 group name group:name
2027 group password group:passwd
2028 group id group:gid
2029 group members group:mem
2030
2031*** There are new accessors for the vectors returned by `gethost',
2032`gethostbyaddr', `gethostbyname', and `gethostent', describing
2033internet hosts:
2034
2035 Component Accessor
2036 ========================= ===============
2037 official name of host hostent:name
2038 alias list hostent:aliases
2039 host address type hostent:addrtype
2040 length of address hostent:length
2041 list of addresses hostent:addr-list
2042
2043*** There are new accessors for the vectors returned by `getnet',
2044`getnetbyaddr', `getnetbyname', and `getnetent', describing internet
2045networks:
2046
2047 Component Accessor
2048 ========================= ===============
2049 official name of net netent:name
2050 alias list netent:aliases
2051 net number type netent:addrtype
2052 net number netent:net
2053
2054*** There are new accessors for the vectors returned by `getproto',
2055`getprotobyname', `getprotobynumber', and `getprotoent', describing
2056internet protocols:
2057
2058 Component Accessor
2059 ========================= ===============
2060 official protocol name protoent:name
2061 alias list protoent:aliases
2062 protocol number protoent:proto
2063
2064*** There are new accessors for the vectors returned by `getserv',
2065`getservbyname', `getservbyport', and `getservent', describing
2066internet protocols:
2067
2068 Component Accessor
2069 ========================= ===============
2070 official service name servent:name
2071 alias list servent:aliases
2072 port number servent:port
2073 protocol to use servent:proto
2074
2075*** There are new accessors for the sockaddr structures returned by
2076`accept', `getsockname', `getpeername', `recvfrom!':
2077
2078 Component Accessor
2079 ======================================== ===============
2080 address format (`family') sockaddr:fam
2081 path, for file domain addresses sockaddr:path
2082 address, for internet domain addresses sockaddr:addr
2083 TCP or UDP port, for internet sockaddr:port
2084
2085*** The `getpwent', `getgrent', `gethostent', `getnetent',
2086`getprotoent', and `getservent' functions now return #f at the end of
2087the user database. (They used to throw an exception.)
2088
2089Note that calling MUMBLEent function is equivalent to calling the
2090corresponding MUMBLE function with no arguments.
2091
2092*** The `setpwent', `setgrent', `sethostent', `setnetent',
2093`setprotoent', and `setservent' routines now take no arguments.
2094
2095*** The `gethost', `getproto', `getnet', and `getserv' functions now
2096provide more useful information when they throw an exception.
2097
2098*** The `lnaof' function has been renamed to `inet-lnaof'.
2099
2100*** Guile now claims to have the `current-time' feature.
2101
2102*** The `mktime' function now takes an optional second argument ZONE,
2103giving the time zone to use for the conversion. ZONE should be a
2104string, in the same format as expected for the "TZ" environment variable.
2105
2106*** The `strptime' function now returns a pair (TIME . COUNT), where
2107TIME is the parsed time as a vector, and COUNT is the number of
2108characters from the string left unparsed. This function used to
2109return the remaining characters as a string.
2110
2111*** The `gettimeofday' function has replaced the old `time+ticks' function.
2112The return value is now (SECONDS . MICROSECONDS); the fractional
2113component is no longer expressed in "ticks".
2114
2115*** The `ticks/sec' constant has been removed, in light of the above change.
6685dc83 2116
ea00ecba
MG
2117* Changes to the gh_ interface
2118
2119** gh_eval_str() now returns an SCM object which is the result of the
2120evaluation
2121
aaef0d2a
MG
2122** gh_scm2str() now copies the Scheme data to a caller-provided C
2123array
2124
2125** gh_scm2newstr() now makes a C array, copies the Scheme data to it,
2126and returns the array
2127
2128** gh_scm2str0() is gone: there is no need to distinguish
2129null-terminated from non-null-terminated, since gh_scm2newstr() allows
2130the user to interpret the data both ways.
2131
f3b1485f
JB
2132* Changes to the scm_ interface
2133
095936d2
JB
2134** The new function scm_symbol_value0 provides an easy way to get a
2135symbol's value from C code:
2136
2137SCM scm_symbol_value0 (char *NAME)
2138 Return the value of the symbol named by the null-terminated string
2139 NAME in the current module. If the symbol named NAME is unbound in
2140 the current module, return SCM_UNDEFINED.
2141
2142** The new function scm_sysintern0 creates new top-level variables,
2143without assigning them a value.
2144
2145SCM scm_sysintern0 (char *NAME)
2146 Create a new Scheme top-level variable named NAME. NAME is a
2147 null-terminated string. Return the variable's value cell.
2148
2149** The function scm_internal_catch is the guts of catch. It handles
2150all the mechanics of setting up a catch target, invoking the catch
2151body, and perhaps invoking the handler if the body does a throw.
2152
2153The function is designed to be usable from C code, but is general
2154enough to implement all the semantics Guile Scheme expects from throw.
2155
2156TAG is the catch tag. Typically, this is a symbol, but this function
2157doesn't actually care about that.
2158
2159BODY is a pointer to a C function which runs the body of the catch;
2160this is the code you can throw from. We call it like this:
2161 BODY (BODY_DATA, JMPBUF)
2162where:
2163 BODY_DATA is just the BODY_DATA argument we received; we pass it
2164 through to BODY as its first argument. The caller can make
2165 BODY_DATA point to anything useful that BODY might need.
2166 JMPBUF is the Scheme jmpbuf object corresponding to this catch,
2167 which we have just created and initialized.
2168
2169HANDLER is a pointer to a C function to deal with a throw to TAG,
2170should one occur. We call it like this:
2171 HANDLER (HANDLER_DATA, THROWN_TAG, THROW_ARGS)
2172where
2173 HANDLER_DATA is the HANDLER_DATA argument we recevied; it's the
2174 same idea as BODY_DATA above.
2175 THROWN_TAG is the tag that the user threw to; usually this is
2176 TAG, but it could be something else if TAG was #t (i.e., a
2177 catch-all), or the user threw to a jmpbuf.
2178 THROW_ARGS is the list of arguments the user passed to the THROW
2179 function.
2180
2181BODY_DATA is just a pointer we pass through to BODY. HANDLER_DATA
2182is just a pointer we pass through to HANDLER. We don't actually
2183use either of those pointers otherwise ourselves. The idea is
2184that, if our caller wants to communicate something to BODY or
2185HANDLER, it can pass a pointer to it as MUMBLE_DATA, which BODY and
2186HANDLER can then use. Think of it as a way to make BODY and
2187HANDLER closures, not just functions; MUMBLE_DATA points to the
2188enclosed variables.
2189
2190Of course, it's up to the caller to make sure that any data a
2191MUMBLE_DATA needs is protected from GC. A common way to do this is
2192to make MUMBLE_DATA a pointer to data stored in an automatic
2193structure variable; since the collector must scan the stack for
2194references anyway, this assures that any references in MUMBLE_DATA
2195will be found.
2196
2197** The new function scm_internal_lazy_catch is exactly like
2198scm_internal_catch, except:
2199
2200- It does not unwind the stack (this is the major difference).
2201- If handler returns, its value is returned from the throw.
2202- BODY always receives #f as its JMPBUF argument (since there's no
2203 jmpbuf associated with a lazy catch, because we don't unwind the
2204 stack.)
2205
2206** scm_body_thunk is a new body function you can pass to
2207scm_internal_catch if you want the body to be like Scheme's `catch'
2208--- a thunk, or a function of one argument if the tag is #f.
2209
2210BODY_DATA is a pointer to a scm_body_thunk_data structure, which
2211contains the Scheme procedure to invoke as the body, and the tag
2212we're catching. If the tag is #f, then we pass JMPBUF (created by
2213scm_internal_catch) to the body procedure; otherwise, the body gets
2214no arguments.
2215
2216** scm_handle_by_proc is a new handler function you can pass to
2217scm_internal_catch if you want the handler to act like Scheme's catch
2218--- call a procedure with the tag and the throw arguments.
2219
2220If the user does a throw to this catch, this function runs a handler
2221procedure written in Scheme. HANDLER_DATA is a pointer to an SCM
2222variable holding the Scheme procedure object to invoke. It ought to
2223be a pointer to an automatic variable (i.e., one living on the stack),
2224or the procedure object should be otherwise protected from GC.
2225
2226** scm_handle_by_message is a new handler function to use with
2227`scm_internal_catch' if you want Guile to print a message and die.
2228It's useful for dealing with throws to uncaught keys at the top level.
2229
2230HANDLER_DATA, if non-zero, is assumed to be a char * pointing to a
2231message header to print; if zero, we use "guile" instead. That
2232text is followed by a colon, then the message described by ARGS.
2233
2234** The return type of scm_boot_guile is now void; the function does
2235not return a value, and indeed, never returns at all.
2236
f3b1485f
JB
2237** The new function scm_shell makes it easy for user applications to
2238process command-line arguments in a way that is compatible with the
2239stand-alone guile interpreter (which is in turn compatible with SCSH,
2240the Scheme shell).
2241
2242To use the scm_shell function, first initialize any guile modules
2243linked into your application, and then call scm_shell with the values
7ed46dc8 2244of ARGC and ARGV your `main' function received. scm_shell will add
f3b1485f
JB
2245any SCSH-style meta-arguments from the top of the script file to the
2246argument vector, and then process the command-line arguments. This
2247generally means loading a script file or starting up an interactive
2248command interpreter. For details, see "Changes to the stand-alone
2249interpreter" above.
2250
095936d2
JB
2251** The new functions scm_get_meta_args and scm_count_argv help you
2252implement the SCSH-style meta-argument, `\'.
2253
2254char **scm_get_meta_args (int ARGC, char **ARGV)
2255 If the second element of ARGV is a string consisting of a single
2256 backslash character (i.e. "\\" in Scheme notation), open the file
2257 named by the following argument, parse arguments from it, and return
2258 the spliced command line. The returned array is terminated by a
2259 null pointer.
2260
2261 For details of argument parsing, see above, under "guile now accepts
2262 command-line arguments compatible with SCSH..."
2263
2264int scm_count_argv (char **ARGV)
2265 Count the arguments in ARGV, assuming it is terminated by a null
2266 pointer.
2267
2268For an example of how these functions might be used, see the source
2269code for the function scm_shell in libguile/script.c.
2270
2271You will usually want to use scm_shell instead of calling this
2272function yourself.
2273
2274** The new function scm_compile_shell_switches turns an array of
2275command-line arguments into Scheme code to carry out the actions they
2276describe. Given ARGC and ARGV, it returns a Scheme expression to
2277evaluate, and calls scm_set_program_arguments to make any remaining
2278command-line arguments available to the Scheme code. For example,
2279given the following arguments:
2280
2281 -e main -s ekko a speckled gecko
2282
2283scm_set_program_arguments will return the following expression:
2284
2285 (begin (load "ekko") (main (command-line)) (quit))
2286
2287You will usually want to use scm_shell instead of calling this
2288function yourself.
2289
2290** The function scm_shell_usage prints a usage message appropriate for
2291an interpreter that uses scm_compile_shell_switches to handle its
2292command-line arguments.
2293
2294void scm_shell_usage (int FATAL, char *MESSAGE)
2295 Print a usage message to the standard error output. If MESSAGE is
2296 non-zero, write it before the usage message, followed by a newline.
2297 If FATAL is non-zero, exit the process, using FATAL as the
2298 termination status. (If you want to be compatible with Guile,
2299 always use 1 as the exit status when terminating due to command-line
2300 usage problems.)
2301
2302You will usually want to use scm_shell instead of calling this
2303function yourself.
48d224d7
JB
2304
2305** scm_eval_0str now returns SCM_UNSPECIFIED if the string contains no
095936d2
JB
2306expressions. It used to return SCM_EOL. Earth-shattering.
2307
2308** The macros for declaring scheme objects in C code have been
2309rearranged slightly. They are now:
2310
2311SCM_SYMBOL (C_NAME, SCHEME_NAME)
2312 Declare a static SCM variable named C_NAME, and initialize it to
2313 point to the Scheme symbol whose name is SCHEME_NAME. C_NAME should
2314 be a C identifier, and SCHEME_NAME should be a C string.
2315
2316SCM_GLOBAL_SYMBOL (C_NAME, SCHEME_NAME)
2317 Just like SCM_SYMBOL, but make C_NAME globally visible.
2318
2319SCM_VCELL (C_NAME, SCHEME_NAME)
2320 Create a global variable at the Scheme level named SCHEME_NAME.
2321 Declare a static SCM variable named C_NAME, and initialize it to
2322 point to the Scheme variable's value cell.
2323
2324SCM_GLOBAL_VCELL (C_NAME, SCHEME_NAME)
2325 Just like SCM_VCELL, but make C_NAME globally visible.
2326
2327The `guile-snarf' script writes initialization code for these macros
2328to its standard output, given C source code as input.
2329
2330The SCM_GLOBAL macro is gone.
2331
2332** The scm_read_line and scm_read_line_x functions have been replaced
2333by Scheme code based on the %read-delimited! procedure (known to C
2334code as scm_read_delimited_x). See its description above for more
2335information.
48d224d7 2336
095936d2
JB
2337** The function scm_sys_open has been renamed to scm_open. It now
2338returns a port instead of an FD object.
ea00ecba 2339
095936d2
JB
2340* The dynamic linking support has changed. For more information, see
2341libguile/DYNAMIC-LINKING.
ea00ecba 2342
f7b47737
JB
2343\f
2344Guile 1.0b3
3065a62a 2345
f3b1485f
JB
2346User-visible changes from Thursday, September 5, 1996 until Guile 1.0
2347(Sun 5 Jan 1997):
3065a62a 2348
4b521edb 2349* Changes to the 'guile' program:
3065a62a 2350
4b521edb
JB
2351** Guile now loads some new files when it starts up. Guile first
2352searches the load path for init.scm, and loads it if found. Then, if
2353Guile is not being used to execute a script, and the user's home
2354directory contains a file named `.guile', Guile loads that.
c6486f8a 2355
4b521edb 2356** You can now use Guile as a shell script interpreter.
3065a62a
JB
2357
2358To paraphrase the SCSH manual:
2359
2360 When Unix tries to execute an executable file whose first two
2361 characters are the `#!', it treats the file not as machine code to
2362 be directly executed by the native processor, but as source code
2363 to be executed by some interpreter. The interpreter to use is
2364 specified immediately after the #! sequence on the first line of
2365 the source file. The kernel reads in the name of the interpreter,
2366 and executes that instead. It passes the interpreter the source
2367 filename as its first argument, with the original arguments
2368 following. Consult the Unix man page for the `exec' system call
2369 for more information.
2370
1a1945be
JB
2371Now you can use Guile as an interpreter, using a mechanism which is a
2372compatible subset of that provided by SCSH.
2373
3065a62a
JB
2374Guile now recognizes a '-s' command line switch, whose argument is the
2375name of a file of Scheme code to load. It also treats the two
2376characters `#!' as the start of a comment, terminated by `!#'. Thus,
2377to make a file of Scheme code directly executable by Unix, insert the
2378following two lines at the top of the file:
2379
2380#!/usr/local/bin/guile -s
2381!#
2382
2383Guile treats the argument of the `-s' command-line switch as the name
2384of a file of Scheme code to load, and treats the sequence `#!' as the
2385start of a block comment, terminated by `!#'.
2386
2387For example, here's a version of 'echo' written in Scheme:
2388
2389#!/usr/local/bin/guile -s
2390!#
2391(let loop ((args (cdr (program-arguments))))
2392 (if (pair? args)
2393 (begin
2394 (display (car args))
2395 (if (pair? (cdr args))
2396 (display " "))
2397 (loop (cdr args)))))
2398(newline)
2399
2400Why does `#!' start a block comment terminated by `!#', instead of the
2401end of the line? That is the notation SCSH uses, and although we
2402don't yet support the other SCSH features that motivate that choice,
2403we would like to be backward-compatible with any existing Guile
3763761c
JB
2404scripts once we do. Furthermore, if the path to Guile on your system
2405is too long for your kernel, you can start the script with this
2406horrible hack:
2407
2408#!/bin/sh
2409exec /really/long/path/to/guile -s "$0" ${1+"$@"}
2410!#
3065a62a
JB
2411
2412Note that some very old Unix systems don't support the `#!' syntax.
2413
c6486f8a 2414
4b521edb 2415** You can now run Guile without installing it.
6685dc83
JB
2416
2417Previous versions of the interactive Guile interpreter (`guile')
2418couldn't start up unless Guile's Scheme library had been installed;
2419they used the value of the environment variable `SCHEME_LOAD_PATH'
2420later on in the startup process, but not to find the startup code
2421itself. Now Guile uses `SCHEME_LOAD_PATH' in all searches for Scheme
2422code.
2423
2424To run Guile without installing it, build it in the normal way, and
2425then set the environment variable `SCHEME_LOAD_PATH' to a
2426colon-separated list of directories, including the top-level directory
2427of the Guile sources. For example, if you unpacked Guile so that the
2428full filename of this NEWS file is /home/jimb/guile-1.0b3/NEWS, then
2429you might say
2430
2431 export SCHEME_LOAD_PATH=/home/jimb/my-scheme:/home/jimb/guile-1.0b3
2432
c6486f8a 2433
4b521edb
JB
2434** Guile's read-eval-print loop no longer prints #<unspecified>
2435results. If the user wants to see this, she can evaluate the
2436expression (assert-repl-print-unspecified #t), perhaps in her startup
48d224d7 2437file.
6685dc83 2438
4b521edb
JB
2439** Guile no longer shows backtraces by default when an error occurs;
2440however, it does display a message saying how to get one, and how to
2441request that they be displayed by default. After an error, evaluate
2442 (backtrace)
2443to see a backtrace, and
2444 (debug-enable 'backtrace)
2445to see them by default.
6685dc83 2446
6685dc83 2447
d9fb83d9 2448
4b521edb
JB
2449* Changes to Guile Scheme:
2450
2451** Guile now distinguishes between #f and the empty list.
2452
2453This is for compatibility with the IEEE standard, the (possibly)
2454upcoming Revised^5 Report on Scheme, and many extant Scheme
2455implementations.
2456
2457Guile used to have #f and '() denote the same object, to make Scheme's
2458type system more compatible with Emacs Lisp's. However, the change
2459caused too much trouble for Scheme programmers, and we found another
2460way to reconcile Emacs Lisp with Scheme that didn't require this.
2461
2462
2463** Guile's delq, delv, delete functions, and their destructive
c6486f8a
JB
2464counterparts, delq!, delv!, and delete!, now remove all matching
2465elements from the list, not just the first. This matches the behavior
2466of the corresponding Emacs Lisp functions, and (I believe) the Maclisp
2467functions which inspired them.
2468
2469I recognize that this change may break code in subtle ways, but it
2470seems best to make the change before the FSF's first Guile release,
2471rather than after.
2472
2473
4b521edb 2474** The compiled-library-path function has been deleted from libguile.
6685dc83 2475
4b521edb 2476** The facilities for loading Scheme source files have changed.
c6486f8a 2477
4b521edb 2478*** The variable %load-path now tells Guile which directories to search
6685dc83
JB
2479for Scheme code. Its value is a list of strings, each of which names
2480a directory.
2481
4b521edb
JB
2482*** The variable %load-extensions now tells Guile which extensions to
2483try appending to a filename when searching the load path. Its value
2484is a list of strings. Its default value is ("" ".scm").
2485
2486*** (%search-load-path FILENAME) searches the directories listed in the
2487value of the %load-path variable for a Scheme file named FILENAME,
2488with all the extensions listed in %load-extensions. If it finds a
2489match, then it returns its full filename. If FILENAME is absolute, it
2490returns it unchanged. Otherwise, it returns #f.
6685dc83 2491
4b521edb
JB
2492%search-load-path will not return matches that refer to directories.
2493
2494*** (primitive-load FILENAME :optional CASE-INSENSITIVE-P SHARP)
2495uses %seach-load-path to find a file named FILENAME, and loads it if
2496it finds it. If it can't read FILENAME for any reason, it throws an
2497error.
6685dc83
JB
2498
2499The arguments CASE-INSENSITIVE-P and SHARP are interpreted as by the
4b521edb
JB
2500`read' function.
2501
2502*** load uses the same searching semantics as primitive-load.
2503
2504*** The functions %try-load, try-load-with-path, %load, load-with-path,
2505basic-try-load-with-path, basic-load-with-path, try-load-module-with-
2506path, and load-module-with-path have been deleted. The functions
2507above should serve their purposes.
2508
2509*** If the value of the variable %load-hook is a procedure,
2510`primitive-load' applies its value to the name of the file being
2511loaded (without the load path directory name prepended). If its value
2512is #f, it is ignored. Otherwise, an error occurs.
2513
2514This is mostly useful for printing load notification messages.
2515
2516
2517** The function `eval!' is no longer accessible from the scheme level.
2518We can't allow operations which introduce glocs into the scheme level,
2519because Guile's type system can't handle these as data. Use `eval' or
2520`read-and-eval!' (see below) as replacement.
2521
2522** The new function read-and-eval! reads an expression from PORT,
2523evaluates it, and returns the result. This is more efficient than
2524simply calling `read' and `eval', since it is not necessary to make a
2525copy of the expression for the evaluator to munge.
2526
2527Its optional arguments CASE_INSENSITIVE_P and SHARP are interpreted as
2528for the `read' function.
2529
2530
2531** The function `int?' has been removed; its definition was identical
2532to that of `integer?'.
2533
2534** The functions `<?', `<?', `<=?', `=?', `>?', and `>=?'. Code should
2535use the R4RS names for these functions.
2536
2537** The function object-properties no longer returns the hash handle;
2538it simply returns the object's property list.
2539
2540** Many functions have been changed to throw errors, instead of
2541returning #f on failure. The point of providing exception handling in
2542the language is to simplify the logic of user code, but this is less
2543useful if Guile's primitives don't throw exceptions.
2544
2545** The function `fileno' has been renamed from `%fileno'.
2546
2547** The function primitive-mode->fdes returns #t or #f now, not 1 or 0.
2548
2549
2550* Changes to Guile's C interface:
2551
2552** The library's initialization procedure has been simplified.
2553scm_boot_guile now has the prototype:
2554
2555void scm_boot_guile (int ARGC,
2556 char **ARGV,
2557 void (*main_func) (),
2558 void *closure);
2559
2560scm_boot_guile calls MAIN_FUNC, passing it CLOSURE, ARGC, and ARGV.
2561MAIN_FUNC should do all the work of the program (initializing other
2562packages, reading user input, etc.) before returning. When MAIN_FUNC
2563returns, call exit (0); this function never returns. If you want some
2564other exit value, MAIN_FUNC may call exit itself.
2565
2566scm_boot_guile arranges for program-arguments to return the strings
2567given by ARGC and ARGV. If MAIN_FUNC modifies ARGC/ARGV, should call
2568scm_set_program_arguments with the final list, so Scheme code will
2569know which arguments have been processed.
2570
2571scm_boot_guile establishes a catch-all catch handler which prints an
2572error message and exits the process. This means that Guile exits in a
2573coherent way when system errors occur and the user isn't prepared to
2574handle it. If the user doesn't like this behavior, they can establish
2575their own universal catcher in MAIN_FUNC to shadow this one.
2576
2577Why must the caller do all the real work from MAIN_FUNC? The garbage
2578collector assumes that all local variables of type SCM will be above
2579scm_boot_guile's stack frame on the stack. If you try to manipulate
2580SCM values after this function returns, it's the luck of the draw
2581whether the GC will be able to find the objects you allocate. So,
2582scm_boot_guile function exits, rather than returning, to discourage
2583people from making that mistake.
2584
2585The IN, OUT, and ERR arguments were removed; there are other
2586convenient ways to override these when desired.
2587
2588The RESULT argument was deleted; this function should never return.
2589
2590The BOOT_CMD argument was deleted; the MAIN_FUNC argument is more
2591general.
2592
2593
2594** Guile's header files should no longer conflict with your system's
2595header files.
2596
2597In order to compile code which #included <libguile.h>, previous
2598versions of Guile required you to add a directory containing all the
2599Guile header files to your #include path. This was a problem, since
2600Guile's header files have names which conflict with many systems'
2601header files.
2602
2603Now only <libguile.h> need appear in your #include path; you must
2604refer to all Guile's other header files as <libguile/mumble.h>.
2605Guile's installation procedure puts libguile.h in $(includedir), and
2606the rest in $(includedir)/libguile.
2607
2608
2609** Two new C functions, scm_protect_object and scm_unprotect_object,
2610have been added to the Guile library.
2611
2612scm_protect_object (OBJ) protects OBJ from the garbage collector.
2613OBJ will not be freed, even if all other references are dropped,
2614until someone does scm_unprotect_object (OBJ). Both functions
2615return OBJ.
2616
2617Note that calls to scm_protect_object do not nest. You can call
2618scm_protect_object any number of times on a given object, and the
2619next call to scm_unprotect_object will unprotect it completely.
2620
2621Basically, scm_protect_object and scm_unprotect_object just
2622maintain a list of references to things. Since the GC knows about
2623this list, all objects it mentions stay alive. scm_protect_object
2624adds its argument to the list; scm_unprotect_object remove its
2625argument from the list.
2626
2627
2628** scm_eval_0str now returns the value of the last expression
2629evaluated.
2630
2631** The new function scm_read_0str reads an s-expression from a
2632null-terminated string, and returns it.
2633
2634** The new function `scm_stdio_to_port' converts a STDIO file pointer
2635to a Scheme port object.
2636
2637** The new function `scm_set_program_arguments' allows C code to set
e80c8fea 2638the value returned by the Scheme `program-arguments' function.
6685dc83 2639
6685dc83 2640\f
1a1945be
JB
2641Older changes:
2642
2643* Guile no longer includes sophisticated Tcl/Tk support.
2644
2645The old Tcl/Tk support was unsatisfying to us, because it required the
2646user to link against the Tcl library, as well as Tk and Guile. The
2647interface was also un-lispy, in that it preserved Tcl/Tk's practice of
2648referring to widgets by names, rather than exporting widgets to Scheme
2649code as a special datatype.
2650
2651In the Usenix Tk Developer's Workshop held in July 1996, the Tcl/Tk
2652maintainers described some very interesting changes in progress to the
2653Tcl/Tk internals, which would facilitate clean interfaces between lone
2654Tk and other interpreters --- even for garbage-collected languages
2655like Scheme. They expected the new Tk to be publicly available in the
2656fall of 1996.
2657
2658Since it seems that Guile might soon have a new, cleaner interface to
2659lone Tk, and that the old Guile/Tk glue code would probably need to be
2660completely rewritten, we (Jim Blandy and Richard Stallman) have
2661decided not to support the old code. We'll spend the time instead on
2662a good interface to the newer Tk, as soon as it is available.
5c54da76 2663
8512dea6 2664Until then, gtcltk-lib provides trivial, low-maintenance functionality.
deb95d71 2665
5c54da76
JB
2666\f
2667Copyright information:
2668
ea00ecba 2669Copyright (C) 1996,1997 Free Software Foundation, Inc.
5c54da76
JB
2670
2671 Permission is granted to anyone to make or distribute verbatim copies
2672 of this document as received, in any medium, provided that the
2673 copyright notice and this permission notice are preserved,
2674 thus giving the recipient permission to redistribute in turn.
2675
2676 Permission is granted to distribute modified versions
2677 of this document, or of portions of it,
2678 under the above conditions, provided also that they
2679 carry prominent notices stating who last changed them.
2680
48d224d7
JB
2681\f
2682Local variables:
2683mode: outline
2684paragraph-separate: "[ \f]*$"
2685end:
2686