diff options
author | Daniel Colascione <dancol@dancol.org> | 2012-10-15 02:10:17 -0800 |
---|---|---|
committer | Daniel Colascione <dancol@dancol.org> | 2012-10-15 02:10:17 -0800 |
commit | 9520f2f20c77fbb2631511f9c0c8e74c5759d834 (patch) | |
tree | a1ab419bd12f6dfc0352c9e8697af2f153b70e9b /src/dbusbind.c | |
parent | dca778d53aad12df44dbac8f99c288fa4f9f04b2 (diff) | |
download | emacs-9520f2f20c77fbb2631511f9c0c8e74c5759d834.tar.gz |
Add comment for undef of "interface"
Diffstat (limited to 'src/dbusbind.c')
-rw-r--r-- | src/dbusbind.c | 4 |
1 files changed, 4 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>. */ #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 |