[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 ();
- scratch/no-purespace updated (1e8513ee38e -> 2bf9a47aa7b), Pip Cet, 2024/08/21
- scratch/no-purespace a0ae37e68c3 03/11: Handle obsolete :purecopy keyword better in Fmake_hash_table, Pip Cet, 2024/08/21
- scratch/no-purespace d119fd3084a 04/11: Fixup for "Pure storage removal: Remove purecopy hash table flag", Pip Cet, 2024/08/21
- scratch/no-purespace e80868ced1b 02/11: Fixup for "Unexec removal: Main part", Pip Cet, 2024/08/21
- scratch/no-purespace 093fd31413b 07/11: Don't recognize "bootstrap" option for --temacs,
Pip Cet <=
- scratch/no-purespace f118b3dbd47 08/11: Unexec removal: Documentation adjustments, Pip Cet, 2024/08/21
- scratch/no-purespace f1cd3b5c503 09/11: Unexec removal: Build system, Pip Cet, 2024/08/21
- scratch/no-purespace 78b5d9f6848 05/11: Fixup for "Pure storage removal: Replace calls to removed functions", Pip Cet, 2024/08/21
- scratch/no-purespace 2fecbfca337 10/11: Fixup for "Unexec removal: Main part", Pip Cet, 2024/08/21
- scratch/no-purespace 76330ffd560 01/11: Fixup: remove from "Pure storage removal: Main part", Pip Cet, 2024/08/21
- scratch/no-purespace 8c6f7f16839 06/11: Pure storage removal: Documentation, Pip Cet, 2024/08/21
- scratch/no-purespace 2bf9a47aa7b 11/11: Fixup for "Pure storage removal: Main part"., Pip Cet, 2024/08/21