summaryrefslogtreecommitdiff
path: root/~lukeshu/make-graph/make-3.82-sort-blank.patch
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-05-31 21:24:03 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-05-31 21:27:21 -0400
commit19db09a7c48c4cade7698df3ab7e50f1de439f88 (patch)
tree95eaa573b5a12edab4e9870af839cc85d9df7883 /~lukeshu/make-graph/make-3.82-sort-blank.patch
parentda916c690230bc1da612c3404c66603a1d9e8cd5 (diff)
downloadabslibre-19db09a7c48c4cade7698df3ab7e50f1de439f88.tar.gz
abslibre-19db09a7c48c4cade7698df3ab7e50f1de439f88.tar.bz2
abslibre-19db09a7c48c4cade7698df3ab7e50f1de439f88.zip
Remove old things from ~lukeshu
Diffstat (limited to '~lukeshu/make-graph/make-3.82-sort-blank.patch')
-rw-r--r--~lukeshu/make-graph/make-3.82-sort-blank.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/~lukeshu/make-graph/make-3.82-sort-blank.patch b/~lukeshu/make-graph/make-3.82-sort-blank.patch
deleted file mode 100644
index 2e73f5b7c..000000000
--- a/~lukeshu/make-graph/make-3.82-sort-blank.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff -urp make-3.82/function.c make-3.82-pm/function.c
---- make-3.82/function.c 2010-07-13 03:20:39.000000000 +0200
-+++ make-3.82-pm/function.c 2010-10-27 01:43:27.000000000 +0200
-@@ -1138,12 +1138,12 @@ func_sort (char *o, char **argv, const c
- {
- char c = *(t++);
-
-- if (! isspace ((unsigned char)c))
-+ if (! isblank ((unsigned char)c))
- continue;
-
- ++wordi;
-
-- while (isspace ((unsigned char)*t))
-+ while (isblank ((unsigned char)*t))
- ++t;
- }