Skip to content

Commit cd1b407

Browse files
authored
Merge pull request #1667 from clasp-developers/backquote-fix
Backquote fix
2 parents 4906174 + 098e8b8 commit cd1b407

File tree

4 files changed

+208
-219
lines changed

4 files changed

+208
-219
lines changed

RELEASE_NOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
## Fixed
99
* Weak pointers and weak hash tables survive snapshot save/load.
1010
* `ext:quit` can be used from any thread, not just the initial thread.
11+
* Quasiquoted vectors are read correctly (#1666).
1112

1213
## Removed
1314
* `-z`/`--snapshot-symbols-save` command line option, occasionally used

include/clasp/core/backquote.h

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,5 @@ THE SOFTWARE.
3030

3131
namespace core {
3232

33-
extern T_mv core__backquote_completely_process(T_sp ox);
34-
extern T_sp core__backquote_process(T_sp ox);
35-
extern T_sp core__backquote_bracket(T_sp ox);
36-
extern T_sp core__backquote_simplify_args(T_sp x);
37-
extern T_sp core__backquote_attach_append(T_sp op, T_sp item, T_sp result);
38-
extern List_sp core__backquote_attach_conses(T_sp items, T_sp result);
39-
40-
extern T_sp core__backquote_simplify(T_sp x);
41-
extern T_sp core__backquote_remove_tokens(T_sp x);
42-
4333
void initialize_backquote();
4434
}; // namespace core

0 commit comments

Comments
 (0)