From: Daniel Colascione Date: Mon, 15 Oct 2012 10:10:17 +0000 (-0800) Subject: Add comment for undef of "interface" X-Git-Tag: emacs-24.2.90~233^2~13 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9520f2f20c77fbb2631511f9c0c8e74c5759d834;p=emacs.git Add comment for undef of "interface" --- diff --git a/src/ChangeLog b/src/ChangeLog index 6acc22a1b27..b822c7e6af1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2012-10-15 Daniel Colascione + + * dbusbind.c: Add comment explaining reason for previous change. + 2012-10-15 Martin Rudalics * window.c (Fwindow_end): Rewrite check whether cached position diff --git a/src/dbusbind.c b/src/dbusbind.c index 43938bb79d5..08f34f47042 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c @@ -32,6 +32,10 @@ along with GNU Emacs. If not, see . */ #define DBUS_NUM_MESSAGE_TYPES 5 #endif + +/* Some platforms define the symbol "interface", but we want to use it + * as a variable name below. */ + #ifdef interface #undef interface #endif