all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: storm@cua.dk (Kim F. Storm)
To: Eli Zaretskii <eliz@gnu.org>
Cc: emacs-devel@gnu.org
Subject: Re: Changes to emacs/lisp/font-lock.el,v
Date: Sat, 17 Feb 2007 23:11:59 +0100	[thread overview]
Message-ID: <m38xewph74.fsf@kfs-l.imdomain.dk> (raw)
In-Reply-To: <E1HINix-00037a-5H@savannah.gnu.org> (Eli Zaretskii's message of "Sat\, 17 Feb 2007 11\:27\:27 +0000")


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

           reply	other threads:[~2007-02-17 22:11 UTC|newest]

Thread overview: expand[flat|nested]  mbox.gz  Atom feed
 [parent not found: <E1HINix-00037a-5H@savannah.gnu.org>]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m38xewph74.fsf@kfs-l.imdomain.dk \
    --to=storm@cua.dk \
    --cc=eliz@gnu.org \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.