diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2001-03-30 15:03:23 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2001-03-30 15:03:23 +0000 |
commit | 22a52da14dd86801cc3a36837601929effde1904 (patch) | |
tree | 3742d5d516018e6fcf53ace4d6f68762e285891c /libguile/eval.h | |
parent | 8715ff170378801396575750c54f32fba3a0b624 (diff) | |
download | guile-22a52da14dd86801cc3a36837601929effde1904.tar.gz |
* Replaced a lot of calls to SCM_C[AD]R with more appropriate macros.
* Minor cleanups to hashtable implementation.
* Minor code beautifications.
Diffstat (limited to 'libguile/eval.h')
-rw-r--r-- | libguile/eval.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/libguile/eval.h b/libguile/eval.h index ec387a4dd..60c5d737a 100644 --- a/libguile/eval.h +++ b/libguile/eval.h @@ -1,8 +1,8 @@ /* classes: h_files */ -#ifndef EVALH -#define EVALH -/* Copyright (C) 1995, 1996 ,1998, 1999, 2000 Free Software Foundation, Inc. +#ifndef SCM_EVAL_H +#define SCM_EVAL_H +/* Copyright (C) 1995,1996,1998,1999,2000,2001 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -180,8 +180,6 @@ extern SCM scm_sym_args; extern SCM scm_f_apply; -extern scm_bits_t scm_tc16_macro; - /* A resolved global variable reference in the CAR position * of a list is stored (in code only) as a pointer to a pair with a * tag of 1. This is called a "gloc". @@ -259,7 +257,7 @@ extern SCM scm_eval_x (SCM exp, SCM module); extern void scm_init_eval (void); -#endif /* EVALH */ +#endif /* SCM_EVAL_H */ /* Local Variables: |