4 ===================================================================
5 RCS file: /cvsroot/vim/vim7/src/edit.c,v
6 retrieving revision 1.141
8 --- src/edit.c 6 Aug 2008 16:56:55 -0000 1.141
9 +++ src/edit.c 30 Aug 2008 08:23:06 -0000
11 textwidth = W_WIDTH(curwin) - 1;
14 + textwidth = 72; /* Added by sunny@sunbase.org -- always use 72 if not defined. */
19 ===================================================================
20 RCS file: /cvsroot/vim/vim7/src/ex_cmds.c,v
21 retrieving revision 1.113
22 diff -u -r1.113 ex_cmds.c
23 --- src/ex_cmds.c 6 Aug 2008 13:03:07 -0000 1.113
24 +++ src/ex_cmds.c 30 Aug 2008 08:23:06 -0000
27 * if 'textwidth' set, use it
28 * else if 'wrapmargin' set, use it
29 - * if invalid value, use 80
30 + * if invalid value, use 72
33 width = curbuf->b_p_tw;
34 if (width == 0 && curbuf->b_p_wm > 0)
35 width = W_WIDTH(curwin) - curbuf->b_p_wm;
38 + width = 72; /* Changed from 80 to 72 by sunny@sunbase.org */
41 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)