diff options
| author | George Danezis <gdane@microsoft.com> | 2008-08-29 10:25:56 +0000 |
|---|---|---|
| committer | George Danezis <gdane@microsoft.com> | 2008-08-29 10:25:56 +0000 |
| commit | c7ee5c02117c6386395ba6624c96f6e9dede929f (patch) | |
| tree | 951e7955d10383358d81dbac19dbcb7b1f197d49 /BibTeX.py | |
| parent | 1c5aca9a62b3a637d7fc9053c6ae40dcc5e2c09b (diff) | |
| download | anonbib-c7ee5c02117c6386395ba6624c96f6e9dede929f.tar.gz | |
Added 2 papers from Gergely Toth, and corrected a parsing bug in BibTex.py
svn:r293
Diffstat (limited to 'BibTeX.py')
| -rw-r--r-- | BibTeX.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -619,7 +619,7 @@ def TeXescapeURL(s): RE_LONE_AMP = re.compile(r'&([^a-z0-9])') RE_LONE_I = re.compile(r'\\i([^a-z0-9])') RE_ACCENT = re.compile(r'\\([\'`~^"c])([^{]|{.})') -RE_LIGATURE = re.compile(r'\\(AE|ae|OE|oe|AA|aa|O|o|ss|)([^a-z0-9])') +RE_LIGATURE = re.compile(r'\\(AE|ae|OE|oe|AA|aa|O|o|ss)([^a-z0-9])') ACCENT_MAP = { "'" : 'acute', "`" : 'grave', "~" : 'tilde', |
