Revision: 2264
http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=2264
Author: phcoder
Date: 2009-06-04 21:42:58 +0000 (Thu, 04 Jun 2009)
Log Message:
-----------
2009-06-04 Vladimir Serbinenko <[email protected]>
* include/grub/term.h (GRUB_TERM_BACKSPACE): explicitely define as 8
instead of '\b'
Modified Paths:
--------------
trunk/grub2/ChangeLog
trunk/grub2/include/grub/term.h
Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog 2009-06-04 21:38:17 UTC (rev 2263)
+++ trunk/grub2/ChangeLog 2009-06-04 21:42:58 UTC (rev 2264)
@@ -1,5 +1,10 @@
2009-06-04 Vladimir Serbinenko <[email protected]>
+ * include/grub/term.h (GRUB_TERM_BACKSPACE): explicitely define as 8
+ instead of '\b'
+
+2009-06-04 Vladimir Serbinenko <[email protected]>
+
Definitions for creating asm symbols with Apple's CC
* include/grub/symbol.h [APPLE_CC] (FUNCTION): new macro
Modified: trunk/grub2/include/grub/term.h
===================================================================
--- trunk/grub2/include/grub/term.h 2009-06-04 21:38:17 UTC (rev 2263)
+++ trunk/grub2/include/grub/term.h 2009-06-04 21:42:58 UTC (rev 2264)
@@ -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