public inbox for guile-cvs@sourceware.org
help / color / mirror / Atom feed
* guile/guile-core NEWS libguile/ChangeLog libgu ...
@ 2000-07-26  1:35 dirk
  0 siblings, 0 replies; 6+ messages in thread
From: dirk @ 2000-07-26  1:35 UTC (permalink / raw)
  To: guile-cvs

CVSROOT:	/cvs/guile
Module name:	guile
Changes by:	dirk@sourceware.cygnus.com	2000-07-26 01:35:36

Modified files:
	guile-core     : NEWS 
	guile-core/libguile: ChangeLog struct.c struct.h 

Log message:
	* Fixed struct initialization.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* guile/guile-core NEWS libguile/ChangeLog libgu ...
@ 2000-01-09  5:41 ghouston
  0 siblings, 0 replies; 6+ messages in thread
From: ghouston @ 2000-01-09  5:41 UTC (permalink / raw)
  To: guile-cvs

CVSROOT:	/cvs/guile
Module name:	guile
Changes by:	ghouston@sourceware.cygnus.com	00/01/09 05:41:53

Modified files:
	guile-core     : NEWS 
	guile-core/libguile: ChangeLog error.c error.h eval.c filesys.c 
	                     posix.c scm_validate.h simpos.c stime.c 

Log message:
	* eval.c: define scm_unbound_variable_key ('unbound-variable).
	scm_lookupcar1: throw an error with key 'unbound-variable instead
	of 'misc-error when an unbound variable is encountered.
	
	* filesys.c (scm_mkdir, scm_rmdir, scm_getcwd, scm_select,
	scm_symlink, scm_readlink, scm_lstat),
	posix.c (scm_setpgid, scm_setsid, scm_ctermid, scm_tcgetpgrp,
	scm_tcsetpgrp, scm_uname, scm_setlocale, scm_mknod, scm_nice,
	scm_sync),
	simpos.c (scm_system),
	stime.c (scm_times, scm_strptime):
	move the HAVE_XXX feature tests out of the procedure bodies.
	don't use SCM_SYSMISSING.
	scm_validate.h (SCM_SYSMISSING): removed.
	error.h, error.c (scm_sysmissing): comment that this is deprecated.
	see ChangeLog entry for 1999-12-28.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* guile/guile-core NEWS libguile/ChangeLog libgu ...
@ 1999-10-24  4:25 ghouston
  0 siblings, 0 replies; 6+ messages in thread
From: ghouston @ 1999-10-24  4:25 UTC (permalink / raw)
  To: guile-cvs

CVSROOT:	/cvs/guile
Module name:	guile
Changes by:	ghouston@sourceware.cygnus.com	99/10/24 04:25:31

Modified files:
	guile-core     : NEWS 
	guile-core/libguile: ChangeLog fports.c ports.c strports.c 

Log message:
	* Move the responsibility for resetting port buffers from the
	caller of the ptob seek procedure to the implementation.  This
	gives more control in general to the ptob seek: in particular the
	change of 1999-10-20 can be made to work without breaking seek on
	string ports.  There's a comment in NEWS about upgrading port
	types.
	
	* ports.c (scm_seek): don't reset the port buffers here.
	
	* fports.c (fport_seek): reset the buffers, except for the
	0 SEEK_CUR case.
	
	* strports.c (st_end_input): (bug fix): decrement pt->read_pos by
	offset.  check that it's not less than read_buf.
	(st_seek): reset the buffers first, unless it's the 0 SEEK_CUR
	case and currently reading.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* guile/guile-core NEWS libguile/ChangeLog libgu ...
@ 1999-08-12 11:58 ghouston
  0 siblings, 0 replies; 6+ messages in thread
From: ghouston @ 1999-08-12 11:58 UTC (permalink / raw)
  To: guile-cvs

CVSROOT:	/cvs/guile
Module name:	guile
Changes by:	ghouston@egcs.cygnus.com	99/08/12 11:58:55

Modified files:
	guile-core     : NEWS 
	guile-core/libguile: ChangeLog gdbint.c ioext.c ports.c 

Log message:
	1999-08-12  Gary Houston  <ghouston@easynet.co.uk>
	
	* ports.c (scm_seek): one more: was scm_lseek.  Also changed the
	Scheme name from lseek to seek, but lseek was added recently so
	it shouldn't be a big problem.
	* ports.c, gdbint.c, ioext.c: changed callers.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* guile/guile-core NEWS libguile/ChangeLog libgu ...
@ 1999-07-25 10:45 ghouston
  0 siblings, 0 replies; 6+ messages in thread
From: ghouston @ 1999-07-25 10:45 UTC (permalink / raw)
  To: guile-cvs

CVSROOT:	/cvs/guile
Module name:	guile
Changes by:	ghouston@egcs.cygnus.com	99/07/25 10:45:01

Modified files:
	guile-core     : NEWS 
	guile-core/libguile: ChangeLog init.c ports.c 

Log message:
	1999-07-25  Gary Houston  <ghouston@easynet.co.uk>
	
	* ports.c (scm_putc): fix line-buffering.
	
	(init.c: remove an obsolete comment).


^ permalink raw reply	[flat|nested] 6+ messages in thread

* guile/guile-core NEWS libguile/ChangeLog libgu ...
@ 1999-07-24 12:52 ghouston
  0 siblings, 0 replies; 6+ messages in thread
From: ghouston @ 1999-07-24 12:52 UTC (permalink / raw)
  To: guile-cvs

CVSROOT:	/cvs/guile
Module name:	guile
Changes by:	ghouston@egcs.cygnus.com	99/07/24 12:52:13

Modified files:
	guile-core     : NEWS 
	guile-core/libguile: ChangeLog filesys.c filesys.h gdbint.c 
	                     ports.c ports.h 

Log message:
	1999-07-24  Gary Houston  <ghouston@easynet.co.uk>
	
	* gdbint.c (gdb_print, gdb_read): call scm_truncate_file.
	
	* ports.c (scm_truncate_file): renamed from scm_ftruncate.
	allow the 1st argument to be a fdes or filename as well as a
	port (as in the filesys.c version).
	
	* filesys.c (scm_truncate_file): removed.


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2000-07-26  1:35 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-07-26  1:35 guile/guile-core NEWS libguile/ChangeLog libgu dirk
  -- strict thread matches above, loose matches on Subject: below --
2000-01-09  5:41 ghouston
1999-10-24  4:25 ghouston
1999-08-12 11:58 ghouston
1999-07-25 10:45 ghouston
1999-07-24 12:52 ghouston

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).