Skip to content

Commit c7e516c

Browse files
author
Sebastian Reuße
committed
Fix indentation unicode symbols.
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.
1 parent b5bef49 commit c7e516c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

haskell-indentation.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -587,8 +587,8 @@ the current buffer."
587587
("" . "<-") ;; #x2190 LEFTWARDS ARROW
588588
("" . "=>") ;; #x21D2 RIGHTWARDS DOUBLE ARROW
589589
("" . "forall") ;; #x2200 FOR ALL
590-
("" . "-<") ;; #x2919 LEFTWARDS ARROW-TAIL
591-
("" . ">-") ;; #x291A RIGHTWARDS ARROW-TAIL
590+
("" . "-<") ;; #x2919 LEFTWARDS ARROW-TAIL
591+
("" . ">-") ;; #x291A RIGHTWARDS ARROW-TAIL
592592
("" . "-<<") ;; #x291B LEFTWARDS DOUBLE ARROW-TAIL
593593
("" . ">>-") ;; #x291C RIGHTWARDS DOUBLE ARROW-TAIL
594594
("" . "*")) ;; #x2605 BLACK STAR

0 commit comments

Comments
 (0)