summaryrefslogtreecommitdiff
path: root/libguile/goops.h
diff options
context:
space:
mode:
authorDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2002-01-10 21:57:03 +0000
committerDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2002-01-10 21:57:03 +0000
commita392ee15566f61e438f3ee85b331c37df5fb74d6 (patch)
treed276315db8c022c510fd94aa91ac61451f50afd2 /libguile/goops.h
parent2493378052debba95dee60ac67a63df1707d40c5 (diff)
downloadguile-a392ee15566f61e438f3ee85b331c37df5fb74d6.tar.gz
* eval.c: Removed outdated references to "everr". Improved some
comments. (scm_deval_args, deval_args): Renamed scm_deval_args to deval_args, since it is not part of the interface. (SCM_CEVAL): Added (maybe somewhat verbose) comment. Avoid to use references to debug.vect[0] before it exists. Add parentheses to switch statement. * goops.h: Added local emacs variables.
Diffstat (limited to 'libguile/goops.h')
-rw-r--r--libguile/goops.h16
1 files changed, 12 insertions, 4 deletions
diff --git a/libguile/goops.h b/libguile/goops.h
index a288d84ac..fb83005a9 100644
--- a/libguile/goops.h
+++ b/libguile/goops.h
@@ -2,18 +2,19 @@
#ifndef SCM_GOOPS_H
#define SCM_GOOPS_H
+
/* Copyright (C) 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
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ *
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
@@ -42,6 +43,7 @@
* If you write modifications of your own for GUILE, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice. */
+
/* This software is a derivative work of other copyrighted softwares; the
@@ -313,4 +315,10 @@ SCM_API void scm_init_goops (void);
#endif
-#endif /* SCM_GOOPS_H */
+#endif /* SCM_GOOPS_H */
+
+/*
+ Local Variables:
+ c-file-style: "gnu"
+ End:
+*/