=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/less/opttbl.c,v retrieving revision 1.12 retrieving revision 1.13 diff -c -r1.12 -r1.13 *** src/usr.bin/less/opttbl.c 2014/04/25 13:38:21 1.12 --- src/usr.bin/less/opttbl.c 2014/04/29 12:11:25 1.13 *************** *** 28,34 **** public int quit_at_eof; /* Quit after hitting end of file twice */ public int quit_if_one_screen; /* Quit if EOF on first screen */ public int squeeze; /* Squeeze multiple blank lines into one */ - public int be_helpful; /* more(1) style -d */ public int tabstop; /* Tab settings */ public int back_scroll; /* Repaint screen on backwards movement */ public int forw_scroll; /* Repaint screen on forward movement */ --- 28,33 ---- *************** *** 535,555 **** for (o = option; o->oletter != '\0'; o++) { - /* - * Replace less's -d option if invoked as more - */ - if (less_is_more && o->oletter == 'd') - { - o->onames = NULL; - o->otype = BOOL; - o->odefault = OPT_OFF; - o->ovar = &be_helpful; - o->ofunc = NULL; - o->odesc[0] = "Be less helpful in prompts"; - o->odesc[1] = "Be helpful in prompts"; - o->odesc[2] = NULL; - } - /* * Set each variable to its default. */ --- 534,539 ----