diff options
Diffstat (limited to 'Src/Zle')
-rw-r--r-- | Src/Zle/compcore.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Src/Zle/compcore.c b/Src/Zle/compcore.c index c3de9c564..5ee21932d 100644 --- a/Src/Zle/compcore.c +++ b/Src/Zle/compcore.c @@ -938,6 +938,7 @@ multiquote(char *s, int ign) } return (s == os ? dupstring(s) : s); } + DPUTS(1, "BUG: null pointer in multiquote()"); return NULL; } @@ -956,6 +957,7 @@ tildequote(char *s, int ign) return s; } + DPUTS(1, "BUG: null pointer in tildequote()"); return NULL; } |