summaryrefslogtreecommitdiffstats
path: root/help
diff options
context:
space:
mode:
authornexus <nexus@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-03 12:14:34 +0000
committernexus <nexus@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-03 12:14:34 +0000
commit2b18af7f40700e4c57a20c38c879ae70f95b8830 (patch)
treedc0f7ac1f3b00f8fa08f2438b115e7b48a14abff /help
parent45fde049ddc9dd2b44527dd986228ded6aa667f6 (diff)
downloadmpv-2b18af7f40700e4c57a20c38c879ae70f95b8830.tar.bz2
mpv-2b18af7f40700e4c57a20c38c879ae70f95b8830.tar.xz
FreeBSD fix
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8733 b3059339-0415-0410-9bf9-f77b7e298cf2
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