diff options
| author | Po Lu | 2024-03-12 09:54:54 +0800 |
|---|---|---|
| committer | Po Lu | 2024-03-12 09:54:54 +0800 |
| commit | fd33b637e986e7ec1c34a1358b5c71e31db95c11 (patch) | |
| tree | 807a5e7abe74819fc53748bad6b9441177603c21 /src/androidselect.c | |
| parent | d7ded996082503ca00546c220c7ce8d96e16b76a (diff) | |
| download | emacs-fd33b637e986e7ec1c34a1358b5c71e31db95c11.tar.gz emacs-fd33b637e986e7ec1c34a1358b5c71e31db95c11.zip | |
; Fix omission from last change
* src/androidselect.c (android_notification_deleted): Adjust for
changed notification list format.
Diffstat (limited to 'src/androidselect.c')
| -rw-r--r-- | src/androidselect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/androidselect.c b/src/androidselect.c index bcb7bcd2c3b..a5a4c4c2e59 100644 --- a/src/androidselect.c +++ b/src/androidselect.c | |||
| @@ -908,7 +908,7 @@ android_notification_deleted (struct android_notification_event *event, | |||
| 908 | && sscanf (event->tag, "%*d.%*ld.%jd", &id) > 0) | 908 | && sscanf (event->tag, "%*d.%*ld.%jd", &id) > 0) |
| 909 | { | 909 | { |
| 910 | ie->kind = NOTIFICATION_EVENT; | 910 | ie->kind = NOTIFICATION_EVENT; |
| 911 | ie->arg = list3 (XCDR (item), make_int (id), | 911 | ie->arg = list3 (XCAR (XCDR (item)), make_int (id), |
| 912 | Qundefined); | 912 | Qundefined); |
| 913 | } | 913 | } |
| 914 | } | 914 | } |