Commit f98ccbd6 authored by Clément Bœsch's avatar Clément Bœsch

Merge commit '8b56dbe7'

* commit '8b56dbe7':
  configure: Do not add newlines in filter()/filter_out() functions
Merged-by: 's avatarClément Bœsch <u@pkh.me>
parents 8e0bea55 8b56dbe7
......@@ -523,7 +523,7 @@ filter(){
pat=$1
shift
for v; do
eval "case $v in $pat) echo $v ;; esac"
eval "case $v in $pat) printf '%s ' $v ;; esac"
done
}
......@@ -531,7 +531,7 @@ filter_out(){
pat=$1
shift
for v; do
eval "case $v in $pat) ;; *) echo $v ;; esac"
eval "case $v in $pat) ;; *) printf '%s ' $v ;; esac"
done
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment