4513c4513 < doc: /* Call FUNCTION for all entries in hash table TABLE. --- > doc: /* Call FUNCTION for all entries in hash table TABLE, and make a list of the results. 4519a4520,4521 > Lisp_Object ret = Qnil; > Lisp_Object current_result; 4527c4529,4530 < Ffuncall (3, args); --- > current_result = Ffuncall (3, args); > ret = Fcons(current_result, ret); 4530c4533 < return Qnil; --- > return ret;