diff options
-rw-r--r-- | fetchmail.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/fetchmail.c b/fetchmail.c index 1a99c9de..869f34d6 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -851,8 +851,6 @@ void dump_params (struct query *ctl) /* helper functions for string interpretation and display */ -#define CTRL(x) ((x) & 0x1f) - void escapes(cp, tp) /* process standard C-style escape sequences in a string */ const char *cp; /* source string with escapes */ @@ -890,11 +888,6 @@ char *tp; /* target buffer for digested string */ } cp++; } - else if (*cp == '^') /* expand control-character syntax */ - { - cval = CTRL(*++cp); - cp++; - } else cval = *cp++; *tp++ = cval; |