diff options
| author | Eli Zaretskii | 2019-08-04 19:38:08 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2019-08-04 19:38:08 +0300 |
| commit | f01597a43ea2eac38cfbb829f301c2e6e3bcbe83 (patch) | |
| tree | 8a19916d841cdd81696e1d74cb4ef1cd9d45dfad /src | |
| parent | 3c459e3b05e699736b849cb2c4687aef3ce6810b (diff) | |
| download | emacs-f01597a43ea2eac38cfbb829f301c2e6e3bcbe83.tar.gz emacs-f01597a43ea2eac38cfbb829f301c2e6e3bcbe83.zip | |
Fix the MS-Windows build broken by recent changes
* src/inotify.c (syms_of_inotify) <Qignored>: Don't define here...
* src/coding.c (syms_of_coding) <Qignored>: ...define it here,
because it is needed also on platforms that don't compile
inotify.c.
Diffstat (limited to 'src')
| -rw-r--r-- | src/coding.c | 2 | ||||
| -rw-r--r-- | src/inotify.c | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/coding.c b/src/coding.c index 877177b1882..2ddd34eb7b6 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -11684,6 +11684,8 @@ syms_of_coding (void) | |||
| 11684 | symbol as a coding system. */ | 11684 | symbol as a coding system. */ |
| 11685 | DEFSYM (Qcoding_system_define_form, "coding-system-define-form"); | 11685 | DEFSYM (Qcoding_system_define_form, "coding-system-define-form"); |
| 11686 | 11686 | ||
| 11687 | DEFSYM (Qignored, "ignored"); | ||
| 11688 | |||
| 11687 | defsubr (&Scoding_system_p); | 11689 | defsubr (&Scoding_system_p); |
| 11688 | defsubr (&Sread_coding_system); | 11690 | defsubr (&Sread_coding_system); |
| 11689 | defsubr (&Sread_non_nil_coding_system); | 11691 | defsubr (&Sread_non_nil_coding_system); |
diff --git a/src/inotify.c b/src/inotify.c index e8891aefc7a..7c1d699ce32 100644 --- a/src/inotify.c +++ b/src/inotify.c | |||
| @@ -530,7 +530,10 @@ syms_of_inotify (void) | |||
| 530 | DEFSYM (Qdont_follow, "dont-follow"); /* IN_DONT_FOLLOW */ | 530 | DEFSYM (Qdont_follow, "dont-follow"); /* IN_DONT_FOLLOW */ |
| 531 | DEFSYM (Qonlydir, "onlydir"); /* IN_ONLYDIR */ | 531 | DEFSYM (Qonlydir, "onlydir"); /* IN_ONLYDIR */ |
| 532 | 532 | ||
| 533 | #if 0 | ||
| 534 | /* Defined in coding.c, which uses it on all platforms. */ | ||
| 533 | DEFSYM (Qignored, "ignored"); /* IN_IGNORED */ | 535 | DEFSYM (Qignored, "ignored"); /* IN_IGNORED */ |
| 536 | #endif | ||
| 534 | DEFSYM (Qisdir, "isdir"); /* IN_ISDIR */ | 537 | DEFSYM (Qisdir, "isdir"); /* IN_ISDIR */ |
| 535 | DEFSYM (Qq_overflow, "q-overflow"); /* IN_Q_OVERFLOW */ | 538 | DEFSYM (Qq_overflow, "q-overflow"); /* IN_Q_OVERFLOW */ |
| 536 | DEFSYM (Qunmount, "unmount"); /* IN_UNMOUNT */ | 539 | DEFSYM (Qunmount, "unmount"); /* IN_UNMOUNT */ |