summaryrefslogtreecommitdiff
path: root/libguile/expand.c
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-01-20 10:21:40 +0100
committerLudovic Courtès <ludo@gnu.org>2020-01-20 10:21:40 +0100
commit228ae549ca651d9e9e7a7b02d282d0408bd6c9e6 (patch)
tree138171e746022a11db24106efb60c282dcc8472e /libguile/expand.c
parentd47061db231cdfdd018b9b57cb985d85484e7b23 (diff)
downloadguile-228ae549ca651d9e9e7a7b02d282d0408bd6c9e6.tar.gz
Make 'scm_sym_lambda', 'scm_sym_quote', etc. public again.
Fixes <https://bugs.gnu.org/39183>. These symbols had been inadvertently removed from libguile, even though they were intended to be public (as they were in 2.2). * libguile/expand.c: Include "memoize.h".
Diffstat (limited to 'libguile/expand.c')
-rw-r--r--libguile/expand.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libguile/expand.c b/libguile/expand.c
index 11e43c2b9..6ba65ffa2 100644
--- a/libguile/expand.c
+++ b/libguile/expand.c
@@ -1,4 +1,4 @@
-/* Copyright 1995-2014,2016,2018-2019
+/* Copyright 1995-2014,2016,2018-2020
Free Software Foundation, Inc.
This file is part of Guile.
@@ -32,6 +32,7 @@
#include "keywords.h"
#include "list.h"
#include "macros.h"
+#include "memoize.h" /* for the SCM_API declarations of 'scm_sym_' */
#include "modules.h"
#include "pairs.h"
#include "ports.h"