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

Diff for /src/usr.bin/less/output.c between version 1.10 and 1.11

version 1.10, 2015/11/05 22:08:44 version 1.11, 2015/11/05 22:47:33
Line 187 
Line 187 
 static int  static int
 less_printf(const char *fmt, PARG *parg)  less_printf(const char *fmt, PARG *parg)
 {  {
         register char *s;          char *s;
         register int col;          int col;
   
         col = 0;          col = 0;
         while (*fmt != '\0') {          while (*fmt != '\0') {
Line 310 
Line 310 
 int  int
 query(const char *fmt, PARG *parg)  query(const char *fmt, PARG *parg)
 {  {
         register int c;          int c;
         int col = 0;          int col = 0;
   
         if (any_display && is_tty)          if (any_display && is_tty)

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11