emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

scratch/no-purespace 093fd31413b 07/11: Don't recognize "bootstrap" opti


From: Pip Cet
Subject: scratch/no-purespace 093fd31413b 07/11: Don't recognize "bootstrap" option for --temacs
Date: Wed, 21 Aug 2024 05:57:05 -0400 (EDT)

branch: scratch/no-purespace
commit 093fd31413bc19353d54226d837f940061a64c66
Author: Pip Cet <pipcet@protonmail.com>
Commit: Pip Cet <pipcet@protonmail.com>

    Don't recognize "bootstrap" option for --temacs
    
    This option only makes sense for unexec dumping.
    
    * src/emacs.c (main): Recognize "pbootstrap" only, not "bootstrap".
---
 src/emacs.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/emacs.c b/src/emacs.c
index 19357b3ebcd..9a45e9ffec1 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1310,8 +1310,7 @@ main (int argc, char **argv)
       if (strcmp (temacs, "pdump") == 0 ||
           strcmp (temacs, "pbootstrap") == 0)
         gflags.will_dump_with_pdumper_ = true;
-      if (strcmp (temacs, "bootstrap") == 0 ||
-          strcmp (temacs, "pbootstrap") == 0)
+      if (strcmp (temacs, "pbootstrap") == 0)
         gflags.will_bootstrap_ = true;
       gflags.will_dump_ =
         will_dump_with_pdumper_p ();



reply via email to

[Prev in Thread] Current Thread [Next in Thread]