]> git.proxmox.com Git - grub2.git/commitdiff
2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>
authorphcoder <phcoder@localhost>
Thu, 4 Jun 2009 21:42:58 +0000 (21:42 +0000)
committerphcoder <phcoder@localhost>
Thu, 4 Jun 2009 21:42:58 +0000 (21:42 +0000)
* include/grub/term.h (GRUB_TERM_BACKSPACE): explicitely define as 8
instead of '\b'

ChangeLog
include/grub/term.h

index 6193c812c5eab79b2d8778da199ed802639f38cb..2e6fde625a1bbfe2b71fd599937193f77a1b3e53 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * include/grub/term.h (GRUB_TERM_BACKSPACE): explicitely define as 8
+       instead of '\b'
+       
 2009-06-04  Vladimir Serbinenko  <phcoder@gmail.com>
 
        Definitions for creating asm symbols with Apple's CC
index d12d0f0d358348c67c911e6ca869722aebd11609..3251e36ba5df75da487f8ae68bb61db8af653b75 100644 (file)
@@ -31,7 +31,7 @@
 #define GRUB_TERM_NPAGE                3
 #define GRUB_TERM_ESC          '\e'
 #define GRUB_TERM_TAB          '\t'
-#define GRUB_TERM_BACKSPACE    '\b'
+#define GRUB_TERM_BACKSPACE    8
 
 #ifndef ASM_FILE