diff options
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); |