emacs-diffs
[Top][All Lists]
Advanced

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

scratch/no-purespace 9a0728af9df 15/41: Don't recognize "bootstrap" opti


From: Stefan Kangas
Subject: scratch/no-purespace 9a0728af9df 15/41: Don't recognize "bootstrap" option for --temacs
Date: Thu, 12 Dec 2024 16:57:34 -0500 (EST)

branch: scratch/no-purespace
commit 9a0728af9df7c208a7e93f8e970b7348b1273fee
Author: Pip Cet <pipcet@protonmail.com>
Commit: Stefan Kangas <stefankangas@gmail.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 496a107d49d..13413e36459 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]