diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2020-08-15 10:48:36 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2020-08-15 11:19:51 -0700 |
commit | f1b06fd5fc66377f85b420d3d40c666da9dca2a5 (patch) | |
tree | 588b05ababc36aaec1d28f6543aa35b180cba79c /src/search.c | |
parent | d0145537fa511a44e2a4af01da3947e92f0b8331 (diff) | |
download | emacs-f1b06fd5fc66377f85b420d3d40c666da9dca2a5.tar.gz emacs-f1b06fd5fc66377f85b420d3d40c666da9dca2a5.tar.bz2 emacs-f1b06fd5fc66377f85b420d3d40c666da9dca2a5.zip |
Prefer Fvector to make_uninit_vector
Fvector is less error-prone than make_uninit_vector, as it
avoids the possibility of a GC crash due to an uninitialized
vector. So prefer Fvector to make_uninit_vector when this is
easy (and when there's no significant performance difference).
Inspired by a suggestion by Pip Cet in:
https://lists.gnu.org/r/emacs-devel/2020-08/msg00313.html
* src/ccl.c (Fregister_ccl_program):
* src/ccl.c (Fregister_ccl_program):
* src/charset.c (Fdefine_charset_internal):
* src/font.c (Fquery_font, Ffont_info, syms_of_font):
* src/fontset.c (font_def_new, Fset_fontset_font):
* src/ftfont.c (ftfont_shape_by_flt):
* src/hbfont.c (hbfont_shape):
* src/macfont.m (macfont_shape):
* src/search.c (Fnewline_cache_check):
* src/xfaces.c (Fx_family_fonts):
* src/xfns.c (Fx_window_property_attributes):
Prefer Fvector to make_uninit_vector when either is easy.
* src/fontset.c (font_def_new): Now a function with one less
arg instead of a do-while macro, and renamed from FONT_DEF_NEW.
All uses changed.
Diffstat (limited to 'src/search.c')
-rw-r--r-- | src/search.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/search.c b/src/search.c index 23b31d92810..6fb3716cd43 100644 --- a/src/search.c +++ b/src/search.c @@ -3306,9 +3306,7 @@ the buffer. If the buffer doesn't have a cache, the value is nil. */) } /* Construct the value and return it. */ - val = make_uninit_vector (2); - ASET (val, 0, cache_newlines); - ASET (val, 1, buf_newlines); + val = CALLN (Fvector, cache_newlines, buf_newlines); if (old != NULL) set_buffer_internal_1 (old); |