summaryrefslogtreecommitdiff
path: root/doc/tools/latex_filter
diff options
context:
space:
mode:
Diffstat (limited to 'doc/tools/latex_filter')
-rwxr-xr-xdoc/tools/latex_filter43
1 files changed, 0 insertions, 43 deletions
diff --git a/doc/tools/latex_filter b/doc/tools/latex_filter
deleted file mode 100755
index 044a8642..00000000
--- a/doc/tools/latex_filter
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-
-# First argument is the number of lines to treat
-# Second argument is optional and, if it is "no", overfull are not displayed
-
-i=$1
-nooverfull=$2
-error=0
-verbose=0
-chapter=""
-file=""
-while : ; do
- read -r line;
- case $line in
- "! "*)
- echo $line $file;
- error=1
- verbose=1
- ;;
- "LaTeX Font Info"*|"LaTeX Info"*|"Underfull "*)
- verbose=0
- ;;
- "Overfull "*)
- verbose=0
- if [ "$nooverfull" != "no" ]; then echo $line $file; fi
- ;;
- "LaTeX "*)
- verbose=0
- echo $line $chapter
- ;;
- "["*|"Chapter "*)
- verbose=0
- ;;
- "(./"*)
- file="(file `echo $line | cut -b 4- | cut -d' ' -f 1`)"
- verbose=0
- ;;
- *)
- if [ $verbose = 1 ]; then echo $line; fi
- esac;
- if [ "$i" = "0" ]; then break; else i=`expr $i - 1`; fi;
-done
-exit $error