From 1ee9c78b296198bcec16bd9a9f01511ded9780e0 Mon Sep 17 00:00:00 2001 From: Jack Kelly Date: Mon, 16 Jul 2012 10:31:27 +1000 Subject: [PATCH] elisp: --batch implies -q, remove -q According to the emacs manual[1], --batch implies -q, so there's no need to pass -q when compiling elisp. * lib/am/lisp.am: Remove -q from $(EMACS) call. [1]: http://gnu.org/s/emacs/manual/html_node/emacs/Initial-Options.html Signed-off-by: Stefano Lattarini --- lib/am/lisp.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/am/lisp.am b/lib/am/lisp.am index b18568b75..36b124382 100644 --- a/lib/am/lisp.am +++ b/lib/am/lisp.am @@ -38,7 +38,7 @@ endif %?INSTALL% esac; \ ## Emacs byte-compilation won't create this automatically, sadly. test -d $$am__dir || $(MKDIR_P) $$am__dir || exit 1; \ - $(EMACS) -q --batch \ + $(EMACS) --batch \ $$am__subdir_includes -L $(builddir) -L $(srcdir) \ --eval "(defun byte-compile-dest-file (f) \"$@\")" \ --eval "(unless (byte-compile-file \"$<\") (kill-emacs 1))"; \ -- 2.47.2