Kitty,
Previously, it was not in lazy-lock mode.
Enabling lazy-lock mode has no effect on the issue.
As soon as it attempts to fontify any part of the buffer, the status bar is
stuck indefinitely.
Rick
Krishnakumar B
<kitty(a)cse.wustl. To: Richard.M.Born(a)seagate.com
edu> cc: xemacs-beta(a)xemacs.org
No Phone Info Subject: Re: [Bug: 21.4.13] XEmacs hangs on fontify
Available
07/28/2003 10:10
AM
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.