# HG changeset patch # User David Barts # Date 1633632946 25200 # Node ID d5bf9985b5c4525f05002b68999e41fbf64fe80a # Parent a1cda4ff6d4b691c72f8900572b2d8e5f528c412 Add degree symbol, fix bug in HTML curler. diff -r a1cda4ff6d4b -r d5bf9985b5c4 curlers.py --- a/curlers.py Tue Apr 13 10:18:59 2021 -0700 +++ b/curlers.py Thu Oct 07 11:55:46 2021 -0700 @@ -216,7 +216,7 @@ ws[pos] = LSQUO self._state = self._seen_ls - def _seen_ls(): + def _seen_ls(self): pos = self._pos ws = self.workspace char = ws[pos] diff -r a1cda4ff6d4b -r d5bf9985b5c4 curlyq --- a/curlyq Tue Apr 13 10:18:59 2021 -0700 +++ b/curlyq Thu Oct 07 11:55:46 2021 -0700 @@ -31,7 +31,7 @@ INSEC = '"' # For --tex option -TEX_SUBST = [ ("---", "—"), ("--", "–"), ("...", "…") ] +TEX_SUBST = [ ("---", "—"), ("--", "–"), ("...", "…"), ("()", "°") ] # For --ligatures option LIG_SUBST = [ ("ffi", "\ufb03"), ("ffl", "\ufb04"), ("ff", "\ufb00"),