diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-12-23 08:53:07 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-12-23 08:53:07 +0000 |
commit | e503ca3813088f44b68684658939a8a551b50a41 (patch) | |
tree | fb670387c043052246fc3239eb2751f7b6d1bf64 | |
parent | 3845b5a8bd359297c37858b05ce962ff17ba0c37 (diff) | |
download | fetchmail-e503ca3813088f44b68684658939a8a551b50a41.tar.gz fetchmail-e503ca3813088f44b68684658939a8a551b50a41.tar.bz2 fetchmail-e503ca3813088f44b68684658939a8a551b50a41.zip |
Eliminate ^ syntax.
svn path=/trunk/; revision=675
-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; |