On Monday, 28 July 2003, Richard.M.Born(a)seagate.com wrote:
Kitty,
How can I check the status of the lazy-lock mode?
Do C-h m on any buffer that is fontified. You would see a list of all major
and minor modes that are active in that buffer.
How do I set/prevent it?
You can rule out lazy-lock by testing with just the following in your
.xemacs/init.el
(require 'lazy-lock)
(add-hook 'font-lock-mode-hook 'turn-on-lazy-lock)
;; lazy-lock doesn't have a variable for its modeline name, so we have
;; to do a bit of surgery.
(and (assoc 'lazy-lock-mode minor-mode-alist)
(setcdr (cdr (cadr (assoc 'lazy-lock-mode minor-mode-alist))) ""))
and the following in your .xemacs/custom.el
(custom-set-variables
'(lazy-lock-minimum-size 50000)
'(lazy-lock-stealth-time nil)
'(lazy-lock-mode 1 nil (lazy-lock)))
and see if XEmacs gets into an infinite loop ? And you need to run XEmacs
under X and not with -nw.
-kitty.