Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 185677
Collapse All | Expand All

(-)src/ex_cmds.c (-2 / +2 lines)
Lines 1607-1613 Link Here
1607
    if (p != NULL)
1607
    if (p != NULL)
1608
    {
1608
    {
1609
	*buf = ' '; /* not really needed? Not with sh, ksh or bash */
1609
	*buf = ' '; /* not really needed? Not with sh, ksh or bash */
1610
	sprintf((char *)buf + 1, (char *)opt, (char *)fname);
1610
	sprintf((char *)buf + 1, "%s%s", (char *)opt, (char *)fname);
1611
    }
1611
    }
1612
    else
1612
    else
1613
	sprintf((char *)buf,
1613
	sprintf((char *)buf,
Lines 6375-6381 Link Here
6375
	    s = ((char_u **)ga.ga_data)[i];
6375
	    s = ((char_u **)ga.ga_data)[i];
6376
	    if (STRNCMP(s, "help-tags", 9) == 0)
6376
	    if (STRNCMP(s, "help-tags", 9) == 0)
6377
		/* help-tags entry was added in formatted form */
6377
		/* help-tags entry was added in formatted form */
6378
		fprintf(fd_tags, (char *)s);
6378
		fprintf(fd_tags, "%s", s);
6379
	    else
6379
	    else
6380
	    {
6380
	    {
6381
		fprintf(fd_tags, "%s\t/*", s);
6381
		fprintf(fd_tags, "%s\t/*", s);

Return to bug 185677