Skip to content

Commit e14ca8b

Browse files
committed
Drop XEmacs, Emacs20 and Emacs21 support.
1 parent fcb48c7 commit e14ca8b

File tree

1 file changed

+3
-14
lines changed

1 file changed

+3
-14
lines changed

haskell-mode.el

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -465,20 +465,9 @@ Run M-x describe-variable haskell-mode-hook for a list of such modes."))
465465
(modify-syntax-entry ?\[ "(]" table)
466466
(modify-syntax-entry ?\] ")[" table)
467467

468-
(cond ((featurep 'xemacs)
469-
;; I don't know whether this is equivalent to the below
470-
;; (modulo nesting). -- fx
471-
(modify-syntax-entry ?{ "(}5" table)
472-
(modify-syntax-entry ?} "){8" table)
473-
(modify-syntax-entry ?- "_ 1267" table))
474-
(t
475-
;; In Emacs 21, the `n' indicates that they nest.
476-
;; The `b' annotation is actually ignored because it's only
477-
;; meaningful on the second char of a comment-starter, so
478-
;; on Emacs 20 and before we get wrong results. --Stef
479-
(modify-syntax-entry ?\{ "(}1nb" table)
480-
(modify-syntax-entry ?\} "){4nb" table)
481-
(modify-syntax-entry ?- "_ 123" table)))
468+
(modify-syntax-entry ?\{ "(}1nb" table)
469+
(modify-syntax-entry ?\} "){4nb" table)
470+
(modify-syntax-entry ?- "_ 123" table)
482471
(modify-syntax-entry ?\n ">" table)
483472

484473
(let (i lim)

0 commit comments

Comments
 (0)