1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-23 21:10:29 +02:00

*** empty log message ***

This commit is contained in:
Mikael Djurfeldt 1997-03-07 21:43:46 +00:00
parent 399dedcca7
commit a1e2cfe360
2 changed files with 47 additions and 31 deletions

View file

@ -1,3 +1,19 @@
Fri Mar 7 19:38:18 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
* eval.c (SCM_CEVAL): Added code sections for handling of asubrs
with 3 or more args internally to the evaluator. This is mainly
because we don't want to pass entry and exit points of the
debug support twice, but it also seems to increase the speed of
the evaluator for such calls (e. g. (+ 1 2 3)).
* * backtrace.c (scm_display_application): New procedure:
display-application; Set fancy printing parameters individually
for different types of display (backtrace, error, application).
(These should of course be customizable!)
* debug.h (SCM_RESET_DEBUG_MODE): Bugfix: The old code didn't
clear the CHECK-flags.
Thu Mar 6 00:53:02 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se> Thu Mar 6 00:53:02 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
* tags.h, eval.c (iqq): Fixes to comments about SCM_ECONSP. * tags.h, eval.c (iqq): Fixes to comments about SCM_ECONSP.

View file

@ -37,21 +37,21 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@ INSTALL_DATA = @INSTALL_DATA@
INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_SCRIPT = @INSTALL_SCRIPT@
transform = @program_transform_name@ transform = @program_transform_name@
host_triplet = @host@
host_alias = @host_alias@ host_alias = @host_alias@
host_triplet = @host@
RANLIB = @RANLIB@
LIBTOOL = @LIBTOOL@
AWK = @AWK@
module = @module@
LIBLOBJS = @LIBLOBJS@
CC = @CC@
PACKAGE = @PACKAGE@
ERRNO_EXTRACT = @ERRNO_EXTRACT@ ERRNO_EXTRACT = @ERRNO_EXTRACT@
FD_SETTER = @FD_SETTER@ FD_SETTER = @FD_SETTER@
LIBLOBJS = @LIBLOBJS@
AWK = @AWK@
LIBTOOL = @LIBTOOL@
VERSION = @VERSION@ VERSION = @VERSION@
module = @module@
CC = @CC@
RANLIB = @RANLIB@
MAINT = @MAINT@
INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_SCRIPT = @INSTALL_SCRIPT@
xtra_PLUGIN_guile_libs = @xtra_PLUGIN_guile_libs@ xtra_PLUGIN_guile_libs = @xtra_PLUGIN_guile_libs@
PACKAGE = @PACKAGE@ MAINT = @MAINT@
AUTOMAKE_OPTIONS = foreign AUTOMAKE_OPTIONS = foreign
@ -133,7 +133,7 @@ COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
LINK = $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o $@ LINK = $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o $@
DATA = $(modinclude_DATA) DATA = $(modinclude_DATA)
HEADERS = $(include_HEADERS) $(modinclude_HEADERS) HEADERS = $(modinclude_HEADERS) $(include_HEADERS)
DIST_COMMON = COPYING ChangeLog Makefile.am Makefile.in acconfig.h \ DIST_COMMON = COPYING ChangeLog Makefile.am Makefile.in acconfig.h \
acinclude.m4 aclocal.m4 configure configure.in fd.h.in guile-snarf.in \ acinclude.m4 aclocal.m4 configure configure.in fd.h.in guile-snarf.in \
@ -297,19 +297,6 @@ uninstall-modincludeDATA:
rm -f $(modincludedir)/$$p; \ rm -f $(modincludedir)/$$p; \
done done
install-includeHEADERS: $(include_HEADERS)
$(NORMAL_INSTALL)
$(mkinstalldirs) $(includedir)
@list="$(include_HEADERS)"; for p in $$list; do \
echo "$(INSTALL_DATA) $(srcdir)/$$p $(includedir)/$$p"; \
$(INSTALL_DATA) $(srcdir)/$$p $(includedir)/$$p; \
done
uninstall-includeHEADERS:
list="$(include_HEADERS)"; for p in $$list; do \
rm -f $(includedir)/$$p; \
done
install-modincludeHEADERS: $(modinclude_HEADERS) install-modincludeHEADERS: $(modinclude_HEADERS)
$(NORMAL_INSTALL) $(NORMAL_INSTALL)
$(mkinstalldirs) $(modincludedir) $(mkinstalldirs) $(modincludedir)
@ -323,6 +310,19 @@ uninstall-modincludeHEADERS:
rm -f $(modincludedir)/$$p; \ rm -f $(modincludedir)/$$p; \
done done
install-includeHEADERS: $(include_HEADERS)
$(NORMAL_INSTALL)
$(mkinstalldirs) $(includedir)
@list="$(include_HEADERS)"; for p in $$list; do \
echo "$(INSTALL_DATA) $(srcdir)/$$p $(includedir)/$$p"; \
$(INSTALL_DATA) $(srcdir)/$$p $(includedir)/$$p; \
done
uninstall-includeHEADERS:
list="$(include_HEADERS)"; for p in $$list; do \
rm -f $(includedir)/$$p; \
done
tags: TAGS tags: TAGS
ID: $(HEADERS) $(SOURCES) ID: $(HEADERS) $(SOURCES)
@ -419,21 +419,21 @@ installcheck:
install-exec: install-libPROGRAMS install-binSCRIPTS install-exec: install-libPROGRAMS install-binSCRIPTS
$(NORMAL_INSTALL) $(NORMAL_INSTALL)
install-data: install-modincludeDATA install-includeHEADERS install-modincludeHEADERS install-data: install-modincludeDATA install-modincludeHEADERS install-includeHEADERS
$(NORMAL_INSTALL) $(NORMAL_INSTALL)
install: install-exec install-data all install: install-exec install-data all
@: @:
uninstall: uninstall-libPROGRAMS uninstall-binSCRIPTS uninstall-modincludeDATA uninstall-includeHEADERS uninstall-modincludeHEADERS uninstall: uninstall-libPROGRAMS uninstall-binSCRIPTS uninstall-modincludeDATA uninstall-modincludeHEADERS uninstall-includeHEADERS
all: $(PROGRAMS) $(SCRIPTS) $(DATA) $(HEADERS) Makefile scmconfig.h all: $(PROGRAMS) $(SCRIPTS) $(DATA) $(HEADERS) Makefile scmconfig.h
install-strip: install-strip:
$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
installdirs: installdirs:
$(mkinstalldirs) $(libdir) $(bindir) $(modincludedir) $(includedir) \ $(mkinstalldirs) $(libdir) $(bindir) $(modincludedir) $(modincludedir) \
$(modincludedir) $(includedir)
mostlyclean-generic: mostlyclean-generic:
@ -478,10 +478,10 @@ install-libPROGRAMS mostlyclean-compile distclean-compile clean-compile \
maintainer-clean-compile mostlyclean-libtool distclean-libtool \ maintainer-clean-compile mostlyclean-libtool distclean-libtool \
clean-libtool maintainer-clean-libtool uninstall-binSCRIPTS \ clean-libtool maintainer-clean-libtool uninstall-binSCRIPTS \
install-binSCRIPTS uninstall-modincludeDATA install-modincludeDATA \ install-binSCRIPTS uninstall-modincludeDATA install-modincludeDATA \
uninstall-includeHEADERS install-includeHEADERS \ uninstall-modincludeHEADERS install-modincludeHEADERS \
uninstall-modincludeHEADERS install-modincludeHEADERS tags \ uninstall-includeHEADERS install-includeHEADERS tags mostlyclean-tags \
mostlyclean-tags distclean-tags clean-tags maintainer-clean-tags \ distclean-tags clean-tags maintainer-clean-tags distdir \
distdir mostlyclean-depend distclean-depend clean-depend \ mostlyclean-depend distclean-depend clean-depend \
maintainer-clean-depend info dvi installcheck install-exec install-data \ maintainer-clean-depend info dvi installcheck install-exec install-data \
install uninstall all installdirs mostlyclean-generic distclean-generic \ install uninstall all installdirs mostlyclean-generic distclean-generic \
clean-generic maintainer-clean-generic clean mostlyclean distclean \ clean-generic maintainer-clean-generic clean mostlyclean distclean \