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

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

version 1.1, 1996/09/21 05:39:43 version 1.2, 1996/09/21 06:06:41
Line 43 
Line 43 
 public int bs_mode;             /* How to process backspaces */  public int bs_mode;             /* How to process backspaces */
 public int know_dumb;           /* Don't complain about dumb terminals */  public int know_dumb;           /* Don't complain about dumb terminals */
 public int quit_at_eof;         /* Quit after hitting end of file twice */  public int quit_at_eof;         /* Quit after hitting end of file twice */
   public int be_helpful;          /* more(1) style -d */
 public int squeeze;             /* Squeeze multiple blank lines into one */  public int squeeze;             /* Squeeze multiple blank lines into one */
 public int tabstop;             /* Tab settings */  public int tabstop;             /* Tab settings */
 public int back_scroll;         /* Repaint screen on backwards movement */  public int back_scroll;         /* Repaint screen on backwards movement */
Line 88 
Line 89 
                 "Repaint by clearing each line",                  "Repaint by clearing each line",
                 "Repaint by painting from top of screen"                  "Repaint by painting from top of screen"
         },          },
   #if 0
         { 'd', BOOL|NO_TOGGLE, OPT_OFF, &know_dumb, NULL,          { 'd', BOOL|NO_TOGGLE, OPT_OFF, &know_dumb, NULL,
                 "Assume intelligent terminal",                  "Assume intelligent terminal",
                 "Assume dumb terminal",                  "Assume dumb terminal",
                 NULL                  NULL
         },          },
   #else
           { 'd', BOOL, OPT_OFF, &be_helpful, NULL,
                   "Be helpful in prompts",
                   "Be less helpful in prompts",
                   NULL,
           },
   #endif
 #if MSOFTC  #if MSOFTC
         { 'D', STRING|REPAINT, 0, NULL, opt_D,          { 'D', STRING|REPAINT, 0, NULL, opt_D,
                 "color desc: ", NULL, NULL                  "color desc: ", NULL, NULL

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