1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

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".
This commit is contained in:
Ludovic Courtès 2020-01-20 10:21:40 +01:00
parent d47061db23
commit 228ae549ca

View file

@ -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"