summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJoel Andres Granados <jgranado@redhat.com>2008-05-30 13:47:20 +0200
committerJoel Andres Granados <jgranado@redhat.com>2008-05-30 13:47:20 +0200
commit8e246d5dee31263ff6066ed63edb236f286b1f40 (patch)
tree17417dd50d2edfd1da9cebbe419d93c32076dcb9 /doc
parente3626ba302e20ee6202988636588b17c38e1ccf3 (diff)
downloadfirstaidkit-8e246d5dee31263ff6066ed63edb236f286b1f40.tar.gz
firstaidkit-8e246d5dee31263ff6066ed63edb236f286b1f40.tar.xz
firstaidkit-8e246d5dee31263ff6066ed63edb236f286b1f40.zip
fix the regular expression that identifies the man page comment.
for some reason this regexp seems to behave better.
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/man2wiki2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man2wiki b/doc/man2wiki
index c16f20a..fee6742 100755
--- a/doc/man2wiki
+++ b/doc/man2wiki
@@ -21,7 +21,7 @@ CHANGE_FILES="$DEFAULT_CHANGE_FILES $*"
for file in $CHANGE_FILES ; do
sed \
- -e "s/\.\\\".*\.\\\"//" \
+ -e "s/\.\\\.*\\\"//" \
-e "s/\(^\.SH[ \t]*\"\)\([ \t^\"]*NAME[ \t^\"]*\)\(\"[ \t]*\)\(.*\)/= \4 =/" \
-e "s/\(^\.SH[ \t]*\"\)\([^\"]*\)\(\"[ \t]*\)\(.*\)/= \2 \4 =/" \
-e "s/\(^\.IP[ \t]*\"\)\([^\"]*\)\(\".*\)/[[BR]]'''\2'''[[BR]]/" \