aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2011-01-07 18:41:14 -0800
committerGlenn Morris2011-01-07 18:41:14 -0800
commitd0981f82865f355544d5f80ed819d408d12c3024 (patch)
tree7960e3277bb604d2bb3ed27665b7f1e2df990d96 /src
parent4967fa34221e7028580c552d31d010b606b8c11b (diff)
downloademacs-d0981f82865f355544d5f80ed819d408d12c3024.tar.gz
emacs-d0981f82865f355544d5f80ed819d408d12c3024.zip
In Makefiles, -batch implies -q.
* leim/makefile.w32-in (RUN_EMACS): * leim/Makefile.in (RUN-EMACS): -batch implies --no-init-file. * lisp/makefile.w32-in (EMACSOPT): -batch implies --no-init-file. * src/makefile.w32-in ($(EMACS)): * src/Makefile.in (emacs$(EXEEXT)): -batch implies -q.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/Makefile.in6
-rw-r--r--src/makefile.w32-in4
3 files changed, 8 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d8c0bee3577..1e38db4fd61 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12011-01-08 Glenn Morris <rgm@gnu.org> 12011-01-08 Glenn Morris <rgm@gnu.org>
2 2
3 * makefile.w32-in ($(EMACS)):
4 * Makefile.in (emacs$(EXEEXT)): -batch implies -q.
5
3 * xdisp.c (syms_of_xdisp) <Qrisky_local_variable>: Move from here... 6 * xdisp.c (syms_of_xdisp) <Qrisky_local_variable>: Move from here...
4 * emacs.c (syms_of_emacs) <Qrisky_local_variable>: ...to here. 7 * emacs.c (syms_of_emacs) <Qrisky_local_variable>: ...to here.
5 8
diff --git a/src/Makefile.in b/src/Makefile.in
index 61b42f17030..0f85428b88c 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -1,7 +1,7 @@
1# src/Makefile for GNU Emacs. 1# src/Makefile for GNU Emacs.
2 2
3# Copyright (C) 1985, 1987, 1988, 1993, 1994, 1995, 1999, 2000, 2001, 2002, 3# Copyright (C) 1985, 1987, 1988, 1993, 1994, 1995, 1999, 2000, 2001, 2002,
4# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 4# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
5# Free Software Foundation, Inc. 5# Free Software Foundation, Inc.
6 6
7# This file is part of GNU Emacs. 7# This file is part of GNU Emacs.
@@ -612,12 +612,12 @@ all: emacs$(EXEEXT) $(OTHER_FILES)
612emacs$(EXEEXT): temacs$(EXEEXT) $(etc)/DOC $(lisp) 612emacs$(EXEEXT): temacs$(EXEEXT) $(etc)/DOC $(lisp)
613 if test "$(CANNOT_DUMP)" = "yes"; then \ 613 if test "$(CANNOT_DUMP)" = "yes"; then \
614 ln -f temacs$(EXEEXT) emacs$(EXEEXT); \ 614 ln -f temacs$(EXEEXT) emacs$(EXEEXT); \
615 EMACSLOADPATH=$(lispsource) ./emacs -q -batch \ 615 EMACSLOADPATH=$(lispsource) ./emacs -batch \
616 -f list-load-path-shadows || true; \ 616 -f list-load-path-shadows || true; \
617 else \ 617 else \
618 LC_ALL=C $(RUN_TEMACS) -batch -l loadup dump || exit 1; \ 618 LC_ALL=C $(RUN_TEMACS) -batch -l loadup dump || exit 1; \
619 ln -f emacs$(EXEEXT) bootstrap-emacs$(EXEEXT); \ 619 ln -f emacs$(EXEEXT) bootstrap-emacs$(EXEEXT); \
620 ./emacs -q -batch -f list-load-path-shadows || true; \ 620 ./emacs -batch -f list-load-path-shadows || true; \
621 fi 621 fi
622 622
623## We run make-docfile twice because the command line may get too long 623## We run make-docfile twice because the command line may get too long
diff --git a/src/makefile.w32-in b/src/makefile.w32-in
index 21bdeb8443f..9d0f7df3bfb 100644
--- a/src/makefile.w32-in
+++ b/src/makefile.w32-in
@@ -1,6 +1,6 @@
1# -*- Makefile -*- for GNU Emacs on the Microsoft W32 API. 1# -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3# 2008, 2009, 2010 Free Software Foundation, Inc. 3# 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
4 4
5# This file is part of GNU Emacs. 5# This file is part of GNU Emacs.
6 6
@@ -165,7 +165,7 @@ all: $(ALL)
165emacs: stamp_BLD $(EMACS) 165emacs: stamp_BLD $(EMACS)
166$(EMACS): $(DOC) $(TEMACS) 166$(EMACS): $(DOC) $(TEMACS)
167 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump 167 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
168 -"$(THISDIR)/$(BLD)/emacs.exe" -q -batch -f list-load-path-shadows 168 -"$(THISDIR)/$(BLD)/emacs.exe" -batch -f list-load-path-shadows
169 169
170# 170#
171# The undumped executable 171# The undumped executable