command.c (82725ba9bf1fd59746a4006a06f24d4d61d142f2) | command.c (74709ed038c5cdffc65586a83a160ddd07b27515) |
---|---|
1/* $FreeBSD$ */ 2/* 3 * Copyright (C) 1984-2017 Mark Nudelman 4 * 5 * You may distribute under the terms of either the GNU General Public 6 * License or the Less License, as specified in the README file. 7 * 8 * For more information, see the README file. --- 798 unchanged lines hidden (view full) --- 807 808/* 809 * Get command character. 810 * The character normally comes from the keyboard, 811 * but may come from ungotten characters 812 * (characters previously given to ungetcc or ungetsc). 813 */ 814 static LWCHAR | 1/* $FreeBSD$ */ 2/* 3 * Copyright (C) 1984-2017 Mark Nudelman 4 * 5 * You may distribute under the terms of either the GNU General Public 6 * License or the Less License, as specified in the README file. 7 * 8 * For more information, see the README file. --- 798 unchanged lines hidden (view full) --- 807 808/* 809 * Get command character. 810 * The character normally comes from the keyboard, 811 * but may come from ungotten characters 812 * (characters previously given to ungetcc or ungetsc). 813 */ 814 static LWCHAR |
815getccu() | 815getccu(VOID_PARAM) |
816{ 817 LWCHAR c; 818 if (ungot == NULL) 819 { 820 /* Normal case: no ungotten chars. 821 * Get char from the user. */ 822 c = getchr(); 823 } else --- 1100 unchanged lines hidden --- | 816{ 817 LWCHAR c; 818 if (ungot == NULL) 819 { 820 /* Normal case: no ungotten chars. 821 * Get char from the user. */ 822 c = getchr(); 823 } else --- 1100 unchanged lines hidden --- |