X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=lisp%2Findent.el;h=adf24859498822357683c19df377fda47e3e7df8;hb=34360e98c9689b0a7eedab93e14df13281141bbd;hp=f93f413da36cf8fbdaba69e815fd5d645864cddb;hpb=6883ee56ec887c2c48abe5b06b5e66aa74031910;p=chise%2Fxemacs-chise.git.1 diff --git a/lisp/indent.el b/lisp/indent.el index f93f413..adf2485 100644 --- a/lisp/indent.el +++ b/lisp/indent.el @@ -93,7 +93,7 @@ only if necessary. It leaves point at end of indentation." (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))