Skip to content

Commit 9c9380e

Browse files
committed
Merge branch 'release/0.5.11'
2 parents 6a51add + 37b2a5f commit 9c9380e

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('zathura', 'c',
2-
version: '0.5.10',
2+
version: '0.5.11',
33
meson_version: '>=0.61',
44
default_options: ['c_std=c17', 'warning_level=3'],
55
)

zathura/jumplist.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ void zathura_jumplist_add(zathura_t* zathura) {
108108
zathura_jumplist_reset_current(zathura);
109109

110110
zathura_jump_t* cur = zathura_jumplist_current(zathura);
111-
112111
if (cur != NULL) {
113112
if (fabs(cur->x - x) <= DBL_EPSILON && fabs(cur->y - y) <= DBL_EPSILON) {
114113
return;

zathura/zathura.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1413,7 +1413,7 @@ bool document_predecessor_free(zathura_t* zathura) {
14131413
}
14141414

14151415
bool document_close(zathura_t* zathura, bool keep_monitor) {
1416-
if (zathura_has_document(zathura)) {
1416+
if (zathura_has_document(zathura) == false) {
14171417
return false;
14181418
}
14191419

0 commit comments

Comments
 (0)