Remove -98 vintage ifdef'ed dead code

This commit is contained in:
Panu Matilainen 2010-01-04 10:52:22 +02:00
parent 5b12a3b519
commit 2c5ea0b188
1 changed files with 0 additions and 13 deletions

View File

@ -1318,22 +1318,9 @@ expandMacro(MacroBuf mb)
}
if (me == NULL) { /* leave unknown %... as is */
#ifndef HACK
#if DEAD
/* XXX hack to skip over empty arg list */
if (fn == 1 && *f == '*') {
s = se;
continue;
}
#endif
/* XXX hack to permit non-overloaded %foo to be passed */
c = '%'; /* XXX only need to save % */
SAVECHAR(mb, c);
#else
rpmlog(RPMLOG_ERR,
_("Macro %%%.*s not found, skipping\n"), fn, f);
s = se;
#endif
continue;
}