comparison src/keymap.c @ 14099:6215cbb7f702

(Fapropos_internal): Fix previous change.
author Karl Heuer <kwzh@gnu.org>
date Tue, 09 Jan 1996 03:16:51 +0000
parents 439185f0ef37
children d0b95da4f1f2
comparison
equal deleted inserted replaced
14098:aa682cae5c89 14099:6215cbb7f702
2520 Return list of symbols found.") 2520 Return list of symbols found.")
2521 (regexp, predicate) 2521 (regexp, predicate)
2522 Lisp_Object regexp, predicate; 2522 Lisp_Object regexp, predicate;
2523 { 2523 {
2524 struct gcpro gcpro1, gcpro2; 2524 struct gcpro gcpro1, gcpro2;
2525 CHECK_REGEXP (regexp, 0); 2525 CHECK_STRING (regexp, 0);
2526 apropos_predicate = predicate; 2526 apropos_predicate = predicate;
2527 GCPRO2 (apropos_predicate, apropos_accumulate); 2527 GCPRO2 (apropos_predicate, apropos_accumulate);
2528 apropos_accumulate = Qnil; 2528 apropos_accumulate = Qnil;
2529 map_obarray (Vobarray, apropos_accum, regexp); 2529 map_obarray (Vobarray, apropos_accum, regexp);
2530 apropos_accumulate = Fsort (apropos_accumulate, Qstring_lessp); 2530 apropos_accumulate = Fsort (apropos_accumulate, Qstring_lessp);