By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2110
Collapse All | Expand All

(-)tdeioslave/man/man2html.cpp.orig (-5 / +7 lines)
Lines 2707-2712 Link Here
2707
    "3L", "Lightweight Processes Library",
2707
    "3L", "Lightweight Processes Library",
2708
    "3M", "Mathematical Library",
2708
    "3M", "Mathematical Library",
2709
    "3N", "Network Functions",
2709
    "3N", "Network Functions",
2710
    "3p", "Perl Functions",
2710
    "3R", "RPC Services Library",
2711
    "3R", "RPC Services Library",
2711
    "3S", "Standard I/O Functions",
2712
    "3S", "Standard I/O Functions",
2712
    "3V", "C Library Functions",
2713
    "3V", "C Library Functions",
Lines 5482-5497 Link Here
5482
        end++;
5483
        end++;
5483
    }
5484
    }
5484
5485
5485
    if (end > c + 2
5486
    if (end >= c + 2
5486
        && ispunct(*(end - 1))
5487
        && ispunct(*(end - 1))
5487
	&& isspace(*(end - 2)) && *(end - 2) != '\n') {
5488
	&& isspace(*(end - 2)) && *(end - 2) != '\n') {
5488
      /* Don't format lonely punctuation E.g. in "xyz ," format
5489
      /* Don't format lonely punctuation E.g. in "xyz ," format
5489
       * the xyz and then append the comma removing the space.
5490
       * the xyz and then append the comma removing the space.
5490
       */
5491
       */
5491
        *(end - 2) = '\n';
5492
        *(end - 2) = 0;
5492
	ret = scan_troff(c, san, result);
5493
       (void)scan_troff(c, 0, result);
5493
        *(end - 2) = *(end - 1);
5494
       ret = end-2;
5494
        *(end - 1) = ' ';
5495
       *(end-2)=*(end-1);
5496
       *(end-1)=' ';
5495
    }
5497
    }
5496
    else {
5498
    else {
5497
	ret = scan_troff(c, san, result);
5499
	ret = scan_troff(c, san, result);

Return to bug 2110