Disable support for external commands by default

This commit is contained in:
Bert 2011-04-07 10:17:27 +02:00
parent 9fcf2c8f34
commit b2f1b997ed
2 changed files with 22 additions and 24 deletions

View File

@ -1,5 +1,4 @@
/* default window dimensions: *
* (also controllable via -g option) */
/* default window dimensions (overwritten via -g option): */
#define WIN_WIDTH 800
#define WIN_HEIGHT 600
@ -25,6 +24,5 @@ static const float zoom_levels[] = {
/* default dimension of thumbnails (width == height): */
#define THUMB_SIZE 60
/* remove this line to disable external commands: *
* (otherwise have a look at commands.h to define them) */
#define EXT_COMMANDS
/* support for external commands (defined in commands.h): */
#define EXT_COMMANDS 0

6
main.c
View File

@ -37,7 +37,7 @@
#include "util.h"
#include "window.h"
#ifdef EXT_COMMANDS
#if EXT_COMMANDS
#include "commands.h"
#endif
@ -284,7 +284,7 @@ void read_dir_rec(const char *dirname) {
free(dirnames);
}
#ifdef EXT_COMMANDS
#if EXT_COMMANDS
int run_command(const char *cline, Bool reload) {
int fncnt, fnlen;
char *cn, *cmdline;
@ -382,7 +382,7 @@ void on_keypress(XKeyEvent *kev) {
XLookupString(kev, &key, 1, &ksym, NULL);
changed = 0;
#ifdef EXT_COMMANDS
#if EXT_COMMANDS
/* external commands from commands.h */
if (CLEANMASK(kev->state) & ControlMask) {
for (i = 0; i < LEN(commands); ++i) {