From b977f8d5c87acbe9ec267c0ab5cd85cadc744b57 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Tue, 9 Apr 2019 20:48:31 +0000 Subject: [PATCH] Remove some cruft xtrn_t.misc bit definitions (WORDWRAP*), never used. Since QUOTEWRAP *is* used, just define that bit flag specifically. --- src/sbbs3/sbbsdefs.h | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/sbbs3/sbbsdefs.h b/src/sbbs3/sbbsdefs.h index d8f766fce1..fd6d933a94 100644 --- a/src/sbbs3/sbbsdefs.h +++ b/src/sbbs3/sbbsdefs.h @@ -409,14 +409,8 @@ typedef enum { /* Values for xtrn_t.event */ #define XTRN_SH (1<<18) /* Use command shell to execute */ #define XTRN_PAUSE (1<<19) /* Force a screen pause on exit */ #define XTRN_NOECHO (1<<20) /* Don't echo stdin to stdout */ -#define WORDWRAP80 (1<<21) /* Word-wrap editor to 80 columns */ -#define WORDWRAPTERM (1<<22) /* Word-wrap editor to terminal width */ -#define WORDWRAPLONG (WORDWRAP80|WORDWRAPTERM) /* word-wrap to maxlen */ -#define WORDWRAPNONE 0 /* No word-wrapping on editor in/ouput */ -#define WORDWRAPMASK WORDWRAPLONG +#define QUOTEWRAP (1<<21) /* Word-wrap quoted message text */ #define XTRN_CONIO (1<<31) /* Intercept Windows Console I/O (Drwy) */ -#define QUOTEWRAP WORDWRAP80 /* for temporary backwards compat. */ - /* Bits in cfg.xtrn_misc */ #define XTRN_NO_MUTEX (1<<0) /* Do not use exec_mutex for FOSSIL VXD */ -- GitLab