lynx-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Lynx-dev] LYMainLoop.c [PATCH]


From: Doug Kaufman
Subject: [Lynx-dev] LYMainLoop.c [PATCH]
Date: Sat, 12 Aug 2006 17:27:41 -0700 (PDT)

There was a change made to LYMainLoop.c with 2.8.6dev.1 (which wasn't
included in the patch file for that version) which broke the formatting
of the spawning message. I suspect that this was done accidentally. At
least with DOS and MingW the spawning message now starts at the right
side of the screen and wraps. The message used to start with \r\n, but
probably just a \r is sufficient.
                              Doug


--- lynx2.8.6dev.18/lynx2-8-6/src/LYMainLoop.c.ori      2006-05-29 
14:44:54.000000000 -0800
+++ lynx2.8.6dev.18/lynx2-8-6/src/LYMainLoop.c  2006-08-10 23:36:40.000000000 
-0800
@@ -4183,7 +4183,7 @@
 {
     if (!no_shell) {
        stop_curses();
-       printf("%s\r\n", SPAWNING_MSG);
+       printf("\r%s\r\n", SPAWNING_MSG);
 #if defined(__CYGWIN__)
        /* handling "exec $SHELL" does not work if $SHELL is null */
        if (LYGetEnv("SHELL") == NULL) {

-- 
Doug Kaufman
Internet: address@hidden





reply via email to

[Prev in Thread] Current Thread [Next in Thread]