Skip to content

Commit

Permalink
Fix indentation unicode symbols.
Browse files Browse the repository at this point in the history
The GHC lexer actually uses the symbols ⤙ and ⤚ for arrow notation, and
these are the glyphs which the listed code-points and Unicode names in
the file refer to. However, the table from the GHC documentation, from
which the symbols in haskell-indentation.el seem to have been copied,
currently lists the wrong glyphs for these codepoints.
  • Loading branch information
Sebastian Reuße committed Jun 11, 2015
1 parent b5bef49 commit c7e516c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions haskell-indentation.el
Original file line number Diff line number Diff line change
Expand Up @@ -587,8 +587,8 @@ the current buffer."
("" . "<-") ;; #x2190 LEFTWARDS ARROW
("" . "=>") ;; #x21D2 RIGHTWARDS DOUBLE ARROW
("" . "forall") ;; #x2200 FOR ALL
("" . "-<") ;; #x2919 LEFTWARDS ARROW-TAIL
("" . ">-") ;; #x291A RIGHTWARDS ARROW-TAIL
("" . "-<") ;; #x2919 LEFTWARDS ARROW-TAIL
("" . ">-") ;; #x291A RIGHTWARDS ARROW-TAIL
("" . "-<<") ;; #x291B LEFTWARDS DOUBLE ARROW-TAIL
("" . ">>-") ;; #x291C RIGHTWARDS DOUBLE ARROW-TAIL
("" . "*")) ;; #x2605 BLACK STAR
Expand Down

0 comments on commit c7e516c

Please sign in to comment.