Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Commit fae719b

Browse files
authored
Merge pull request #18 from caffe3/fix-cmacro_import
Fix token removal with cmacro_import
2 parents 9dab7ca + 6f295bd commit fae719b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parser.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@
277277
(progn
278278
(let ((path (second sub-ast)))
279279
;; Remove the macro
280-
(setf sub-ast (cddr sub-ast))
280+
(setf sub-ast (cdr sub-ast))
281281
(if (typep path '<string>)
282282
(parse-string
283283
(slurp-file (parse-namestring (string-text

0 commit comments

Comments
 (0)