Commit 99b3af18 authored by Fred Drake's avatar Fred Drake

Added support for our new \infinity and \plusminus macros, and the

standard \textbar macro (not supported in many versions of LaTeX2HTML).

Added newline to error message.
parent 55773746
......@@ -87,6 +87,9 @@ sub do_cmd_let{
sub do_cmd_textasciitilde{ '~' . @_[0]; }
sub do_cmd_textasciicircum{ '^' . @_[0]; }
sub do_cmd_textbar{ '|' . @_[0]; }
sub do_cmd_infinity{ '∞' . @_[0]; }
sub do_cmd_plusminus{ '±' . @_[0]; }
# words typeset in a special way (not in HTML though)
......@@ -1462,7 +1465,7 @@ sub process_all_localmoduletables{
process_localmoduletables_in_file($file);
}
else {
print "\nsynopsis table $key has no file association";
print "\nsynopsis table $key has no file association\n";
}
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment