]> git.eshelyaron.com Git - emacs.git/commitdiff
(delete-rectangle-line): Use line-end-position.
authorKarl Heuer <kwzh@gnu.org>
Mon, 16 Aug 1999 20:38:36 +0000 (20:38 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 16 Aug 1999 20:38:36 +0000 (20:38 +0000)
lisp/rect.el

index 4f5ae2d8146b80431088bfdf5a669f1b901dae1f..437f030395d2cf79c30dece92b331b530f73c6cc 100644 (file)
@@ -135,7 +135,7 @@ the function is called."
     ))
 
 (defun delete-rectangle-line (startcol endcol fill)
-  (let ((pt (point-at-eol)))
+  (let ((pt (line-end-position)))
     (when (= (move-to-column-force startcol (or fill 'coerce)) startcol)
       (if (and (not fill) (<= pt endcol))
          (delete-region (point) pt)