summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-04-25 06:15:15 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-04-25 06:15:15 -0700
commitde64b753946034895bca74bc198b6090cb2d5bcc (patch)
treef8ebbea3de417c1c9efcbe50914d70ced2363368 /lib.c
parent097b3d2421b040e9e8512275c7c64f19c16615be (diff)
downloadtxr-de64b753946034895bca74bc198b6090cb2d5bcc.tar.gz
txr-de64b753946034895bca74bc198b6090cb2d5bcc.tar.bz2
txr-de64b753946034895bca74bc198b6090cb2d5bcc.zip
Remove silly package lookup from keywordp.
This tiny change yields a 165% (2.65X) speedup in the tst/tests/011/mandel.txr test case. * lib.c (keywordp): Use keyword_package_var instead of the keyword_package macro which looks up the global environment. * parser.y (sym_helper): Likewise.
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index d7503294..03316881 100644
--- a/lib.c
+++ b/lib.c
@@ -3639,7 +3639,7 @@ val symbolp(val sym)
val keywordp(val sym)
{
- return (symbolp(sym) && symbol_package(sym) == keyword_package) ? t : nil;
+ return c_true(sym && symbolp(sym) && sym->s.package == keyword_package_var);
}
loc get_user_package(void)