File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 1
1
project (' zathura' , ' c' ,
2
- version : ' 0.5.10 ' ,
2
+ version : ' 0.5.11 ' ,
3
3
meson_version : ' >=0.61' ,
4
4
default_options : [' c_std=c17' , ' warning_level=3' ],
5
5
)
Original file line number Diff line number Diff line change @@ -108,7 +108,6 @@ void zathura_jumplist_add(zathura_t* zathura) {
108
108
zathura_jumplist_reset_current (zathura );
109
109
110
110
zathura_jump_t * cur = zathura_jumplist_current (zathura );
111
-
112
111
if (cur != NULL ) {
113
112
if (fabs (cur -> x - x ) <= DBL_EPSILON && fabs (cur -> y - y ) <= DBL_EPSILON ) {
114
113
return ;
Original file line number Diff line number Diff line change @@ -1413,7 +1413,7 @@ bool document_predecessor_free(zathura_t* zathura) {
1413
1413
}
1414
1414
1415
1415
bool document_close (zathura_t * zathura , bool keep_monitor ) {
1416
- if (zathura_has_document (zathura )) {
1416
+ if (zathura_has_document (zathura ) == false ) {
1417
1417
return false;
1418
1418
}
1419
1419
You can’t perform that action at this time.
0 commit comments