aboutsummaryrefslogtreecommitdiff
path: root/matlab/step7_quote.m
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2015-02-08 20:35:44 -0600
committerJoel Martin <github@martintribe.org>2015-02-08 23:51:47 -0600
commitc4033aab513035999bb322b2063b6fbf57bedc97 (patch)
tree6000856d742db0a89328096a4142df09f3e29cb8 /matlab/step7_quote.m
parentc3023f2642064bb416bc6b817ab5ea80fec29fce (diff)
downloadmal-c4033aab513035999bb322b2063b6fbf57bedc97.tar.gz
mal-c4033aab513035999bb322b2063b6fbf57bedc97.zip
matlab: add step8
Diffstat (limited to 'matlab/step7_quote.m')
-rw-r--r--matlab/step7_quote.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/matlab/step7_quote.m b/matlab/step7_quote.m
index eaace83..266751a 100644
--- a/matlab/step7_quote.m
+++ b/matlab/step7_quote.m
@@ -7,7 +7,7 @@ end
% eval
function ret = is_pair(ast)
- ret = isa(ast, 'cell') && length(ast) > 0;
+ ret = iscell(ast) && length(ast) > 0;
end
function ret = quasiquote(ast)