Browse Source

Fix definition of KEY_END

tags/v0.9.3
Michael Brown 17 years ago
parent
commit
46c3eeba2a
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/include/gpxe/keys.h

+ 1
- 1
src/include/gpxe/keys.h View File

65
 #define KEY_DOWN	KEY_ANSI ( 'B' )	/**< Down arrow */
65
 #define KEY_DOWN	KEY_ANSI ( 'B' )	/**< Down arrow */
66
 #define KEY_RIGHT	KEY_ANSI ( 'C' )	/**< Right arrow */
66
 #define KEY_RIGHT	KEY_ANSI ( 'C' )	/**< Right arrow */
67
 #define KEY_LEFT	KEY_ANSI ( 'D' )	/**< Left arrow */
67
 #define KEY_LEFT	KEY_ANSI ( 'D' )	/**< Left arrow */
68
-#define KEY_END		KEY_ANSI ( 'E' )	/**< End */
68
+#define KEY_END		KEY_ANSI ( 'F' )	/**< End */
69
 #define KEY_HOME	KEY_ANSI ( 'H' )	/**< Home */
69
 #define KEY_HOME	KEY_ANSI ( 'H' )	/**< Home */
70
 #define KEY_IC		KEY_ANSI ( '2' )	/**< Insert */
70
 #define KEY_IC		KEY_ANSI ( '2' )	/**< Insert */
71
 #define KEY_DC		KEY_ANSI ( '3' )	/**< Delete */
71
 #define KEY_DC		KEY_ANSI ( '3' )	/**< Delete */

Loading…
Cancel
Save