mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-28 06:16:00 +01:00
Update copyright years
This commit is contained in:
parent
9771cf1e8e
commit
bab5848464
3 changed files with 7 additions and 7 deletions
|
@ -25,7 +25,7 @@ today = time.strftime('%Y-%m-%d', time.gmtime(maxdate))
|
||||||
# -- Project configuration ------------------------------------------------
|
# -- Project configuration ------------------------------------------------
|
||||||
|
|
||||||
project = 'zathura'
|
project = 'zathura'
|
||||||
copyright = '2009-2015, pwmt.org'
|
copyright = '2009-2018, pwmt.org'
|
||||||
version = '0.2.7'
|
version = '0.2.7'
|
||||||
release = '0.2.7'
|
release = '0.2.7'
|
||||||
|
|
||||||
|
|
|
@ -37,11 +37,12 @@
|
||||||
#include <sys/file.h>
|
#include <sys/file.h>
|
||||||
#define file_lock_set(fd, cmd) flock(fd, cmd)
|
#define file_lock_set(fd, cmd) flock(fd, cmd)
|
||||||
#else
|
#else
|
||||||
#define file_lock_set(fd, cmd) \
|
static int
|
||||||
{ \
|
file_lock_set(int fd, short cmd)
|
||||||
struct flock lock = { .l_type = cmd, .l_start = 0, .l_whence = SEEK_SET, .l_len = 0}; \
|
{
|
||||||
fcntl(fd, F_SETLK, lock); \
|
struct flock lock = { .l_type = cmd, .l_start = 0, .l_whence = SEEK_SET, .l_len = 0};
|
||||||
}
|
return fcntl(fd, F_SETLK, lock);
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static void zathura_database_interface_init(ZathuraDatabaseInterface* iface);
|
static void zathura_database_interface_init(ZathuraDatabaseInterface* iface);
|
||||||
|
|
|
@ -760,7 +760,6 @@ sc_bisect(girara_session_t* session, girara_argument_t* argument,
|
||||||
girara_debug("bisecting between first and last page because there are no jumps");
|
girara_debug("bisecting between first and last page because there are no jumps");
|
||||||
zathura->bisect.start = 0;
|
zathura->bisect.start = 0;
|
||||||
zathura->bisect.end = num_pages - 1;
|
zathura->bisect.end = num_pages - 1;
|
||||||
|
|
||||||
} else if (jump->page != cur_page || jump->page != zathura->bisect.last_jump) {
|
} else if (jump->page != cur_page || jump->page != zathura->bisect.last_jump) {
|
||||||
girara_debug("last jump doesn't match up, starting new bisecting");
|
girara_debug("last jump doesn't match up, starting new bisecting");
|
||||||
zathura->bisect.start = 0;
|
zathura->bisect.start = 0;
|
||||||
|
|
Loading…
Reference in a new issue