--- rxvt-unicode/src/command.h 2004/07/26 18:01:19 1.10 +++ rxvt-unicode/src/command.h 2006/01/01 05:08:41 1.16 @@ -1,5 +1,5 @@ /* - * $Id: command.h,v 1.10 2004/07/26 18:01:19 root Exp $ + * command.h */ #ifndef COMMAND_H_ @@ -17,7 +17,7 @@ #endif /* a large REFRESH_PERIOD causes problems with `cat' */ -#define REFRESH_PERIOD 2 +#define REFRESH_PERIOD 1 #ifndef MULTICLICK_TIME # define MULTICLICK_TIME 500 @@ -42,20 +42,28 @@ #ifdef SCROLL_ON_SHIFT # define SCROLL_SHIFTKEY (shft) +# define NOSCROLL_SHIFTKEY 0 #else # define SCROLL_SHIFTKEY 0 +# define NOSCROLL_SHIFTKEY (shft) #endif #ifdef SCROLL_ON_CTRL # define SCROLL_CTRLKEY (ctrl) +# define NOSCROLL_CTRLKEY 0 #else # define SCROLL_CTRLKEY 0 +# define NOSCROLL_CTRLKEY (ctrl) #endif #ifdef SCROLL_ON_META # define SCROLL_METAKEY (meta) +# define NOSCROLL_METAKEY 0 #else # define SCROLL_METAKEY 0 +# define NOSCROLL_METAKEY (meta) #endif -#define IS_SCROLL_MOD (SCROLL_SHIFTKEY || SCROLL_CTRLKEY || SCROLL_METAKEY) +#define IS_SCROLL_MOD ((SCROLL_SHIFTKEY || SCROLL_CTRLKEY || SCROLL_METAKEY) \ + && (!NOSCROLL_SHIFTKEY && !NOSCROLL_CTRLKEY && !NOSCROLL_METAKEY)) + /* * ESC-Z processing: @@ -81,5 +89,4 @@ # define ESCZ_ANSWER VT100_ANS /* obsolete ANSI ESC[c */ #endif -#include "command.intpro" /* PROTOS for internal routines */ #endif /* _COMMAND_H_ */