Skip to content
This repository has been archived by the owner on Aug 17, 2019. It is now read-only.

Commit

Permalink
[features] v2: remove unneeded ligatures
Browse files Browse the repository at this point in the history
V2 of 7250ac9

    commit 7250ac9
    Author: Philipp Gesang <[email protected]>
    Date:   Thu Feb 2 07:38:03 2017 +0100

        [features] remove unneeded tlig features

        Fix lualatex#397

        These four features should not be inserted automatically.

which was reverted in

    commit 9b70f2e
    Author: Philipp Gesang <[email protected]>
    Date:   Mon Feb 6 21:21:48 2017 +0100

        Revert "[features] remove unneeded tlig features"

addressing issues lualatex#397, lualatex#405.
  • Loading branch information
phi-gamma committed Feb 7, 2017
1 parent 8f001b0 commit 46b9e82
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/luaotfload-features.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1306,30 +1306,18 @@ local tlig_specification = {
--- quotedblleft:
--- [''] (GRAVE ACCENT, GRAVE ACCENT) → “ (LEFT DOUBLE QUOTATION MARK)
[0x201C] = {0x0060, 0x0060},
--- quotedblleft:
--- [‘‘] (LEFT SINGLE QUOTATION MARK, LEFT SINGLE QUOTATION MARK) → “ (LEFT DOUBLE QUOTATION MARK)
[0x201C] = {0x2018, 0x2018},

--- quotedblright:
--- [``] (APOSTROPHE, APOSTROPHE) → ” (RIGHT DOUBLE QUOTATION MARK)
[0x201D] = {0x0027, 0x0027},
--- quotedblright:
--- [’’] (RIGHT SINGLE QUOTATION MARK, RIGHT SINGLE QUOTATION MARK) → ” (RIGHT DOUBLE QUOTATION MARK)
[0x201D] = {0x2019, 0x2019},

--- exclamdown:
--- [!'] (EXCLAMATION MARK, GRAVE ACCENT) → ¡ (INVERTED EXCLAMATION MARK)
[0x00A1] = {0x0021, 0x0060},
--- exclamdown:
--- [!‘] (EXCLAMATION MARK, LEFT SINGLE QUOTATION MARK) → ¡ (INVERTED EXCLAMATION MARK)
[0x00A1] = {0x0021, 0x2018},

--- questiondown:
--- [?'] (QUESTION MARK, GRAVE ACCENT) → ¡ (INVERTED EXCLAMATION MARK)
[0x00BF] = {0x003F, 0x0060},
--- questiondown:
--- [?'] (QUESTION MARK, LEFT SINGLE QUOTATION MARK) → ¡ (INVERTED EXCLAMATION MARK)
[0x00BF] = {0x003F, 0x2018},

--- next three originate in T1 encoding (Xetex applies them too)
--- quotedblbase:
Expand Down

0 comments on commit 46b9e82

Please sign in to comment.