diff options
| author | Dmitry Antipov | 2013-02-08 09:28:52 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2013-02-08 09:28:52 +0400 |
| commit | 25721f5bb5681c22f666a0b4e61d94687d92a671 (patch) | |
| tree | 2ea496a25332f603727cc978192bc415c885c02a /src/syntax.c | |
| parent | 9a9d91d9c247adefa7137338d7609d81734f888d (diff) | |
| download | emacs-25721f5bb5681c22f666a0b4e61d94687d92a671.tar.gz emacs-25721f5bb5681c22f666a0b4e61d94687d92a671.zip | |
* lisp.h (make_uninit_vector): New function.
* alloc.c (Fvector, Fmake_byte_code):
* ccl.c (Fregister_ccl_program):
* charset.c (Fdefine_charset_internal, define_charset_internal):
* coding.c (make_subsidiaries, Fdefine_coding_system_internal):
* composite.c (syms_of_composite):
* font.c (Fquery_font, Ffont_info, syms_of_font):
* fontset.c (FONT_DEF_NEW, Fset_fontset_font):
* ftfont.c (ftfont_shape_by_flt):
* indent.c (recompute_width_table):
* nsselect.m (clean_local_selection_data):
* syntax.c (init_syntax_once):
* w32unsubscribe.c (uniscribe_shape):
* window.c (Fcurrent_window_configuration):
* xfaces.c (Fx_family_fonts):
* xselect.c (selection_data_to_lisp_data): Use it.
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syntax.c b/src/syntax.c index 72d904914ec..6febcd266c0 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -3389,8 +3389,8 @@ init_syntax_once (void) | |||
| 3389 | Qchar_table_extra_slots = intern_c_string ("char-table-extra-slots"); | 3389 | Qchar_table_extra_slots = intern_c_string ("char-table-extra-slots"); |
| 3390 | 3390 | ||
| 3391 | /* Create objects which can be shared among syntax tables. */ | 3391 | /* Create objects which can be shared among syntax tables. */ |
| 3392 | Vsyntax_code_object = Fmake_vector (make_number (Smax), Qnil); | 3392 | Vsyntax_code_object = make_uninit_vector (Smax); |
| 3393 | for (i = 0; i < ASIZE (Vsyntax_code_object); i++) | 3393 | for (i = 0; i < Smax; i++) |
| 3394 | ASET (Vsyntax_code_object, i, Fcons (make_number (i), Qnil)); | 3394 | ASET (Vsyntax_code_object, i, Fcons (make_number (i), Qnil)); |
| 3395 | 3395 | ||
| 3396 | /* Now we are ready to set up this property, so we can | 3396 | /* Now we are ready to set up this property, so we can |