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 <stefano.lattarini@gmail.com>
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))"; \