mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-01 09:51:22 -08:00
* dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
avoid compiler warnings. (Bug #5217).
This commit is contained in:
parent
93e01d46bd
commit
fa8e045a8a
2 changed files with 7 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2009-12-15 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
|
||||
avoid compiler warnings. (Bug #5217).
|
||||
|
||||
2009-12-14 Kenichi Handa <handa@m17n.org>
|
||||
|
||||
* coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
|
||||
|
|
|
|||
|
|
@ -688,10 +688,10 @@ xd_retrieve_arg (dtype, iter)
|
|||
{
|
||||
Lisp_Object result;
|
||||
struct gcpro gcpro1;
|
||||
result = Qnil;
|
||||
GCPRO1 (result);
|
||||
DBusMessageIter subiter;
|
||||
int subtype;
|
||||
result = Qnil;
|
||||
GCPRO1 (result);
|
||||
dbus_message_iter_recurse (iter, &subiter);
|
||||
while ((subtype = dbus_message_iter_get_arg_type (&subiter))
|
||||
!= DBUS_TYPE_INVALID)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue