[BACK]Return to cvt.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / less

Diff for /src/usr.bin/less/cvt.c between version 1.1 and 1.2

version 1.1, 2011/09/16 17:47:04 version 1.2, 2011/09/16 18:12:09
Line 97 
Line 97 
                         /* Just copy the char to the destination buffer. */                          /* Just copy the char to the destination buffer. */
                         if ((ops & CVT_TO_LC) && IS_UPPER(ch))                          if ((ops & CVT_TO_LC) && IS_UPPER(ch))
                                 ch = TO_LOWER(ch);                                  ch = TO_LOWER(ch);
   #if !SMALL
                         put_wchar(&dst, ch);                          put_wchar(&dst, ch);
   #else
                           *dst++ = (char)ch;
   #endif /* !SMALL */
                         /*                          /*
                          * Record the original position of the char.                           * Record the original position of the char.
                          * But if we've already recorded a position                           * But if we've already recorded a position

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2