Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d7a39b51
Commit
d7a39b51
authored
Oct 08, 2009
by
Juanma Barranquero
Browse files
* fontset.c (Fset_fontset_font): Fix typos in error messages.
parent
c2a81032
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
src/ChangeLog
src/ChangeLog
+4
-0
src/fontset.c
src/fontset.c
+2
-2
No files found.
src/ChangeLog
View file @
d7a39b51
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
...
...
src/fontset.c
View file @
d7a39b51
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment