aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Corallo2020-09-22 12:06:38 +0200
committerAndrea Corallo2020-09-22 12:06:38 +0200
commitd067d05eb06d613f5b1be3f558eb88c814eda9fc (patch)
tree6d2258a7fbaaff79b165e6eab0341be98d25aaba
parent5297288a38944a8727f6f6613836034b439b202d (diff)
downloademacs-scratch/native-comp-macos-43532.tar.gz
emacs-scratch/native-comp-macos-43532.zip
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'. */)
4070 sys_rx = Fregexp_quote (build_string (PATH_LOADSEARCH)); 4070 sys_rx = Fregexp_quote (build_string (PATH_LOADSEARCH));
4071#endif 4071#endif
4072 loadsearch_re_list = 4072 loadsearch_re_list =
4073 list2 (Fregexp_quote (sys_rx), 4073 list2 (sys_rx,
4074 Fregexp_quote (build_string (PATH_DUMPLOADSEARCH))); 4074 Fregexp_quote (build_string (PATH_DUMPLOADSEARCH)));
4075 } 4075 }
4076 4076