diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2015-04-01 21:47:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2015-04-01 21:47:20 +0000 |
commit | d4139dc3fe069790e0ff3ac154dae39591c7a6dc (patch) | |
tree | d74bc690bacb0658b64769ef502205e15aa00beb | |
parent | 94ab1af561381d56c047d5381574afcddc14c2b1 (diff) |
Revert unintentional commit. This will be revisited shortly.
-rw-r--r-- | usr.bin/sort/coll.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/sort/coll.c b/usr.bin/sort/coll.c index 083fede53de..2087817e8bf 100644 --- a/usr.bin/sort/coll.c +++ b/usr.bin/sort/coll.c @@ -1,4 +1,4 @@ -/* $OpenBSD: coll.c,v 1.5 2015/04/01 21:46:38 millert Exp $ */ +/* $OpenBSD: coll.c,v 1.6 2015/04/01 21:47:19 millert Exp $ */ /*- * Copyright (C) 2009 Gabor Kovesdan <gabor@FreeBSD.org> @@ -406,13 +406,11 @@ preproc(struct bwstring *s, struct keys_array *ka) struct bwstring *ret = NULL; struct sort_mods *sm = default_sort_mods; -#if 0 /* historically -b has only been effective w/ -k */ if (sm->bflag) { if (ret == NULL) ret = bwsdup(s); ret = ignore_leading_blanks(ret); } -#endif if (sm->dflag) { if (ret == NULL) ret = bwsdup(s); |