From: Eli Zaretskii Date: Fri, 13 Nov 2015 09:07:43 +0000 (+0200) Subject: Fix last change X-Git-Tag: emacs-25.0.90~804^2~12 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=508e77b;p=emacs.git Fix last change * src/w32fns.c (syms_of_w32fns) [WINDOWSNT && !HAVE_DBUS]: Don't DEFSYM tray notification symbols if D-Bus is being used. --- diff --git a/src/w32fns.c b/src/w32fns.c index 475864bb45b..f2d286d6364 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -9294,6 +9294,7 @@ syms_of_w32fns (void) DEFSYM (Qframes, "frames"); DEFSYM (Qtip_frame, "tip-frame"); DEFSYM (Qunicode_sip, "unicode-sip"); +#if defined WINDOWSNT && !defined HAVE_DBUS DEFSYM (QCicon, ":icon"); DEFSYM (QCtip, ":tip"); DEFSYM (QClevel, ":level"); @@ -9302,6 +9303,7 @@ syms_of_w32fns (void) DEFSYM (QCtimeout, ":timeout"); DEFSYM (QCtitle, ":title"); DEFSYM (QCbody, ":body"); +#endif /* Symbols used elsewhere, but only in MS-Windows-specific code. */ DEFSYM (Qgnutls_dll, "gnutls");