From: Hans-Bernhard B. <br...@us...> - 2001-06-15 11:01:17
|
Update of /cvsroot/cscope/cscope/src In directory usw-pr-cvs1:/tmp/cvs-serv9370/src Modified Files: help.c Log Message: Documentation glitch: set of keys to select a match is 0-9, not 1-9 Index: help.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/help.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** help.c 2000/05/31 16:54:10 1.3 --- help.c 2001/06/15 11:01:14 1.4 *************** *** 72,76 **** *tp++ = "last 2 input fields, the pattern can be a regcmp(3X) regular expression.\n"; *tp++ = "If the search is successful, you can use these single-character commands:\n\n"; ! *tp++ = "1-9a-zA-Z\tEdit the file containing the displayed line.\n"; } *tp++ = "space bar\tDisplay next set of matching lines.\n"; --- 72,76 ---- *tp++ = "last 2 input fields, the pattern can be a regcmp(3X) regular expression.\n"; *tp++ = "If the search is successful, you can use these single-character commands:\n\n"; ! *tp++ = "0-9a-zA-Z\tEdit the file containing the displayed line.\n"; } *tp++ = "space bar\tDisplay next set of matching lines.\n"; *************** *** 114,118 **** else { *tp++ = "When changing text, you can use these single-character commands:\n\n"; ! *tp++ = "1-9a-zA-Z\tMark or unmark the line to be changed.\n"; } *tp++ = "*\t\tMark or unmark all displayed lines to be changed.\n"; --- 114,118 ---- else { *tp++ = "When changing text, you can use these single-character commands:\n\n"; ! *tp++ = "0-9a-zA-Z\tMark or unmark the line to be changed.\n"; } *tp++ = "*\t\tMark or unmark all displayed lines to be changed.\n"; |