Displaying 5 results from an estimated 5 matches for "local_cursor_en".
2015 Jul 03
0
boot... round 2
...the current git:
com32/include/menu.h | 2 +-
com32/menu/readconfig.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/com32/include/menu.h b/com32/include/menu.h
index bc0182f..b0251e4 100644
--- a/com32/include/menu.h
+++ b/com32/include/menu.h
@@ -195,7 +195,7 @@ void local_cursor_enable(bool);
static inline int my_isspace(char c)
{
- return (unsigned char)c <= ' ';
+ return (unsigned char)c <= ' ' || (unsigned char)c == '\x7f';
}
int my_isxdigit(char c);
diff --git a/com32/menu/readconfig.c b/com32/menu/readconfig.c
index b7814be..a4...
2015 Jul 03
7
boot... round 2
...for the current git
Could you try the following patch? Feel free to only apply the change
to readconfig.c if you want.
--
-Gene
diff --git a/com32/include/menu.h b/com32/include/menu.h
index bc0182f..b0251e4 100644
--- a/com32/include/menu.h
+++ b/com32/include/menu.h
@@ -195,7 +195,7 @@ void local_cursor_enable(bool);
static inline int my_isspace(char c)
{
- return (unsigned char)c <= ' ';
+ return (unsigned char)c <= ' ' || (unsigned char)c == '\x7f';
}
int my_isxdigit(char c);
diff --git a/com32/menu/readconfig.c b/com32/menu/readconfig.c
index 257b042..a433...
2016 May 12
3
syslinux vs isolinux - com32 serial port output problem
On Thu, May 12, 2016 at 06:16:46PM +0200, Good Old Idea via Syslinux wrote:
> On Thu, May 12, 2016 at 02:29:52PM +0000, Janz, Burt via Syslinux wrote:
> > I have a need to display text to COM2 before loading a kernel.
> > The easiest way to do this was to invade menu.c32 (menumain.c) and
> > add a function to send the string out to the serial port just before
> > the
2015 Jul 02
6
boot... round 2
Hi,
hpa wrote:
> On PowerPC (I think) "unsigned char" is the default.
In any case it seems a good idea to interpret the character
more explicitely. To my experience, one signdness change causes
a little tree of consequential signedness changes or questionable
cast operations.
How about the following instead ?
if ((c >= 0 && c <= ' ') || c == '\x7f')
2010 Apr 23
1
Path simple menu integrated progress indicator
...D_ROW,
P_PASSWD_ROW,
@@ -115,6 +116,7 @@ enum message_number {
MSG_TITLE,
MSG_AUTOBOOT,
MSG_TAB,
+ MSG_LOAD,
MSG_NOTAB,
MSG_PASSPROMPT,
@@ -188,6 +190,7 @@ int draw_background(const char *filename
void set_resolution(int x, int y);
void start_console(void);
void local_cursor_enable(bool);
+void draw_progress(const char *file, size_t cur, size_t total);
static inline int my_isspace(char c)
{
@@ -227,4 +230,27 @@ void execute(const char *cmdline, enum k
/* drain.c */
void drain_keyboard(void);
+extern bool opt_quiet;
+
+/* The symbol "cm" always refers to th...