diff options
| author | Gregory Heytings | 2022-10-30 17:00:35 +0100 |
|---|---|---|
| committer | Gregory Heytings | 2022-10-30 17:00:35 +0100 |
| commit | aef803d6c3d61004f15d0bc82fa7bf9952302312 (patch) | |
| tree | 087c444f788cda27006ddc066ad430f62f5ac02a /src/dbusbind.c | |
| parent | 3bf19c417fd39766ee9c7a793c9faadd3bd88478 (diff) | |
| parent | 3fa4cca3d244f51e471e7779c934278731fc21e9 (diff) | |
| download | emacs-aef803d6c3d61004f15d0bc82fa7bf9952302312.tar.gz emacs-aef803d6c3d61004f15d0bc82fa7bf9952302312.zip | |
Merge master into feature/improved-locked-narrowing.
Diffstat (limited to 'src/dbusbind.c')
| -rw-r--r-- | src/dbusbind.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dbusbind.c b/src/dbusbind.c index 943a4aff8e7..1c74180f15c 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c | |||
| @@ -398,7 +398,7 @@ xd_signature (char *signature, int dtype, int parent_type, Lisp_Object object) | |||
| 398 | case DBUS_TYPE_BOOLEAN: | 398 | case DBUS_TYPE_BOOLEAN: |
| 399 | /* There must be an argument. */ | 399 | /* There must be an argument. */ |
| 400 | if (EQ (QCboolean, object)) | 400 | if (EQ (QCboolean, object)) |
| 401 | wrong_type_argument (intern ("booleanp"), object); | 401 | wrong_type_argument (Qbooleanp, object); |
| 402 | sprintf (signature, "%c", dtype); | 402 | sprintf (signature, "%c", dtype); |
| 403 | break; | 403 | break; |
| 404 | 404 | ||
| @@ -649,7 +649,7 @@ xd_append_arg (int dtype, Lisp_Object object, DBusMessageIter *iter) | |||
| 649 | case DBUS_TYPE_BOOLEAN: | 649 | case DBUS_TYPE_BOOLEAN: |
| 650 | /* There must be an argument. */ | 650 | /* There must be an argument. */ |
| 651 | if (EQ (QCboolean, object)) | 651 | if (EQ (QCboolean, object)) |
| 652 | wrong_type_argument (intern ("booleanp"), object); | 652 | wrong_type_argument (Qbooleanp, object); |
| 653 | { | 653 | { |
| 654 | dbus_bool_t val = (NILP (object)) ? FALSE : TRUE; | 654 | dbus_bool_t val = (NILP (object)) ? FALSE : TRUE; |
| 655 | XD_DEBUG_MESSAGE ("%c %s", dtype, (val == FALSE) ? "false" : "true"); | 655 | XD_DEBUG_MESSAGE ("%c %s", dtype, (val == FALSE) ? "false" : "true"); |