aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2015-09-16 16:09:09 -0700
committerPaul Eggert2015-09-16 16:09:31 -0700
commit309d39b832ccd72f99cc726090ff03f7e146948d (patch)
tree630c5f5bc13cb979dc52556ebe5bd0264002e4da
parente56096dbb9560b558f74d2b21e21659e221b914c (diff)
downloademacs-309d39b832ccd72f99cc726090ff03f7e146948d.tar.gz
emacs-309d39b832ccd72f99cc726090ff03f7e146948d.zip
A few more minor quoting fixes in a script and a text file
-rw-r--r--lisp/Makefile.in12
-rw-r--r--lisp/README3
2 files changed, 7 insertions, 8 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 8bcb2d6dc5f..15d4d37f7ba 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -103,7 +103,7 @@ BYTE_COMPILE_FLAGS = $(BIG_STACK_OPTS) \
103# Files to compile before others during a bootstrap. This is done to 103# Files to compile before others during a bootstrap. This is done to
104# speed up the bootstrap process. They're ordered by size, so we use 104# speed up the bootstrap process. They're ordered by size, so we use
105# the slowest-compiler on the smallest file and move to larger files as the 105# the slowest-compiler on the smallest file and move to larger files as the
106# compiler gets faster. `autoload.elc' comes last because it is not used by 106# compiler gets faster. 'autoload.elc' comes last because it is not used by
107# the compiler (so its compilation does not speed up subsequent compilations), 107# the compiler (so its compilation does not speed up subsequent compilations),
108# it's only placed here so as to speed up generation of the loaddefs.el file. 108# it's only placed here so as to speed up generation of the loaddefs.el file.
109 109
@@ -272,22 +272,22 @@ $(THEFILE)c:
272 272
273compile-first: $(COMPILE_FIRST) 273compile-first: $(COMPILE_FIRST)
274 274
275# In `compile-main' we could directly do 275# In 'compile-main' we could directly do
276# ... | xargs $(MAKE) 276# ... | xargs $(MAKE)
277# and it works, but it generates a lot of messages like 277# and it works, but it generates a lot of messages like
278# make[2]: gnus/gnus-mlspl.elc is up to date. 278# make[2]: gnus/gnus-mlspl.elc is up to date.
279# so instead, we use "xargs echo" to split the list of file into manageable 279# so instead, we use "xargs echo" to split the list of file into manageable
280# chunks and then use an intermediate `compile-targets' target so the 280# chunks and then use an intermediate 'compile-targets' target so the
281# actual targets (the .elc files) are not mentioned as targets on the 281# actual targets (the .elc files) are not mentioned as targets on the
282# make command line. 282# make command line.
283 283
284 284
285.PHONY: compile-targets 285.PHONY: compile-targets
286# TARGETS is set dynamically in the recursive call from `compile-main'. 286# TARGETS is set dynamically in the recursive call from 'compile-main'.
287compile-targets: $(TARGETS) 287compile-targets: $(TARGETS)
288 288
289# Compile all the Elisp files that need it. Beware: it approximates 289# Compile all the Elisp files that need it. Beware: it approximates
290# `no-byte-compile', so watch out for false-positives! 290# 'no-byte-compile', so watch out for false-positives!
291compile-main: leim semantic compile-clean 291compile-main: leim semantic compile-clean
292 @(cd $(lisp) && \ 292 @(cd $(lisp) && \
293 els=`echo "${SUBDIRS_REL} " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.el |g'`; \ 293 els=`echo "${SUBDIRS_REL} " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.el |g'`; \
@@ -326,7 +326,7 @@ semantic:
326compile: $(LOADDEFS) autoloads compile-first 326compile: $(LOADDEFS) autoloads compile-first
327 $(MAKE) compile-main 327 $(MAKE) compile-main
328 328
329# Compile all Lisp files. This is like `compile' but compiles files 329# Compile all Lisp files. This is like 'compile' but compiles files
330# unconditionally. Some files don't actually get compiled because they 330# unconditionally. Some files don't actually get compiled because they
331# set the local variable no-byte-compile. 331# set the local variable no-byte-compile.
332compile-always: 332compile-always:
diff --git a/lisp/README b/lisp/README
index e250a700426..b68ad5e30f9 100644
--- a/lisp/README
+++ b/lisp/README
@@ -6,8 +6,7 @@ files are architecture-independent.
6The term subdirectory contains Lisp files that customize Emacs for 6The term subdirectory contains Lisp files that customize Emacs for
7certain terminal types. When Emacs starts, it checks the TERM 7certain terminal types. When Emacs starts, it checks the TERM
8environment variable to get the terminal type and loads 8environment variable to get the terminal type and loads
9`term/${TERM}.el' if it exists. 9'term/${TERM}.el' if it exists.
10 10
11The other subdirectories hold Lisp packages grouped by their general 11The other subdirectories hold Lisp packages grouped by their general
12purpose. 12purpose.
13