From: Fred Drake Date: Thu, 26 Aug 1999 18:05:23 +0000 (+0000) Subject: Removed; no longer needed now that the other tools can handle entity X-Git-Tag: v1.6a1~969 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4f0279f4398a35216b4cbd6dc889085c6912a693;p=thirdparty%2FPython%2Fcpython.git Removed; no longer needed now that the other tools can handle entity references directly. --- diff --git a/Doc/tools/sgmlconv/fixgenents.sh b/Doc/tools/sgmlconv/fixgenents.sh deleted file mode 100755 index 41e9e3f5d1fb..000000000000 --- a/Doc/tools/sgmlconv/fixgenents.sh +++ /dev/null @@ -1,24 +0,0 @@ -#! /bin/sh -# -# Script to fix general entities that got translated from the LaTeX as empty -# elements. Mostly pretty bogus, but works like a charm! -# -# Removes the leading XML PI that identifies the XML version, since most of -# the XML files are not used as top-level documents. - -if [ "$1" ]; then - exec <"$1" - shift 1 -fi - -if [ "$1" ]; then - exec >"$1" - shift 1 -fi - -sed ' -s||\≥|g -s||\≤|g -s||\≥|g -s||\≤|g -' || exit $?