View | Details | Raw Unified | Return to bug 112930
Collapse All | Expand All

(-)vim62/src/main.c.orig (+4 lines)
Lines 1275-1280 Link Here
1275
    if (p_commands > 0)
1275
    if (p_commands > 0)
1276
    {
1276
    {
1277
	curwin->w_cursor.lnum = 0; /* just in case.. */
1277
	curwin->w_cursor.lnum = 0; /* just in case.. */
1278
        curwin->w_cursor.col = 0;  /* avoid suse bugzilla #112930, jw@suse.de */
1278
	sourcing_name = (char_u *)_("pre-vimrc command line");
1279
	sourcing_name = (char_u *)_("pre-vimrc command line");
1279
# ifdef FEAT_EVAL
1280
# ifdef FEAT_EVAL
1280
	current_SID = SID_CMDARG;
1281
	current_SID = SID_CMDARG;
Lines 1892-1898 Link Here
1892
	 */
1893
	 */
1893
	msg_scroll = TRUE;
1894
	msg_scroll = TRUE;
1894
	if (tagname == NULL)
1895
	if (tagname == NULL)
1896
        {
1895
	    curwin->w_cursor.lnum = 0;
1897
	    curwin->w_cursor.lnum = 0;
1898
	    curwin->w_cursor.col = 0;	/* avoid suse bugzilla #112930, jw@suse.de */
1899
	}
1896
	sourcing_name = (char_u *)"command line";
1900
	sourcing_name = (char_u *)"command line";
1897
#ifdef FEAT_EVAL
1901
#ifdef FEAT_EVAL
1898
	current_SID = SID_CARG;
1902
	current_SID = SID_CARG;

Return to bug 112930