summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/sed-callbacks1
-rw-r--r--tools/sed-enums1
-rw-r--r--tools/sed-functions1
-rw-r--r--tools/sed-types1
4 files changed, 4 insertions, 0 deletions
diff --git a/tools/sed-callbacks b/tools/sed-callbacks
index f94309c..999d2d7 100644
--- a/tools/sed-callbacks
+++ b/tools/sed-callbacks
@@ -23,5 +23,6 @@ T;h
# drop \n
s/\n//g
# replace multi spaces with one
+s/\t/ /g
s/ {2,}/ /g
p
diff --git a/tools/sed-enums b/tools/sed-enums
index a4e2e25..46d236d 100644
--- a/tools/sed-enums
+++ b/tools/sed-enums
@@ -35,6 +35,7 @@ H;x
# remove \n
s/\n//g
# replace multi spaces with one
+s/\t/ /g
s/ {2,}/ /g
s/, }/ }/
p
diff --git a/tools/sed-functions b/tools/sed-functions
index 71ecc8e..f57d913 100644
--- a/tools/sed-functions
+++ b/tools/sed-functions
@@ -15,6 +15,7 @@
:loop
/,$/ { N; s/\n/ /; t loop }
# replace multi spaces with one ...
+s/\t/ /g
s/ {2,}/ /g
s/\s+EINA_.*/;/
s/^\s*EAPI/EAPI/p
diff --git a/tools/sed-types b/tools/sed-types
index 730d597..6b87bf3 100644
--- a/tools/sed-types
+++ b/tools/sed-types
@@ -25,5 +25,6 @@ H;x
# remove \n
s/\n/ /g
# replace multi spaces with one ...
+s/\t/ /g
s/ {2,}/ /g
p