aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2024-02-24 11:27:12 +0200
committerEli Zaretskii2024-02-24 11:27:12 +0200
commit03fce8401639a1d60bb66bf374d3d44b3331ac8a (patch)
treeee4b2e57e0c9f7d9b9051e21d0c4b09a342d19da
parent526c262149839702b94253d5eff195054ac5cd9e (diff)
downloademacs-03fce8401639a1d60bb66bf374d3d44b3331ac8a.tar.gz
emacs-03fce8401639a1d60bb66bf374d3d44b3331ac8a.zip
; Fix last change in lisp.h.
-rw-r--r--src/lisp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 309bea02238..f353e4956eb 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -5153,7 +5153,7 @@ extern bool build_details;
5153/* 0 not a daemon, 1 foreground daemon, 2 background daemon. */ 5153/* 0 not a daemon, 1 foreground daemon, 2 background daemon. */
5154extern int daemon_type; 5154extern int daemon_type;
5155#define IS_DAEMON (daemon_type != 0) 5155#define IS_DAEMON (daemon_type != 0)
5156/* True means daemon-initialized has not yet been called. */ 5156/* Non-zero means daemon-initialized has not yet been called. */
5157#define DAEMON_RUNNING (daemon_type >= 0) 5157#define DAEMON_RUNNING (daemon_type >= 0)
5158#else /* WINDOWSNT */ 5158#else /* WINDOWSNT */
5159extern void *w32_daemon_event; 5159extern void *w32_daemon_event;