aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2009-10-08 10:54:58 +0000
committerJuanma Barranquero2009-10-08 10:54:58 +0000
commitd7a39b51475085900ee0545fdfbec5693941f415 (patch)
tree60c418a25f9ff8b0beba0b3e8490ea8e4f726984 /src
parentc2a81032c88bba4a4cbdee878e525407b2625ebe (diff)
downloademacs-d7a39b51475085900ee0545fdfbec5693941f415.tar.gz
emacs-d7a39b51475085900ee0545fdfbec5693941f415.zip
* fontset.c (Fset_fontset_font): Fix typos in error messages.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/fontset.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index fd817388aa0..88126a28c4e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12009-10-08 Juanma Barranquero <lekktu@gmail.com>
2
3 * fontset.c (Fset_fontset_font): Fix typos in error messages.
4
12009-10-06 Glenn Morris <rgm@gnu.org> 52009-10-06 Glenn Morris <rgm@gnu.org>
2 6
3 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on 7 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
diff --git a/src/fontset.c b/src/fontset.c
index f8eb0c86eb8..35e186b3c3b 100644
--- a/src/fontset.c
+++ b/src/fontset.c
@@ -1553,7 +1553,7 @@ appended. By default, FONT-SPEC overrides the previous settings. */)
1553 if (CHARACTERP (target)) 1553 if (CHARACTERP (target))
1554 { 1554 {
1555 if (XFASTINT (target) < 0x80) 1555 if (XFASTINT (target) < 0x80)
1556 error ("Can't set a font for partial ASCII range."); 1556 error ("Can't set a font for partial ASCII range");
1557 range_list = Fcons (Fcons (target, target), Qnil); 1557 range_list = Fcons (Fcons (target, target), Qnil);
1558 } 1558 }
1559 else if (CONSP (target)) 1559 else if (CONSP (target))
@@ -1567,7 +1567,7 @@ appended. By default, FONT-SPEC overrides the previous settings. */)
1567 if (XFASTINT (from) < 0x80) 1567 if (XFASTINT (from) < 0x80)
1568 { 1568 {
1569 if (XFASTINT (from) != 0 || XFASTINT (to) < 0x7F) 1569 if (XFASTINT (from) != 0 || XFASTINT (to) < 0x7F)
1570 error ("Can't set a font for partial ASCII range."); 1570 error ("Can't set a font for partial ASCII range");
1571 ascii_changed = 1; 1571 ascii_changed = 1;
1572 } 1572 }
1573 range_list = Fcons (target, Qnil); 1573 range_list = Fcons (target, Qnil);