diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-12-27 17:17:37 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-12-27 17:17:37 -0300 |
commit | 0c14c3dd36e1c2f529ffa248383a275cfb21f168 (patch) | |
tree | f844a262139ed9aadefa9707776794927a12b1de /~lukeshu/make-graph/make-3.82-sort-blank.patch | |
parent | b24bcd7ea54466fae5136027d6b5bd9fb3741012 (diff) | |
parent | cdb44f3dc8b59a656b0dc5568d731bdcb7c9ff60 (diff) | |
download | abslibre-0c14c3dd36e1c2f529ffa248383a275cfb21f168.tar.gz abslibre-0c14c3dd36e1c2f529ffa248383a275cfb21f168.tar.bz2 abslibre-0c14c3dd36e1c2f529ffa248383a275cfb21f168.zip |
Merge branch 'master' of ssh://gparabola/abslibre
Diffstat (limited to '~lukeshu/make-graph/make-3.82-sort-blank.patch')
-rw-r--r-- | ~lukeshu/make-graph/make-3.82-sort-blank.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/~lukeshu/make-graph/make-3.82-sort-blank.patch b/~lukeshu/make-graph/make-3.82-sort-blank.patch new file mode 100644 index 000000000..2e73f5b7c --- /dev/null +++ b/~lukeshu/make-graph/make-3.82-sort-blank.patch @@ -0,0 +1,17 @@ +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; + } |