summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-01-27 06:30:11 -0800
committerKaz Kylheku <kaz@kylheku.com>2015-01-27 06:30:11 -0800
commite9b78ff2c7a7765b842588c9a93f84956de9834d (patch)
tree7a0bd22f89841184171f4344cf3080434b593e02 /eval.c
parent0515d6ee6af5f16a951f7dd61ddc3f3e2cd0e562 (diff)
downloadtxr-e9b78ff2c7a7765b842588c9a93f84956de9834d.tar.gz
txr-e9b78ff2c7a7765b842588c9a93f84956de9834d.tar.bz2
txr-e9b78ff2c7a7765b842588c9a93f84956de9834d.zip
* arith.c (width): New function.
* arith.h (width): Declared. * eval.c (eval_init): Width registered as intrisinc. * txr.1: Documented width.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/eval.c b/eval.c
index 48925f79..8a795f12 100644
--- a/eval.c
+++ b/eval.c
@@ -3851,6 +3851,7 @@ void eval_init(void)
reg_fun(intern(lit("ash"), user_package), func_n2(ash));
reg_fun(intern(lit("bit"), user_package), func_n2(bit));
reg_fun(intern(lit("mask"), user_package), func_n0v(maskv));
+ reg_fun(intern(lit("width"), user_package), func_n1(width));
reg_fun(intern(lit("regex-compile"), user_package), func_n2o(regex_compile, 1));
reg_fun(intern(lit("regexp"), user_package), func_n1(regexp));