aboutsummaryrefslogtreecommitdiffstats
path: root/BibTeX.py
diff options
context:
space:
mode:
authorGeorge Danezis <gdane@microsoft.com>2008-08-29 10:25:56 +0000
committerGeorge Danezis <gdane@microsoft.com>2008-08-29 10:25:56 +0000
commitc7ee5c02117c6386395ba6624c96f6e9dede929f (patch)
tree951e7955d10383358d81dbac19dbcb7b1f197d49 /BibTeX.py
parent1c5aca9a62b3a637d7fc9053c6ae40dcc5e2c09b (diff)
downloadanonbib-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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/BibTeX.py b/BibTeX.py
index 3aa9615..05b2dc6 100644
--- a/BibTeX.py
+++ b/BibTeX.py
@@ -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',