summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2020-09-22 12:06:38 +0200
committerAndrea Corallo <akrl@sdf.org>2020-09-22 12:06:38 +0200
commitd067d05eb06d613f5b1be3f558eb88c814eda9fc (patch)
tree6d2258a7fbaaff79b165e6eab0341be98d25aaba
parent5297288a38944a8727f6f6613836034b439b202d (diff)
downloademacs-scratch/native-comp-macos-43532.tar.gz
Fix double regexp_quotescratch/native-comp-macos-43532
-rw-r--r--src/comp.c2
1 files changed, 1 insertions, 1 deletions
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)));
}