Hi,
The diff is against 7.1.116 - the warning appeared after patch 106. The
warning is:
ops.c(2608) : warning C4018: '>' : signed/unsigned mismatch
Enjoy.
Mike
--
Ohgreat,nowthedamspacebardoesn'twork...
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---
diff -r b63b0121c1cb src/ops.c
--- a/src/ops.c Mon Sep 24 14:19:22 2007 +0100
+++ b/src/ops.c Mon Sep 24 14:22:33 2007 +0100
@@ -2605,7 +2605,7 @@ op_change(oap)
/* Auto-indenting may have changed the indent. If the cursor was past
* the indent, exclude that indent change from the inserted text. */
firstline = ml_get(oap->start.lnum);
- if (bd.textcol > pre_indent)
+ if (bd.textcol > (colnr_T)pre_indent)
{
long new_indent = (long)(skipwhite(firstline) - firstline);