# HG changeset patch # User Juanma Barranquero # Date 1254999298 0 # Node ID cc5bde43f76daee2a6c4becccdeffbfef60ba885 # Parent ea98608909b83d3dd5391969cb84455f11bb1d35 * fontset.c (Fset_fontset_font): Fix typos in error messages. diff -r ea98608909b8 -r cc5bde43f76d src/ChangeLog --- a/src/ChangeLog Thu Oct 08 01:49:05 2009 +0000 +++ b/src/ChangeLog Thu Oct 08 10:54:58 2009 +0000 @@ -1,3 +1,7 @@ +2009-10-08 Juanma Barranquero + + * fontset.c (Fset_fontset_font): Fix typos in error messages. + 2009-10-06 Glenn Morris * Makefile.in (emacs${EXEEXT}): Remove direct dependence on diff -r ea98608909b8 -r cc5bde43f76d src/fontset.c --- a/src/fontset.c Thu Oct 08 01:49:05 2009 +0000 +++ b/src/fontset.c Thu Oct 08 10:54:58 2009 +0000 @@ -1553,7 +1553,7 @@ if (CHARACTERP (target)) { if (XFASTINT (target) < 0x80) - error ("Can't set a font for partial ASCII range."); + error ("Can't set a font for partial ASCII range"); range_list = Fcons (Fcons (target, target), Qnil); } else if (CONSP (target)) @@ -1567,7 +1567,7 @@ if (XFASTINT (from) < 0x80) { if (XFASTINT (from) != 0 || XFASTINT (to) < 0x7F) - error ("Can't set a font for partial ASCII range."); + error ("Can't set a font for partial ASCII range"); ascii_changed = 1; } range_list = Fcons (target, Qnil);