aboutsummaryrefslogtreecommitdiff
path: root/ps/step7_quote.ps
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2014-04-17 21:49:07 -0500
committerJoel Martin <github@martintribe.org>2014-04-17 21:49:07 -0500
commitdb4c329aff4621e05b92a55be4f18173f5a4f655 (patch)
tree92baaa6d88246e509cfd6a7d03d8fab997e0b935 /ps/step7_quote.ps
parent8cb5cda46cf3aef847ae3926dc53a5e5f87fe261 (diff)
downloadmal-db4c329aff4621e05b92a55be4f18173f5a4f655.tar.gz
mal-db4c329aff4621e05b92a55be4f18173f5a4f655.zip
All: perf test, Makefile refactor, add *host-language*
Other: - bash,make,postscript: quasiquote of vectors - Fix Java slurp - add time function to core.mal - switches on *host-language* for make time-secs vs time-ms - Ignore */experiments directories
Diffstat (limited to 'ps/step7_quote.ps')
-rw-r--r--ps/step7_quote.ps2
1 files changed, 1 insertions, 1 deletions
diff --git a/ps/step7_quote.ps b/ps/step7_quote.ps
index f335683..93bf464 100644
--- a/ps/step7_quote.ps
+++ b/ps/step7_quote.ps
@@ -17,7 +17,7 @@
% is_pair?: ast -> is_pair? -> bool
% return true if non-empty list, otherwise false
/is_pair? {
- dup _list? { _count 0 gt }{ pop false } ifelse
+ dup _sequential? { _count 0 gt }{ pop false } ifelse
} def
% ast -> quasiquote -> new_ast