1
1

Fix definitions of global vars confirm_quit and dir_process

They were defined (rather than just declared) in .h files, when they
really should be defined in at most a single .c file.

Fixes #140.
Этот коммит содержится в:
Yorhel 2020-01-25 09:25:08 +01:00
родитель 7875a76bba
Коммит ecb71f2550
4 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -28,7 +28,6 @@
#include "global.h"
int confirm_quit;
int browse_key(int);
void browse_draw(void);
void browse_init(struct dir *);

Просмотреть файл

@ -103,7 +103,7 @@ int dir_export_init(const char *fn);
/* Function set by input code. Returns dir_output.final(). */
int (*dir_process)();
extern int (*dir_process)();
/* Scanning a live directory */
extern int dir_scan_smfs;

Просмотреть файл

@ -31,6 +31,7 @@
#include <stdarg.h>
int (*dir_process)();
char *dir_curpath; /* Full path of the last seen item. */
struct dir_output dir_output;
char *dir_fatalerr; /* Error message on a fatal error. (NULL if there was no fatal error) */

Просмотреть файл

@ -42,6 +42,7 @@ long update_delay = 100;
int cachedir_tags = 0;
int extended_info = 0;
int follow_symlinks = 0;
int confirm_quit = 0;
static int min_rows = 17, min_cols = 60;
static int ncurses_init = 0;