summaryrefslogtreecommitdiffstats
path: root/help
diff options
context:
space:
mode:
Diffstat (limited to 'help')
-rwxr-xr-xhelp/help_diff.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/help/help_diff.sh b/help/help_diff.sh
index b8a021137b..29e105fb94 100755
--- a/help/help_diff.sh
+++ b/help/help_diff.sh
@@ -9,8 +9,8 @@
curr=""
while read -r line; do
- if echo -E "$line" | grep -q '^#define'; then
- curr=`echo -E "$line" | cut -d ' ' -f 2`
+ if echo "$line" | grep -q '^#define'; then
+ curr=`echo "$line" | cut -d ' ' -f 2`
if grep -q "^#define $curr " $1; then
curr=""
fi
@@ -21,7 +21,7 @@ while read -r line; do
fi
if [ -n "$curr" ]; then
- echo -E "$line"
+ echo "$line"
fi
done