(gnus-group-highlight-line): Typo fix: beg, not start.
authorLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Wed, 22 Sep 2010 22:08:41 +0000 (00:08 +0200)
committerLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Wed, 22 Sep 2010 22:08:41 +0000 (00:08 +0200)
lisp/ChangeLog
lisp/gnus-group.el

index f7ea76e..47e83d5 100644 (file)
@@ -1,5 +1,7 @@
 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * gnus-group.el (gnus-group-highlight-line): Typo fix: beg, not start.
+
        * gnus-start.el (gnus-get-unread-articles): Don't have
        `gnus-get-unread-articles-in-group' update info, since that can be
        really slow and doesn't seem to be needed?
index 5e261cc..c17b3a2 100644 (file)
@@ -1671,7 +1671,7 @@ Some value are bound so the form can use them."
         (setq list (cdr list)))
       list)))
 
-(defun gnus-group-highlight-line (group start end)
+(defun gnus-group-highlight-line (group beg end)
   "Highlight the current line according to `gnus-group-highlight'.
 GROUP is current group, and the line to highlight starts at START
 and ends at END."
@@ -1681,9 +1681,9 @@ and ends at END."
     (unless (eq face (get-text-property beg 'face))
       (let ((inhibit-read-only t))
         (gnus-put-text-property-excluding-characters-with-faces
-         start end 'face
+         beg end 'face
          (if (boundp face) (symbol-value face) face)))
-      (gnus-extent-start-open start))))
+      (gnus-extent-start-open beg))))
 
 (defun gnus-group-get-icon (group)
   "Return an icon for GROUP according to `gnus-group-icon-list'."