emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/font-lock.el,v


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/font-lock.el,v
Date: Thu, 17 Aug 2006 03:19:57 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Stefan Monnier <monnier>        06/08/17 03:19:56

Index: font-lock.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/font-lock.el,v
retrieving revision 1.304
retrieving revision 1.305
diff -u -b -r1.304 -r1.305
--- font-lock.el        7 Aug 2006 18:24:25 -0000       1.304
+++ font-lock.el        17 Aug 2006 03:19:55 -0000      1.305
@@ -1088,9 +1088,9 @@
   "Move fontification boundaries to beginning of lines."
   (let ((changed nil))
     (goto-char font-lock-beg)
-    (unless (bobp) (setq changed t font-lock-beg (line-beginning-position)))
+    (unless (bolp) (setq changed t font-lock-beg (line-beginning-position)))
     (goto-char font-lock-end)
-    (unless (bobp) (setq changed t font-lock-end (line-beginning-position 2)))
+    (unless (bolp) (setq changed t font-lock-end (line-beginning-position 2)))
     changed))
 
 (defun font-lock-default-fontify-region (beg end loudly)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]