all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Re: Changes to emacs/lisp/font-lock.el,v
       [not found] <E1HINix-00037a-5H@savannah.gnu.org>
@ 2007-02-17 22:11 ` Kim F. Storm
  0 siblings, 0 replies; only message in thread
From: Kim F. Storm @ 2007-02-17 22:11 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: emacs-devel


I think Stefan installed a different fix for this problem ...


Eli Zaretskii <eliz@gnu.org> writes:

> CVSROOT:	/cvsroot/emacs
> Module name:	emacs
> Changes by:	Eli Zaretskii <eliz>	07/02/17 11:27:26
>
> Index: font-lock.el
> ===================================================================
> RCS file: /cvsroot/emacs/emacs/lisp/font-lock.el,v
> retrieving revision 1.310
> retrieving revision 1.311
> diff -u -b -r1.310 -r1.311
> --- font-lock.el	15 Feb 2007 16:36:58 -0000	1.310
> +++ font-lock.el	17 Feb 2007 11:27:26 -0000	1.311
> @@ -1083,12 +1083,12 @@
>                                (point-max))))
>      changed))
>    
> -  
>  (defun font-lock-extend-region-wholelines ()
>    "Move fontification boundaries to beginning of lines."
>    (let ((changed nil))
>      (goto-char font-lock-beg)
> -    (unless (bolp) (setq changed t font-lock-beg (line-beginning-position)))
> +    (unless (or (bolp) (eobp))
> +      (setq changed t font-lock-beg (line-beginning-position)))
>      (goto-char font-lock-end)
>      (unless (bolp)
>        (unless (eq font-lock-end

-- 
Kim F. Storm <storm@cua.dk> http://www.cua.dk

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-02-17 22:11 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <E1HINix-00037a-5H@savannah.gnu.org>
2007-02-17 22:11 ` Changes to emacs/lisp/font-lock.el,v Kim F. Storm

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.