Re: Help fixes & Misc.



Hi, David!

> In the c) piece there was a fix for a similar weakness when looking for
> the closing bracket. Here you have the patch for this and the diff in
> the help file I used to make mc crash / test the patch (check with the
> previous one, anyway).

Sorry, I didn't realize that.  Applied now.  Thanks!

> Minor fixes for the Spanish help, as usual.

Applied.

> You may add the reference to the mcedit man paqe in the rest of the help
> files.

I'll have a look.

> BTW, with the latest snapshot I get no text lines under the panels. I
> usually have 6-10 lines of text, but now they are solid blue, even when
> panels have the right size.

It's because the default dialog callback now handles DLG_DRAW events, and 
midnight_callback wasn't returning after handling DLG_DRAW.  I'm applying 
this trivial patch:

=====================
--- main.c
+++ main.c
@@ -1799,7 +1799,7 @@ midnight_callback (struct Dlg_head *h, i
 	    show_console_contents (output_start_y,
 				   LINES-output_lines-keybar_visible-1,
 				   LINES-keybar_visible-1);
-	break;
+	return MSG_HANDLED;
 	
     }
     return default_dlg_callback (h, id, msg);
=====================

Thank you for finding and reporting this bug so fast!

-- 
Regards,
Pavel Roskin




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