0

I tried using all options in the menu setting Options|Display|Paren Highlighting, but nothing works - no parenthesis match is performed. I also tried setting explicitly (paren-mode 'blink-paren t) in my init file, but that did not help either. Any ideas what may be happening and how do I fix it?

Thanks.

gt6989b
  • 4,125
  • 8
  • 46
  • 64

1 Answers1

0

I have had paren mode working long enough in my XEmacs that I forget what exactly I did to turn it on, but I did dig these things out which might help.

From my .xemacs/init.el:

(require 'paren)

From my .xemacs/custom.el as part of custom-set-variables:

'(paren-mode (quote sexp) nil (paren))
'(show-paren-mode t)

-John

jwernerny
  • 6,978
  • 2
  • 31
  • 32