1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-26 07:11:34 -08:00

(Fx_list_fonts): Fix Fnconc argument.

This commit is contained in:
Richard M. Stallman 1997-07-12 06:49:45 +00:00
parent e14a8fb0a2
commit 39ce695286

View file

@ -86,6 +86,6 @@ the WIDTH times as wide as FACE on FRAME.")
/* We don't have to check fontsets. */
return args[0];
args[1] = list_fontsets (f, pattern, size);
return Fnconc (make_number (2), args);
return Fnconc (2, args);
}
}