mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-09 13:10:57 -08:00
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.
This commit is contained in:
parent
3c459e3b05
commit
f01597a43e
2 changed files with 5 additions and 0 deletions
|
|
@ -11684,6 +11684,8 @@ syms_of_coding (void)
|
|||
symbol as a coding system. */
|
||||
DEFSYM (Qcoding_system_define_form, "coding-system-define-form");
|
||||
|
||||
DEFSYM (Qignored, "ignored");
|
||||
|
||||
defsubr (&Scoding_system_p);
|
||||
defsubr (&Sread_coding_system);
|
||||
defsubr (&Sread_non_nil_coding_system);
|
||||
|
|
|
|||
|
|
@ -530,7 +530,10 @@ syms_of_inotify (void)
|
|||
DEFSYM (Qdont_follow, "dont-follow"); /* IN_DONT_FOLLOW */
|
||||
DEFSYM (Qonlydir, "onlydir"); /* IN_ONLYDIR */
|
||||
|
||||
#if 0
|
||||
/* Defined in coding.c, which uses it on all platforms. */
|
||||
DEFSYM (Qignored, "ignored"); /* IN_IGNORED */
|
||||
#endif
|
||||
DEFSYM (Qisdir, "isdir"); /* IN_ISDIR */
|
||||
DEFSYM (Qq_overflow, "q-overflow"); /* IN_Q_OVERFLOW */
|
||||
DEFSYM (Qunmount, "unmount"); /* IN_UNMOUNT */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue