summaryrefslogtreecommitdiff
path: root/libguile/syntax.c
diff options
context:
space:
mode:
Diffstat (limited to 'libguile/syntax.c')
-rw-r--r--libguile/syntax.c59
1 files changed, 30 insertions, 29 deletions
diff --git a/libguile/syntax.c b/libguile/syntax.c
index df12c69c4..2da4e395e 100644
--- a/libguile/syntax.c
+++ b/libguile/syntax.c
@@ -1,32 +1,39 @@
-/* Copyright (C) 2017 Free Software Foundation, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 3 of
- * the License, or (at your option) any later version.
- *
- * This library 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
- */
+/* Copyright 2017-2018
+ Free Software Foundation, Inc.
+
+ This file is part of Guile.
+
+ Guile is free software: you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ Guile 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 Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with Guile. If not, see
+ <https://www.gnu.org/licenses/>. */
+
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
-#include "libguile/_scm.h"
-#include "libguile/keywords.h"
-#include "libguile/ports.h"
-#include "libguile/syntax.h"
-#include "libguile/validate.h"
+#include "eval.h"
+#include "gsubr.h"
+#include "keywords.h"
+#include "modules.h"
+#include "ports.h"
+#include "threads.h"
+#include "variable.h"
+
+#include "syntax.h"
+
@@ -109,12 +116,6 @@ scm_i_syntax_print (SCM obj, SCM port, scm_print_state *pstate)
void
scm_init_syntax ()
{
-#include "libguile/syntax.x"
+#include "syntax.x"
}
-
-/*
- Local Variables:
- c-file-style: "gnu"
- End:
-*/