comparison src/minibuf.c @ 14:9ee227acff29 r19-15b90

Import from CVS: tag r19-15b90
author cvs
date Mon, 13 Aug 2007 08:48:42 +0200
parents 376386a54a3c
children 0293115a14e9
comparison
equal deleted inserted replaced
13:13c6d0aaafe5 14:9ee227acff29
350 } 350 }
351 else 351 else
352 { 352 {
353 if (!ZEROP (bucket)) 353 if (!ZEROP (bucket))
354 { 354 {
355 struct Lisp_Symbol *next = symbol_next (XSYMBOL (bucket)); 355 struct Lisp_Symbol *next;
356 if (!SYMBOLP (bucket)) {
357 signal_simple_error("Bad obarry passed to try-completions",
358 bucket);
359 }
360 next = symbol_next (XSYMBOL (bucket));
356 elt = bucket; 361 elt = bucket;
357 eltstring = Fsymbol_name (elt); 362 eltstring = Fsymbol_name (elt);
358 if (next) 363 if (next)
359 XSETSYMBOL (bucket, next); 364 XSETSYMBOL (bucket, next);
360 else 365 else