diff options
| author | Michael Albinus | 2012-10-31 12:45:40 +0100 |
|---|---|---|
| committer | Michael Albinus | 2012-10-31 12:45:40 +0100 |
| commit | 220cb2bd70c65041417554cc2dc10edb4a53de5c (patch) | |
| tree | c9f8bb60feaf7b7aa86a75c5aba3b06e85ef4e0b /src | |
| parent | 218e997a10bc1bc2eebde639f9b0aaddc525159d (diff) | |
| download | emacs-220cb2bd70c65041417554cc2dc10edb4a53de5c.tar.gz emacs-220cb2bd70c65041417554cc2dc10edb4a53de5c.zip | |
* dbusbind.c: Fix cut'n'waste error. Use HAVE_DBUS_VALIDATE_INTERFACE.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/dbusbind.c | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 3ad653efd0f..4edb3a7007b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-10-31 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * dbusbind.c: Fix cut'n'waste error. Use HAVE_DBUS_VALIDATE_INTERFACE. | ||
| 4 | |||
| 1 | 2012-10-31 Martin Rudalics <rudalics@gmx.at> | 5 | 2012-10-31 Martin Rudalics <rudalics@gmx.at> |
| 2 | 6 | ||
| 3 | * minibuf.c (read_minibuf): Restore current buffer since | 7 | * minibuf.c (read_minibuf): Restore current buffer since |
| @@ -6082,7 +6086,7 @@ | |||
| 6082 | * lisp.h (make_formatted_string): New prototype. | 6086 | * lisp.h (make_formatted_string): New prototype. |
| 6083 | * alloc.c (make_formatted_string): New function. | 6087 | * alloc.c (make_formatted_string): New function. |
| 6084 | * buffer.c (Fgenerate_new_buffer_name): Use it. | 6088 | * buffer.c (Fgenerate_new_buffer_name): Use it. |
| 6085 | * dbus.c (syms_of_dbusbind): Likewise. | 6089 | * dbusbind.c (syms_of_dbusbind): Likewise. |
| 6086 | * editfns.c (Fcurrent_time_zone): Likewise. | 6090 | * editfns.c (Fcurrent_time_zone): Likewise. |
| 6087 | * filelock.c (get_boot_time): Likewise. | 6091 | * filelock.c (get_boot_time): Likewise. |
| 6088 | * frame.c (make_terminal_frame, set_term_frame_name) | 6092 | * frame.c (make_terminal_frame, set_term_frame_name) |
diff --git a/src/dbusbind.c b/src/dbusbind.c index 08f34f47042..80086946fc4 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c | |||
| @@ -299,8 +299,8 @@ xd_symbol_to_dbus_type (Lisp_Object object) | |||
| 299 | } \ | 299 | } \ |
| 300 | } while (0) | 300 | } while (0) |
| 301 | 301 | ||
| 302 | #if (HAVE_DBUS_VALIDATE_BUS_NAME || HAVE_DBUS_VALIDATE_PATH \ | 302 | #if (HAVE_DBUS_VALIDATE_BUS_NAME || HAVE_DBUS_VALIDATE_PATH \ |
| 303 | || XD_DBUS_VALIDATE_OBJECT || HAVE_DBUS_VALIDATE_MEMBER) | 303 | || HAVE_DBUS_VALIDATE_INTERFACE || HAVE_DBUS_VALIDATE_MEMBER) |
| 304 | #define XD_DBUS_VALIDATE_OBJECT(object, func) \ | 304 | #define XD_DBUS_VALIDATE_OBJECT(object, func) \ |
| 305 | do { \ | 305 | do { \ |
| 306 | if (!NILP (object)) \ | 306 | if (!NILP (object)) \ |