diff src/fontset.c @ 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 8f1c018c050c
children 68dd71358159
line wrap: on
line diff
--- 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);