summaryrefslogtreecommitdiff
path: root/src/indent.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2013-03-28 15:54:21 +0200
committerEli Zaretskii <eliz@gnu.org>2013-03-28 15:54:21 +0200
commit9d42d31f24040706fe965e7c586b640471b12861 (patch)
tree919a33a7fb1d25ba35b0e4d12ffce05245033542 /src/indent.c
parent21e930f8f78cec0ddcdb4bc13919847892782ec1 (diff)
downloademacs-9d42d31f24040706fe965e7c586b640471b12861.tar.gz
Fix inaccuracy in a comment.
Diffstat (limited to 'src/indent.c')
-rw-r--r--src/indent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/indent.c b/src/indent.c
index ac448532dd4..b662b3bbaa0 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -1088,8 +1088,8 @@ static struct position val_compute_motion;
: (window_width + window_left != frame_cols))
where
- window_width is XFASTINT (w->total_cols),
- window_left is XFASTINT (w->left_col),
+ window_width is w->total_cols,
+ window_left is w->left_col,
has_vertical_scroll_bars is
WINDOW_HAS_VERTICAL_SCROLL_BAR (window)
and frame_cols = FRAME_COLS (XFRAME (window->frame))