Changeset 368 for trunk/dll/newview.c


Ignore:
Timestamp:
Jul 27, 2006, 4:20:16 AM (19 years ago)
Author:
root
Message:

Use chop_at_crnl and convert_nl_to_nul

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/newview.c

    r350 r368  
    1515  06 Jun 05 SHL Correct reversed wrap logic
    1616  17 Jul 06 SHL Use Runtime_Error
     17  26 Jul 06 SHL Use chop_at_crnl and convert_nl_to_nul
    1718
    1819***********************************************************************/
     
    937938              {
    938939                lastline = 1;
    939                 n = strchr(t, '\n');
    940                 if (n)
    941                 {
    942                   *n = 0;
    943                   n++;
    944                 }
     940                n = convert_nl_to_nul(t);
    945941                if (*t)
    946942                {
     
    35233519        strncpy(line, ad -> lines[ad -> cursored - 1], CCHMAXPATH);
    35243520        line[CCHMAXPATH - 1] = 0;
    3525         p = strchr(line, '\r');
    3526         if (p)
    3527           *p = 0;
    3528         p = strchr(line, '\n');
    3529         if (p)
    3530           *p = 0;
     3521        chop_at_crnl(line);
    35313522        if (*line == '\"')
    35323523        {
Note: See TracChangeset for help on using the changeset viewer.