about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-11-09 13:18:47 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-11-09 13:18:47 +0000
commit4d4b9e9eabdadbdd1d887514d646a902e46d0ee3 (patch)
treed929698bcc10441bacd2607982a0d458695ca8f8
parentc615397157e5efd7a81c8ce11b3f77fd7ccb5a19 (diff)
downloadzsh-4d4b9e9eabdadbdd1d887514d646a902e46d0ee3.tar.gz
zsh-4d4b9e9eabdadbdd1d887514d646a902e46d0ee3.tar.xz
zsh-4d4b9e9eabdadbdd1d887514d646a902e46d0ee3.zip
manual/8601
-rw-r--r--Src/Zle/compcore.c2
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;
 }