comparison src/symbols.c @ 5470:0af042a0c116

Merge with trunk.
author Mats Lidell <matsl@xemacs.org>
date Mon, 07 Feb 2011 21:22:17 +0100
parents a9094f28f9a9 b5561bfd5061
children 58b38d5b32d0
comparison
equal deleted inserted replaced
5469:2a8a04f73c15 5470:0af042a0c116
504 closure.regexp = regexp; 504 closure.regexp = regexp;
505 closure.predicate = predicate; 505 closure.predicate = predicate;
506 closure.accumulation = Qnil; 506 closure.accumulation = Qnil;
507 GCPRO1 (closure.accumulation); 507 GCPRO1 (closure.accumulation);
508 map_obarray (Vobarray, apropos_mapper, &closure); 508 map_obarray (Vobarray, apropos_mapper, &closure);
509 closure.accumulation = list_sort (closure.accumulation, NULL, Qstring_lessp, 509 closure.accumulation = list_sort (closure.accumulation,
510 Qidentity); 510 check_string_lessp_nokey, Qnil, Qnil);
511 UNGCPRO; 511 UNGCPRO;
512 return closure.accumulation; 512 return closure.accumulation;
513 } 513 }
514 514
515 515