File tree Expand file tree Collapse file tree 1 file changed +3
-14
lines changed Expand file tree Collapse file tree 1 file changed +3
-14
lines changed Original file line number Diff line number Diff line change @@ -465,20 +465,9 @@ Run M-x describe-variable haskell-mode-hook for a list of such modes."))
465
465
(modify-syntax-entry ?\[ " (]" table)
466
466
(modify-syntax-entry ?\] " )[" table)
467
467
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)
482
471
(modify-syntax-entry ?\n " >" table)
483
472
484
473
(let (i lim)
You can’t perform that action at this time.
0 commit comments