Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MPR#7048: ocamldoc -latex, don't escape Latin-1 accented vowels #1420

Merged
merged 2 commits into from Oct 9, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions Changes
Expand Up @@ -349,6 +349,9 @@ Release branch for 4.06:
when no -title has been provided
(Pierre Boutillier)

- MPR#7048: ocamldoc, in -latex mode, don't escape Latin-1 accented vowels
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Utterly minor nitpicking: ç is not a vowel.

(Xavier Leroy, report by Hugo Herbelin)

- MPR#7575, GPR#1219: Switch default from -no-keep-locs to -keep-locs. This
provides better error messages by default.
(Daniel Bünzli)
Expand Down
13 changes: 0 additions & 13 deletions ocamldoc/odoc_latex.ml
Expand Up @@ -109,19 +109,6 @@ class text =
"}", "\\\\}";
"\\$", "\\\\$";
"\\^", "{\\\\textasciicircum}";
"\xE0", "\\\\`a";
"\xE2", "\\\\^a";
"\xE9", "\\\\'e";
"\xE8", "\\\\`e";
"\xEA", "\\\\^e";
"\xEB", "\\\\\"e";
"\xE7", "\\\\c{c}";
"\xF4", "\\\\^o";
"\xF6", "\\\\\"o";
"\xEE", "\\\\^i";
"\xEF", "\\\\\"i";
"\xF9", "\\\\`u";
"\xFB", "\\\\^u";
"%", "\\\\%";
"_", "\\\\_";
"~", "\\\\~{}";
Expand Down