From e503ca3813088f44b68684658939a8a551b50a41 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 23 Dec 1996 08:53:07 +0000 Subject: Eliminate ^ syntax. svn path=/trunk/; revision=675 --- fetchmail.c | 7 ------- 1 file changed, 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; -- cgit v1.2.3