Hi,
I was using the following setting in my XEmacs startup file. It
is introduced in etc/sample.init.el.
(add-hook 'font-lock-mode-hook 'turn-on-lazy-lock)
(setq lazy-lock-stealth-time nil)
I found there is something wrong with it. For example, the
following code should return " *temp*" in any case.
(with-temp-buffer
(read-key-sequence "Press any key: ")
(buffer-name))
However, the next one returns "*scratch*" when I evaluate the
code in *scratch* buffer.
(progn
(add-hook 'font-lock-mode-hook 'turn-on-lazy-lock)
(turn-on-font-lock)
(make-frame)
(with-temp-buffer
(read-key-sequence "Press any key: ")
(buffer-name)))
Because of this, I often could not quit away from minibuffer
after I entered the password using the function `read-passwd'.
--
Katsumi Yamaoka <yamaoka(a)jpl.org>