1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-14 17:50:22 +02:00
Commit graph

916 commits

Author SHA1 Message Date
Marius Vollmer
7af4defed1 *** empty log message *** 2001-02-13 01:09:25 +00:00
Marius Vollmer
645e38d9ac * boot-9.scm (define-public): Removed spurious call to
`interaction-evironment'.
(define-public, defmacro-public): Use `export' instead of explicit
module magic.
(eval-when): New macro.
(define-module, use-modules, use-syntax, export): Use it to
restrict the use of these forms to the top level.
(define-public, defmacro-public): Only export binding when on
top-level.
(process-define-module): Call `set-current-module' with the
defined module.
(define-module): Simply call `process-define-module' without any
fuss (but only on top-level).
(named-module-use!): New function.
(top-repl): Do not use `define-module'.  Use equivalent low-level
means instead.
2001-02-13 01:07:45 +00:00
Marius Vollmer
ec9709f00f *** empty log message *** 2001-02-11 18:17:56 +00:00
Marius Vollmer
22b3076671 * boot-9.scm (scm-style-repl): Use `primitive-eval' instead of
`eval'.
(define-public): Do not use `eval'.
2001-02-11 18:16:58 +00:00
Marius Vollmer
548728ea6d *** empty log message *** 2001-02-08 18:52:05 +00:00
Marius Vollmer
6a721afbc8 * and-let-star-compat.scm: Display the warning to the
`current-error-port'.
2001-02-08 18:39:08 +00:00
Marius Vollmer
93a6e9c4a7 * and-let-star.scm, and-let*.scm: Renamed `and-let*.scm' to
`and-let-star.scm'.  Updated module name as well.
* and-let-star-compat.scm: New file, installed as `and-let*.scm'.
* Makefile.am (ice9_sources): Replaced "and-let*.scm" with
"and-let-star.scm".
(install-data-local): Install "and-let-star-compat.scm" as
"and-let*.scm", ignoring errors.
(EXTRA_DIST): Distribute `and-let-star-compat.scm'.
2001-02-04 18:22:18 +00:00
Marius Vollmer
fbf0c8c7b1 *** empty log message *** 2001-02-04 18:21:38 +00:00
Dirk Herrmann
e9bab9df3d * Make readline run-time options accessible. 2001-01-26 16:58:48 +00:00
Gary Houston
6d36532c1c * boot-9.scm: don't import (ice-9 rdelim) here. it's done
in C for now.
	* rdelim.scm: export the C primitives too.
	* documentation.scm: use (ice-9 rdelim).

	* filesys.c (scm_link): docstring fix.
	* fports.h (scm_setfileno): obsolete declaration removed.
	* posix.c: bogus popen declaration removed.

	* rdelim.c: new file, split from ioext.c with new proc
	scm_init_rdelim.
	* rdelim.h: new file.
	* Makefile.am: add rdelim.c and related files.
	* init.c: call scm_init_rdelim.  include rdelim.h.
2001-01-24 21:45:09 +00:00
Gary Houston
9d7748147e * rdelim.scm: new file implementing module (ice-9 rdelim).
* ice-9.scm (scm-line-incrementors read-line! read-delimited!
	read-delimited read-line): moved to rdelim.scm.
	scm-line-incrementors is not exported.
	* boot-9.scm: import (ice-9 rdelim) for backwards compatibility,
	for now.
	* lineio.scm: use module (ice-9 rdelim).
	* Makefile.am (ice9_sources): add rdelim.scm.
2001-01-21 22:11:29 +00:00
Dirk Herrmann
1746633025 * Remove calls to symbol-interned? which have always been useless, but now
have become wrong since symbols and bindings are separated.
2000-12-29 15:47:16 +00:00
Dirk Herrmann
10764e3c34 * Fixed the last patch (which was uncomplete). Thanks to Dale P. Smith. 2000-12-13 09:44:28 +00:00
Dirk Herrmann
b52e071bc5 * The creation of symbols and bindings are two separate issues now. 2000-12-12 18:36:35 +00:00
Dirk Herrmann
6b098fecdc * Lookup 'use-emacs-interface in the-root-module. 2000-12-12 18:10:56 +00:00
Neil Jerram
40fa5c3f3a * Fix spelling mistake. 2000-12-08 15:39:10 +00:00
Dirk Herrmann
4e15fee80f * Don't use make-shared-substring any more. 2000-11-28 13:40:40 +00:00
Gary Houston
3923fa6d06 * boot-9.scm: values?, get-values, values, call-with-values:
removed.  values and call-with-values are now primitives and
	the other two were only exported by accident.  don't define
	*values-rtd* record type or handle multiple values in
	scm-style-repl.
2000-11-26 18:28:57 +00:00
Gary Houston
a9c632a2f3 2000-11-07 Gary Houston <ghouston@arglist.com>
* popen.scm (open-output-pipe): added docstrings for open-input-pipe
	and open-output-pipe.
2000-11-09 22:46:07 +00:00
Gary Houston
8ccc61e837 2000-11-06 Gary Houston <ghouston@arglist.com>
* popen.scm (open-process): bug fix: don't use
	close-all-ports-except to close ports in the child process, since
	it causes port buffers to be flushed.  they may be flushed again
	in the parent, causing duplicate output.  use a more elaborate
	method for setting up the child descriptors (thanks to David
	Pirotte for the bug report).
	standard file descriptors 0, 1, 2 in the child process
	are now set up from current-input-port etc., where possible.
2000-11-07 21:36:42 +00:00
Dirk Herrmann
f304437e70 * string=? requires a string argument. Thanks to Dale P. Smith. 2000-11-01 09:37:30 +00:00
Neil Jerram
b4ad0dda06 * Fix typos in optargs.scm. 2000-10-15 22:33:06 +00:00
Dirk Herrmann
4adc302894 * Fixed apropos: regexp-exec does not accept symbol arguments any more. 2000-10-10 07:32:45 +00:00
Gary Houston
deaecea77d * posix.scm (setgrent): pass #t, not #f. thanks to
Jacques A. Vidrine.
2000-09-30 15:53:36 +00:00
Neil Jerram
db611983cf * Enhancements to online help presentation. 2000-09-29 20:39:29 +00:00
Marius Vollmer
f7b0a8d1c6 *** empty log message *** 2000-09-20 21:06:06 +00:00
Mikael Djurfeldt
82b3d7781f * boot-9.scm: Removed comment. (Thanks to Brad Knotwell.) 2000-09-20 16:50:18 +00:00
Dirk Herrmann
a5b265e3f9 * Eliminate use of low-level symbol property function. 2000-09-12 10:34:09 +00:00
Mikael Djurfeldt
477c9802af Regenerated 2000-09-12 06:04:06 +00:00
Mikael Djurfeldt
0eee446642 *** empty log message *** 2000-09-12 06:03:37 +00:00
Mikael Djurfeldt
2a6ba08d36 * psyntax.ss (build-lexical-var): Use gentemp instead of gensym;
Convert first argument to a string.
2000-09-12 06:03:22 +00:00
Mikael Djurfeldt
a86869dc59 * oldprint.scm (print-table-add!): Ditto. 2000-09-12 05:45:48 +00:00
Mikael Djurfeldt
b68c1eed74 * calling.scm (excursion-function-syntax,
getter-and-setter-syntax,
delegating-getter-and-setter-syntax): Call gensym with string
argument.  (Thanks to Dale P. Smith.)
2000-09-12 05:45:37 +00:00
Mikael Djurfeldt
484cd65682 * boot-9.scm (gentemp): Moved to symbols.c. 2000-09-12 05:45:26 +00:00
Marius Vollmer
8c142820ea *** empty log message *** 2000-09-03 20:20:58 +00:00
Marius Vollmer
2d55a919c3 * boot-9.scm (make-object-property): New function. 2000-09-03 20:20:19 +00:00
Mikael Djurfeldt
0745d3872f *** empty log message *** 2000-08-27 03:21:35 +00:00
Mikael Djurfeldt
06f0414c85 * boot-9.scm (make-record-type): Use `string-append' instead of
`symbol-append'.
(symbol-append): Map `symbol->string' on
args.
(obarray-symbol-append, obarray-gensym): Simply removed.  I don't
think I'll announce this in NEWS even.  One of the functions never
even worked...  /mdj.
(find-and-link-dynamic-module, keyword->symbol): Use
`symbol->string'.
(try-module-autoload, process-define-module): Rewrote using R5RS
semantics.
2000-08-27 03:20:19 +00:00
Mikael Djurfeldt
2822e61232 Regenerated 2000-08-24 00:16:56 +00:00
Mikael Djurfeldt
9f174131de *** empty log message *** 2000-08-24 00:16:36 +00:00
Mikael Djurfeldt
fde75b7c8e * psyntax.ss (set!): Added generalized set! support to core syntax
form set!.
2000-08-24 00:16:17 +00:00
Marius Vollmer
5aba8e27ab *** empty log message *** 2000-08-19 13:38:23 +00:00
Marius Vollmer
b1ee756f1f * optargs.scm (#\&): Changed #:allow-other-key-value to
#:allow-other-keys.  Thanks to Bill Schottstaedt!
2000-08-19 13:37:55 +00:00
Marius Vollmer
6219924c22 *** empty log message *** 2000-08-16 22:43:03 +00:00
Marius Vollmer
a099f10e49 * optargs.scm (#\&): Emit warning about `#&' being deprecated. 2000-08-16 22:42:41 +00:00
Marius Vollmer
76ef92f358 *** empty log message *** 2000-08-16 19:30:28 +00:00
Marius Vollmer
dfb49627fc * optargs.scm: Replaced `#&' reader syntax with keywords. 2000-08-16 19:30:07 +00:00
Mikael Djurfeldt
d6f3775530 *** empty log message *** 2000-08-14 15:40:27 +00:00
Mikael Djurfeldt
a510a7d8d5 * format.scm (format:obj->str): Made tail-recursive. (Thanks to
Matthias Köppe.)
2000-08-14 15:40:03 +00:00
Mikael Djurfeldt
402dd41f64 Regenerated 2000-08-13 20:27:39 +00:00