[BACK]Return to cmdcmds.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / vim

Diff for /src/usr.bin/vim/Attic/cmdcmds.c between version 1.3 and 1.4

version 1.3, 1996/09/22 01:17:58 version 1.4, 1996/09/24 17:53:49
Line 341 
Line 341 
         CHANGED;          CHANGED;
         if (!global_busy && num_lines > p_report)          if (!global_busy && num_lines > p_report)
                 smsg((char_u *)"%ld line%s moved", num_lines, plural(num_lines));                  smsg((char_u *)"%ld line%s moved", num_lines, plural(num_lines));
   
           /*
            * Leave the cursor on the last of the moved lines.
            */
           if (n >= line1)
                   curwin->w_cursor.lnum = n;
           else
                   curwin->w_cursor.lnum = n + (line2 - line1) + 1;
   
         return OK;          return OK;
 }  }
   

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4