summaryrefslogtreecommitdiff
path: root/Src/Zle/zle_thingy.c
diff options
context:
space:
mode:
Diffstat (limited to 'Src/Zle/zle_thingy.c')
-rw-r--r--Src/Zle/zle_thingy.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/Src/Zle/zle_thingy.c b/Src/Zle/zle_thingy.c
index 71eab02e7..91ee2c010 100644
--- a/Src/Zle/zle_thingy.c
+++ b/Src/Zle/zle_thingy.c
@@ -164,6 +164,17 @@ rthingy(char *nam)
return refthingy(t);
}
+/**/
+Thingy
+rthingy_nocreate(char *nam)
+{
+ Thingy t = (Thingy) thingytab->getnode2(thingytab, nam);
+
+ if(!t)
+ return NULL;
+ return refthingy(t);
+}
+
/***********/
/* widgets */
/***********/