comparison src/keyboard.c @ 39684:c45a806848d2

*** empty log message ***
author Pavel Janík <Pavel@Janik.cz>
date Mon, 08 Oct 2001 08:39:21 +0000
parents 39d3627c1c99
children e479fa559f2e
comparison
equal deleted inserted replaced
39683:03d7434d87b6 39684:c45a806848d2
693 static void any_kboard_state P_ ((void)); 693 static void any_kboard_state P_ ((void));
694 694
695 /* Nonzero means don't try to suspend even if the operating system seems 695 /* Nonzero means don't try to suspend even if the operating system seems
696 to support it. */ 696 to support it. */
697 static int cannot_suspend; 697 static int cannot_suspend;
698
699 #define min(a,b) ((a)<(b)?(a):(b))
700 #define max(a,b) ((a)>(b)?(a):(b))
701 698
702 /* Install the string STR as the beginning of the string of echoing, 699 /* Install the string STR as the beginning of the string of echoing,
703 so that it serves as a prompt for the next character. 700 so that it serves as a prompt for the next character.
704 Also start echoing. */ 701 Also start echoing. */
705 702