[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master eaf5bf736e1: Invert preprocessor condition to fix 'C-x 4 a'
From: |
Stefan Kangas |
Subject: |
master eaf5bf736e1: Invert preprocessor condition to fix 'C-x 4 a' |
Date: |
Sun, 15 Dec 2024 21:42:49 -0500 (EST) |
branch: master
commit eaf5bf736e1dd5eb977a16a3f1b3dfd3da3c4612
Author: Stefan Kangas <stefankangas@gmail.com>
Commit: Stefan Kangas <stefankangas@gmail.com>
Invert preprocessor condition to fix 'C-x 4 a'
Typing 'C-x 4 a' in the main function now correctly adds 'main' to the
generated ChangeLog, whereas before it added 'andreid_emacs_init'.
Inverting the preprocessor condition seems like an easier fix than
changing the add-change-log-entry-other-window heuristic.
* src/emacs.c (main): Invert preprocessor condition to appease the
'add-change-log-entry-other-window' heuristic.
---
src/emacs.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/emacs.c b/src/emacs.c
index bdd9eee10c4..25b014bf83c 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1263,12 +1263,12 @@ maybe_load_seccomp (int argc, char **argv)
#endif /* SECCOMP_USABLE */
-#if defined HAVE_ANDROID && !defined ANDROID_STUBIFY
+#if !defined HAVE_ANDROID || defined ANDROID_STUBIFY
int
-android_emacs_init (int argc, char **argv, char *dump_file)
+main (int argc, char **argv)
#else
int
-main (int argc, char **argv)
+android_emacs_init (int argc, char **argv, char *dump_file)
#endif
{
/* Variable near the bottom of the stack, and aligned appropriately
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- master eaf5bf736e1: Invert preprocessor condition to fix 'C-x 4 a',
Stefan Kangas <=