diff options
| -rw-r--r-- | src/minibuf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index cb302f44c43..d9fec427ec4 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -1253,7 +1253,7 @@ is used to further constrain the set of candidates. */) | |||
| 1253 | } | 1253 | } |
| 1254 | else if (type == 2) | 1254 | else if (type == 2) |
| 1255 | { | 1255 | { |
| 1256 | if (XFASTINT (bucket) != 0) | 1256 | if (!EQ (bucket, make_number (0))) |
| 1257 | { | 1257 | { |
| 1258 | elt = bucket; | 1258 | elt = bucket; |
| 1259 | eltstring = Fsymbol_name (elt); | 1259 | eltstring = Fsymbol_name (elt); |
| @@ -1509,7 +1509,7 @@ are ignored unless STRING itself starts with a space. */) | |||
| 1509 | } | 1509 | } |
| 1510 | else if (type == 2) | 1510 | else if (type == 2) |
| 1511 | { | 1511 | { |
| 1512 | if (XFASTINT (bucket) != 0) | 1512 | if (!EQ (bucket, make_number (0))) |
| 1513 | { | 1513 | { |
| 1514 | elt = bucket; | 1514 | elt = bucket; |
| 1515 | eltstring = Fsymbol_name (elt); | 1515 | eltstring = Fsymbol_name (elt); |