* wl-util.el (wl-count-lines): Use `point-at-bol' instead of `(beginning-of-line...
authorkaoru <kaoru>
Fri, 1 Jan 2010 16:04:26 +0000 (16:04 +0000)
committerkaoru <kaoru>
Fri, 1 Jan 2010 16:04:26 +0000 (16:04 +0000)
wl/ChangeLog
wl/wl-util.el

index da3a321..b56ec91 100644 (file)
@@ -1,5 +1,8 @@
 2010-01-01  TAKAHASHI Kaoru  <kaoru@kaisei.org>
 
+       * wl-util.el (wl-count-lines): Use `point-at-bol' instead of
+       `(beginning-of-line) (point)'.
+
        * wl-fldmgr.el (wl-fldmgr-make-indent): Change from macro to function.
        (wl-fldmgr-delete-line): Change from macro to function. Use
        `point-at-bol' and `point-at-eol'.
index baf4d7a..15e73ef 100644 (file)
@@ -654,9 +654,7 @@ that `read' can handle, whenever this is possible."
 ;;;
 
 (defsubst wl-count-lines ()
-  (save-excursion
-    (beginning-of-line)
-    (count-lines 1 (point))))
+  (count-lines 1 (point-at-bol)))
 
 (defun wl-horizontal-recenter ()
   "Recenter the current buffer horizontally."