From d067d05eb06d613f5b1be3f558eb88c814eda9fc Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Tue, 22 Sep 2020 12:06:38 +0200 Subject: Fix double regexp_quote --- src/comp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comp.c b/src/comp.c index f831b09ab1d..67736b2d94d 100644 --- a/src/comp.c +++ b/src/comp.c @@ -4070,7 +4070,7 @@ If BASE-DIR is nil use the first entry in `comp-eln-load-path'. */) sys_rx = Fregexp_quote (build_string (PATH_LOADSEARCH)); #endif loadsearch_re_list = - list2 (Fregexp_quote (sys_rx), + list2 (sys_rx, Fregexp_quote (build_string (PATH_DUMPLOADSEARCH))); } -- cgit v1.2.1