From 9b6b374a7dd7b8d764aa78012c95220efa93fcd0 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Sat, 16 Dec 2006 20:38:14 +0000 Subject: [PATCH] (Ftry_completion): Check that obarray buckets are symbols. --- src/minibuf.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/minibuf.c b/src/minibuf.c index c2df83253fd..ab95b5f0a46 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1311,6 +1311,8 @@ is used to further constrain the set of candidates. */) { if (!EQ (bucket, zero)) { + if (!SYMBOLP (bucket)) + error ("Bad data in guts of obarray"); elt = bucket; eltstring = elt; if (XSYMBOL (bucket)->next) -- 2.39.2