diff src/indent.c @ 93342:f6e488e577db

(Fmove_to_column): Move declaration before statements.
author Andreas Schwab <schwab@suse.de>
date Fri, 28 Mar 2008 17:24:51 +0000
parents 6b2d6832b219
children 8971ddf55736
line wrap: on
line diff
--- a/src/indent.c	Fri Mar 28 17:05:47 2008 +0000
+++ b/src/indent.c	Fri Mar 28 17:24:51 2008 +0000
@@ -1038,10 +1038,11 @@
      and scan through it again.  */
   if (!NILP (force) && col > goal)
     {
+      int c;
       EMACS_INT pos_byte = PT_BYTE;
+
       DEC_POS (pos_byte);
-      int c = FETCH_CHAR (pos_byte);
-
+      c = FETCH_CHAR (pos_byte);
       if (c == '\t' && prev_col < goal)
 	{
 	  EMACS_INT goal_pt, goal_pt_byte;