summaryrefslogtreecommitdiffstats
path: root/eval.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-09-06 07:26:35 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-09-06 07:26:35 -0700
commit8b3eb12947305ad3636227b7bfe6132f39b1028f (patch)
tree4bfa895d8c5021c1c2fa37813f9cb4cae25acce2 /eval.h
parent591329b9ec120941bf2852c5e794e5bc2b0d8f22 (diff)
downloadtxr-8b3eb12947305ad3636227b7bfe6132f39b1028f.tar.gz
txr-8b3eb12947305ad3636227b7bfe6132f39b1028f.tar.bz2
txr-8b3eb12947305ad3636227b7bfe6132f39b1028f.zip
Parenthesis sensitivity for completion.
* eval.c (boundp): Static function becomes extern. * eval.h (boundp): Declared. * parser.c (find_matching_syms): New par parameter lets function determine whether previous character is a an open parenthesis or brace, based on which the set of possible completions is restricted. (provide_completions): Calculate the par parameter and pass to find_matching_syms.
Diffstat (limited to 'eval.h')
-rw-r--r--eval.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/eval.h b/eval.h
index 301ac55c..61bfb5db 100644
--- a/eval.h
+++ b/eval.h
@@ -38,6 +38,7 @@ loc lookup_var_l(val env, val sym);
loc lookup_global_var_l(val sym);
val lookup_fun(val env, val sym);
val interp_fun(val env, val fun, struct args *);
+val boundp(val sym);
val fboundp(val sym);
val special_operator_p(val sym);
val macro_form_p(val form, val menv);