diff -ruP source-highlight-2.1.1/source-highlight.spec source-highlight-2.1.2/source-highlight.spec
--- source-highlight-2.1.1/source-highlight.spec 2005年08月03日 14:54:18.000000000 +0200
+++ source-highlight-2.1.2/source-highlight.spec 2005年08月25日 16:11:37.000000000 +0200
@@ -6,8 +6,8 @@
Summary: syntax highlighting for source documents
Name: source-highlight
-Version: 2.1.1
-Release: 2.1.1
+Version: 2.1.2
+Release: 2.1.2
License: GPL
Group: Utilities/Console
Source: ftp://ftp.gnu.org/gnu/source-highlight/%{name}-%{version}.tar.gz
diff -ruP source-highlight-2.1.1/src/latex.outlang source-highlight-2.1.2/src/latex.outlang
--- source-highlight-2.1.1/src/latex.outlang 2005年07月12日 22:21:46.000000000 +0200
+++ source-highlight-2.1.2/src/latex.outlang 2005年08月25日 16:15:53.000000000 +0200
@@ -34,4 +34,5 @@
"|" "$|$"
"--" "-\\/-"
"---" "-\\/-\\/-"
+"\"" "\"{}" # avoids problems with some inputenc
end
\ No newline at end of file
diff -ruP source-highlight-2.1.1/src/lib/messages.cc source-highlight-2.1.2/src/lib/messages.cc
--- source-highlight-2.1.1/src/lib/messages.cc 2005年07月12日 12:18:59.000000000 +0200
+++ source-highlight-2.1.2/src/lib/messages.cc 2005年08月25日 16:08:44.000000000 +0200
@@ -85,3 +85,9 @@
cerr << PACKAGE << ": " << error << endl;
exit(EXIT_FAILURE);
}
+
+void foundBug(const std::string &error, const std::string &file, int line)
+{
+ cerr << PACKAGE << ": " << error << ", " << file << ":" << line << endl;
+ exit(EXIT_FAILURE);
+}