Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
fa8e045a
Commit
fa8e045a
authored
Dec 15, 2009
by
Michael Albinus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
avoid compiler warnings. (Bug #5217).
parent
93e01d46
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
src/ChangeLog
src/ChangeLog
+5
-0
src/dbusbind.c
src/dbusbind.c
+2
-2
No files found.
src/ChangeLog
View file @
fa8e045a
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)
...
...
src/dbusbind.c
View file @
fa8e045a
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment