summaryrefslogtreecommitdiff
path: root/src/sp_config.h
diff options
context:
space:
mode:
authorjvoisin2017-11-29 11:36:57 +0100
committerGitHub2017-11-29 11:36:57 +0100
commit10437787b0e8ede80976de4a1c22775fc1282f36 (patch)
tree1ab911ab000989b98449475eda655a797e278049 /src/sp_config.h
parent8df77884f38e7a7334b56aafe2f441567f175af8 (diff)
Implement eval hooking
It's not possible to hook the `eval` builtin like other functions.
Diffstat (limited to 'src/sp_config.h')
-rw-r--r--src/sp_config.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sp_config.h b/src/sp_config.h
index 12f12e8..6d091ae 100644
--- a/src/sp_config.h
+++ b/src/sp_config.h
@@ -115,6 +115,7 @@ typedef struct {
115 115
116typedef struct { 116typedef struct {
117 sp_node_t *construct_include; // list of rules for `(include|require)_(once)?` 117 sp_node_t *construct_include; // list of rules for `(include|require)_(once)?`
118 sp_node_t *construct_eval;
118 sp_node_t *construct_echo; 119 sp_node_t *construct_echo;
119} sp_config_disabled_constructs; 120} sp_config_disabled_constructs;
120 121