aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-12-23 08:53:07 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-12-23 08:53:07 +0000
commite503ca3813088f44b68684658939a8a551b50a41 (patch)
treefb670387c043052246fc3239eb2751f7b6d1bf64
parent3845b5a8bd359297c37858b05ce962ff17ba0c37 (diff)
downloadfetchmail-e503ca3813088f44b68684658939a8a551b50a41.tar.gz
fetchmail-e503ca3813088f44b68684658939a8a551b50a41.tar.bz2
fetchmail-e503ca3813088f44b68684658939a8a551b50a41.zip
Eliminate ^ syntax.
svn path=/trunk/; revision=675
-rw-r--r--fetchmail.c7
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;