Update of /cvsroot/blob/blob/include
In directory usw-pr-cvs1:/tmp/cvs-serv30855
Modified Files:
command_hist.h
Log Message:
- added define for up/down key
Index: command_hist.h
===================================================================
RCS file: /cvsroot/blob/blob/include/command_hist.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- command_hist.h 2001/10/05 11:51:52 1.2
+++ command_hist.h 2001/10/05 12:05:50 1.3
@@ -29,6 +29,9 @@
#ifndef INC_COMMAND_HIST_H
#define INC_COMMAND_HIST_H 1
+#define CMDHIST_KEY_UP '\025' // ^U
+#define CMDHIST_KEY_DN '\004' // ^D
+
int cmdhist_init( void );
int cmdhist_push( char *cmd );
int cmdhist_next( char **cmd );
|