Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
pwmt
zathura
Commits
9bfe4f22
Commit
9bfe4f22
authored
Feb 25, 2016
by
Sebastian Ramacher
Browse files
Simplify
parent
ea094f23
Changes
1
Hide whitespace changes
Inline
Side-by-side
zathura/jumplist.c
View file @
9bfe4f22
...
...
@@ -53,11 +53,7 @@ zathura_jumplist_reset_current(zathura_t* zathura)
{
g_return_if_fail
(
zathura
!=
NULL
&&
zathura
->
jumplist
.
cur
!=
NULL
);
while
(
true
)
{
if
(
girara_list_iterator_has_next
(
zathura
->
jumplist
.
cur
)
==
false
)
{
return
;
}
while
(
girara_list_iterator_has_next
(
zathura
->
jumplist
.
cur
)
==
true
)
{
girara_list_iterator_next
(
zathura
->
jumplist
.
cur
);
}
}
...
...
Write
Preview
Supports
Markdown
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