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
2e0b197c
Commit
2e0b197c
authored
Oct 13, 2007
by
Eli Zaretskii
Browse files
(make_fontset): Use larger_vector.
parent
1d153206
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
9 deletions
+1
-9
src/fontset.c
src/fontset.c
+1
-9
No files found.
src/fontset.c
View file @
2e0b197c
...
...
@@ -391,15 +391,7 @@ make_fontset (frame, name, base)
while
(
!
NILP
(
AREF
(
Vfontset_table
,
id
)))
id
++
;
if
(
id
+
1
==
size
)
{
Lisp_Object
tem
;
int
i
;
tem
=
Fmake_vector
(
make_number
(
size
+
8
),
Qnil
);
for
(
i
=
0
;
i
<
size
;
i
++
)
AREF
(
tem
,
i
)
=
AREF
(
Vfontset_table
,
i
);
Vfontset_table
=
tem
;
}
Vfontset_table
=
larger_vector
(
Vfontset_table
,
size
+
8
,
Qnil
);
fontset
=
Fmake_char_table
(
Qfontset
,
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