Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
cccd42d5
Commit
cccd42d5
authored
May 15, 2009
by
Kenichi Handa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Ffont_spec): Check arguments.
parent
337fbd17
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/font.c
src/font.c
+6
-1
No files found.
src/ChangeLog
View file @
cccd42d5
2009-05-15 Kenichi Handa <handa@m17n.org>
* font.c (Ffont_spec): Check arguments.
2009-05-14 Chong Yidong <cyd@stupidchicken.com>
* xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
...
...
src/font.c
View file @
cccd42d5
...
...
@@ -4007,7 +4007,12 @@ usage: (font-spec ARGS...) */)
for
(
i
=
0
;
i
<
nargs
;
i
+=
2
)
{
Lisp_Object
key
=
args
[
i
],
val
=
args
[
i
+
1
];
Lisp_Object
key
=
args
[
i
],
val
;
CHECK_SYMBOL
(
key
);
if
(
i
+
1
>=
nargs
)
error
(
"No value for key `%s'"
,
SDATA
(
SYMBOL_NAME
(
key
)));
val
=
args
[
i
+
1
];
if
(
EQ
(
key
,
QCname
))
{
...
...
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