diff options
Diffstat (limited to 'src/font.c')
-rw-r--r-- | src/font.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/font.c b/src/font.c index 2a8cf2e48a7..a393597e06c 100644 --- a/src/font.c +++ b/src/font.c @@ -253,7 +253,7 @@ font_intern_prop (const char *str, int len, int force_symbol) /* The following code is copied from the function intern (in lread.c), and modified to suite our purpose. */ obarray = Vobarray; - if (!VECTORP (obarray) || XVECTOR (obarray)->size == 0) + if (!VECTORP (obarray) || XVECTOR_SIZE (obarray) == 0) obarray = check_obarray (obarray); parse_str_as_multibyte ((unsigned char *) str, len, &nchars, &nbytes); if (len == nchars || len != nbytes) |