Hi-
>>> I recently did an update-all from my 10.3 installation and a whole >>> bunch of things got updated, including xemacs.
>>> The >>> minibuffer more-or-less constantly shows the message "Fontifying >>> region... (wrong-type-argument markerp nil)". This is more than just >>> annoying since it actually masks other messages in the minibuffer, >>> including input/output there.
I received the following communication which solved the problem:
> From: Aidan Kehoe > Date: 18 May 2005 13:49:50 BST > Subject: "Fontifying region... (wrong-type-argument markerp nil) " (in > comp.emacs.xemacs) > Reply-To: Aidan Kehoe > > I checked a change into lazy-lock.el that fixed that for me; the > commit message is here, > > http://list-archive.xemacs.org/xemacs-cvs/200505/msg00011.html > > and you should be able to eliminate the error by adding this to the > end of your ~/.xemacs/init.el ; > > (defcustom lazy-lock-mode nil > "Non nil means `lazy-lock-mode' is on." > :group 'lazy-lock > :require 'lazy-lock ;; which in turn requires font-lock. > :type 'boolean > :initialize 'custom-initialize-default > :set '(lambda (var val) > (if val > (progn > (lazy-lock-mode 1) > (add-hook 'font-lock-mode-hook 'turn-on-lazy-lock)) > (lazy-lock-mode -1) > (remove-hook 'font-lock-mode-hook 'turn-on-lazy-lock))) > ) > > > Hope that helps, > > Aidan
------------------------------------------------------- This SF.Net email is sponsored by Oracle Space Sweepstakes Want to be the first software developer in space? Enter now for the Oracle Space Sweepstakes! http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click _______________________________________________ Fink-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/fink-users
