diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/fontset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fontset.c b/src/fontset.c index 6679b1f728f..b79010e7bc2 100644 --- a/src/fontset.c +++ b/src/fontset.c | |||
| @@ -1013,7 +1013,7 @@ name of a font, REGISTRY is a registry name of a font. */) | |||
| 1013 | { | 1013 | { |
| 1014 | elt = Fget (character, Qcharset); | 1014 | elt = Fget (character, Qcharset); |
| 1015 | if (!VECTORP (elt) || ASIZE (elt) < 1 || !NATNUMP (AREF (elt, 0))) | 1015 | if (!VECTORP (elt) || ASIZE (elt) < 1 || !NATNUMP (AREF (elt, 0))) |
| 1016 | error ("Invalid charset: %s", (XSYMBOL (character)->name)->data); | 1016 | error ("Invalid charset: %s", (XSTRING (SYMBOL_NAME (character)))->data); |
| 1017 | from = MAKE_CHAR (XINT (AREF (elt, 0)), 0, 0); | 1017 | from = MAKE_CHAR (XINT (AREF (elt, 0)), 0, 0); |
| 1018 | to = from; | 1018 | to = from; |
| 1019 | } | 1019 | } |