public inbox for guile-cvs@sourceware.org
help / color / mirror / Atom feed
* guile/guile-core/libguile ChangeLog Makefile.a ...
@ 2000-04-21 7:16 mdj
0 siblings, 0 replies; 4+ messages in thread
From: mdj @ 2000-04-21 7:16 UTC (permalink / raw)
To: guile-cvs
CVSROOT: /cvs/guile
Module name: guile
Changes by: mdj@sourceware.cygnus.com 00/04/21 07:16:32
Modified files:
guile-core/libguile: ChangeLog Makefile.am _scm.h alist.c
alloca.c arbiters.c async.c backtrace.c
boolean.c chars.c continuations.c
coop-defs.h coop-threads.c coop-threads.h
coop.c debug-malloc.c debug.c dynl.c
dynwind.c eq.c error.c eval.c evalext.c
feature.c filesys.c fluids.c fports.c gc.c
gdbint.c gh_data.c gh_eval.c gh_funcs.c
gh_init.c gh_io.c gh_list.c gh_predicates.c
gh_test_c.c gh_test_repl.c gsubr.c
guardians.c guile.c hash.c hashtab.c init.c
ioext.c iselect.c keywords.c lang.c list.c
load.c macros.c mallocs.c modules.c
net_db.c numbers.c objects.c objprop.c
options.c pairs.c ports.c posix.c print.c
procprop.c procs.c ramap.c random.c read.c
regex-posix.c root.c scmsigs.c script.c
simpos.c smob.c socket.c sort.c srcprop.c
stackchk.c stacks.c stime.c strings.c
strop.c strorder.c strports.c struct.c
symbols.c tag.c threads.c throw.c unif.c
variable.c vectors.c version.c vports.c
weaks.c
Log message:
* Makefile.am (DEFS): Added. automake adds -I options to DEFS,
and we don't want that.
(INCLUDES): Removed all -I options except for the root source
directory and the root build directory.
* *.*: Change includes so that they always use the "prefixes"
libguile/, qt/, guile-readline/, or libltdl/.
(Thanks to Tim Mooney.)
^ permalink raw reply [flat|nested] 4+ messages in thread
* guile/guile-core/libguile ChangeLog Makefile.a ...
@ 2000-05-16 5:11 dirk
0 siblings, 0 replies; 4+ messages in thread
From: dirk @ 2000-05-16 5:11 UTC (permalink / raw)
To: guile-cvs
CVSROOT: /cvs/guile
Module name: guile
Changes by: dirk@sourceware.cygnus.com 00/05/16 05:11:08
Modified files:
guile-core/libguile: ChangeLog Makefile.am __scm.h tags.h _scm.h
gc.h numbers.c numbers.h gdbint.c
Log message:
* Makefile.am: Let 'make clean' remove *.x and *.doc files.
* Renamed SCM_STRICT_TYPING to SCM_DEBUG_TYPING_STRICTNESS.
* Removed conditionally compiled code for Turbo C.
* gdbint.c: Eliminated call to scm_tag.
^ permalink raw reply [flat|nested] 4+ messages in thread
* guile/guile-core/libguile ChangeLog Makefile.a ...
@ 2000-03-17 5:37 dirk
0 siblings, 0 replies; 4+ messages in thread
From: dirk @ 2000-03-17 5:37 UTC (permalink / raw)
To: guile-cvs
CVSROOT: /cvs/guile
Module name: guile
Changes by: dirk@sourceware.cygnus.com 00/03/17 05:37:33
Modified files:
guile-core/libguile: ChangeLog Makefile.am arbiters.c
backtrace.c debug.c dynl.c dynwind.c
error.c filesys.c fluids.c gc.c gsubr.c
guardians.c keywords.c libguile.h mallocs.c
numbers.c print.c random.c read.c root.c
srcprop.c stackchk.c struct.c threads.c
throw.c variable.c
Removed files:
guile-core/libguile: genio.h
Log message:
Removed empty file genio.h and references to it.
^ permalink raw reply [flat|nested] 4+ messages in thread
* guile/guile-core/libguile ChangeLog Makefile.a ...
@ 1999-12-11 18:36 gjb
0 siblings, 0 replies; 4+ messages in thread
From: gjb @ 1999-12-11 18:36 UTC (permalink / raw)
To: guile-cvs
CVSROOT: /cvs/guile
Module name: guile
Changes by: gjb@sourceware.cygnus.com 99/12/11 18:36:17
Modified files:
guile-core/libguile: ChangeLog Makefile.am alist.c arbiters.c
async.c backtrace.c boolean.c chars.c
continuations.c debug.c dynl-dl.c
dynl-dld.c dynl-shl.c dynl.c dynwind.c eq.c
error.c eval.c evalext.c feature.c
filesys.c fluids.c fports.c gc.c gdbint.c
gsubr.c guardians.c hash.c hashtab.c init.c
ioext.c keywords.c lang.c list.c load.c
macros.c mallocs.c net_db.c numbers.c
objects.c objprop.c pairs.c pairs.h ports.c
posix.c print.c procprop.c procs.c ramap.c
random.c read.c regex-posix.c root.c
scmsigs.c simpos.c smob.c snarf.h socket.c
sort.c srcprop.c stacks.c stime.c strings.c
strop.c strports.c struct.c symbols.c tag.c
tags.h threads.c throw.c unif.c variable.c
vectors.c version.c vports.c weaks.c
Added files:
guile-core/libguile: scm_validate.h
Log message:
* *.c: Pervasive software-engineering-motivated rewrite of
function headers and argument checking. Switched SCM_PROC,
SCM_PROC1 macros to be GUILE_PROC, GUILE_PROC1 (may change names
later, but was useful to keep old versions around while migrate)
that has docstrings and argument lists embedded in the GUILE_PROC
macro invocations that expand into a function header. Use lots of
new SCM_VALIDATE_* macros to simplify error checking and reduce
tons of redundancy. This is very similar to what I did for Scwm.
Note that none of the extraction of the docstrings, nor software
engineering checks of Scwm is yet added to Guile. I'll work on
that tomorrow, I expect.
* Makefile.am: Added scm_validate.h to modinclude_HEADERS.
* chars.c: Added docstrings for the primitives defined in here.
* snarf.h: Added GUILE_PROC, GUILE_PROC1. Added
SCM_REGISTER_PROC to be like old SCM_PROC, though old SCM_PROC
still remains for now. Changed naming convention for the s_foo
string name of the primitive to be s_scm_foo for ease of use with
the macro.
* scm_validate.h: Lots of new SCM_VALIDATE macros to simplify
argument checking through guile. Maybe some of these should be
folded into the header file for the types they check, but for now
it was easiest to just stick them all in one place.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2000-05-16 5:11 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-04-21 7:16 guile/guile-core/libguile ChangeLog Makefile.a mdj
-- strict thread matches above, loose matches on Subject: below --
2000-05-16 5:11 dirk
2000-03-17 5:37 dirk
1999-12-11 18:36 gjb
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).