]> code.delx.au - gnu-emacs/commitdiff
* fontset.c (Fset_fontset_font): Fix typos in error messages.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 8 Oct 2009 10:54:58 +0000 (10:54 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 8 Oct 2009 10:54:58 +0000 (10:54 +0000)
src/ChangeLog
src/fontset.c

index fd817388aa0cb13b130db588aba46ad66fc21c25..88126a28c4ebb320c4591952cb09931d7a7e9882 100644 (file)
@@ -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
index f8eb0c86eb89c5fda2c069d40bdf4de9c5e3ae31..35e186b3c3b2b4d9c0cd49c7dd86d6617acf17ea 100644 (file)
@@ -1553,7 +1553,7 @@ appended.  By default, FONT-SPEC overrides the previous settings.  */)
   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 @@ appended.  By default, FONT-SPEC overrides the previous settings.  */)
       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);