Mercurial > emacs
changeset 105520:cc5bde43f76d
* fontset.c (Fset_fontset_font): Fix typos in error messages.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Thu, 08 Oct 2009 10:54:58 +0000 |
parents | ea98608909b8 |
children | 825191b3e4f4 |
files | src/ChangeLog src/fontset.c |
diffstat | 2 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 <lekktu@gmail.com> + + * fontset.c (Fset_fontset_font): Fix typos in error messages. + 2009-10-06 Glenn Morris <rgm@gnu.org> * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
--- 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);