'cpoptions': Remove "j" flag

This commit is contained in:
David Bürgin
2015-05-01 15:25:48 +02:00
committed by Justin M. Keyes
parent 297973ab00
commit 44175224cc
6 changed files with 12 additions and 21 deletions

View File

@@ -4335,10 +4335,10 @@ search_line:
/* IObuf =~ "\(\k\|\i\).* ", thus i >= 2*/
if (p_js
&& (IObuff[i-2] == '.'
|| (vim_strchr(p_cpo, CPO_JOINSP) == NULL
&& (IObuff[i-2] == '?'
|| IObuff[i-2] == '!'))))
|| IObuff[i-2] == '?'
|| IObuff[i-2] == '!')) {
IObuff[i++] = ' ';
}
}
/* copy as much as possible of the new word */
if (p - aux >= IOSIZE - i)