diff options
| author | Noam Postavsky | 2017-05-29 22:13:53 -0400 |
|---|---|---|
| committer | Noam Postavsky | 2017-05-29 22:18:55 -0400 |
| commit | 75b849294656fd92e77a2a6281ff4dceaaa38475 (patch) | |
| tree | 3df43d0cc640c8f5522461be9d346530d26e3bcd /src/lisp.h | |
| parent | 941a2e7347e3a0d393e67872e6151be8cc66d9a2 (diff) | |
| download | emacs-75b849294656fd92e77a2a6281ff4dceaaa38475.tar.gz emacs-75b849294656fd92e77a2a6281ff4dceaaa38475.zip | |
Rename '--new-daemon' to 'fg-daemon' and '--old-daemon' to '--bg-daemon'
* doc/emacs/cmdargs.texi (Initial Options):
* doc/lispref/os.texi (Startup Summary):
* etc/NEWS:
* etc/emacs.service:
* src/emacs.c (main):
* src/lisp.h: Rename '--new-daemon' to 'fg-daemon' and '--old-daemon' to
'--bg-daemon'.
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index 7290386b255..7b8f1e754d8 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -4167,7 +4167,7 @@ extern bool no_site_lisp; | |||
| 4167 | extern bool build_details; | 4167 | extern bool build_details; |
| 4168 | 4168 | ||
| 4169 | #ifndef WINDOWSNT | 4169 | #ifndef WINDOWSNT |
| 4170 | /* 0 not a daemon, 1 new-style (foreground), 2 old-style (background). */ | 4170 | /* 0 not a daemon, 1 foreground daemon, 2 background daemon. */ |
| 4171 | extern int daemon_type; | 4171 | extern int daemon_type; |
| 4172 | #define IS_DAEMON (daemon_type != 0) | 4172 | #define IS_DAEMON (daemon_type != 0) |
| 4173 | #define DAEMON_RUNNING (daemon_type >= 0) | 4173 | #define DAEMON_RUNNING (daemon_type >= 0) |