From: Richard M. Stallman Date: Tue, 23 Jun 1998 20:31:53 +0000 (+0000) Subject: (indented_beyond_p): Return the right kind of value. X-Git-Tag: emacs-20.3~519 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8f9db2b73f86c43423e7f245ea3f58789e10b540;p=emacs.git (indented_beyond_p): Return the right kind of value. --- diff --git a/src/indent.c b/src/indent.c index 0d49c9515cc..c739da725df 100644 --- a/src/indent.c +++ b/src/indent.c @@ -801,7 +801,7 @@ indented_beyond_p (pos, pos_byte, column) val = position_indentation (PT_BYTE); SET_PT_BOTH (opoint, opoint_byte); - return val; + return val >= column; } DEFUN ("move-to-column", Fmove_to_column, Smove_to_column, 1, 2, "p",