Mercurial > hg > xemacs-beta
diff lisp/indent.el @ 355:182f72e8cd0d r21-1-7
Import from CVS: tag r21-1-7
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:56:21 +0200 |
parents | 41ff10fd062f |
children | cc15677e0335 |
line wrap: on
line diff
--- a/lisp/indent.el Mon Aug 13 10:55:35 2007 +0200 +++ b/lisp/indent.el Mon Aug 13 10:56:21 2007 +0200 @@ -93,7 +93,7 @@ (back-to-indentation) (let ((cur-col (current-column))) (cond ((< cur-col column) - (if (> (- column (* (/ cur-col tab-width) tab-width)) tab-width) + (if (>= (- column (* (/ cur-col tab-width) tab-width)) tab-width) (delete-region (point) (progn (skip-chars-backward " ") (point)))) (indent-to column))