Source-Changes-HG archive

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

[src/netbsd-2]: src/distrib/utils/sysinst Pull up following revision(s) (requ...



details:   https://anonhg.NetBSD.org/src/rev/e611cbff142d
branches:  netbsd-2
changeset: 564326:e611cbff142d
user:      riz <riz%NetBSD.org@localhost>
date:      Thu Nov 03 21:01:02 2005 +0000

description:
Pull up following revision(s) (requested by dsl in ticket #5964):
        distrib/utils/sysinst/util.c: revision 1.137
Don't redisplay the title messages before displaying sub-menus during set
selection (eg selecting the X sets).
libcurses got changed earlier in the year so that the erase (and refresh)
of the message window caused all the unchanged spaces to be redrawn
overwriting most of the main set selection window.

diffstat:

 distrib/utils/sysinst/util.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (29 lines):

diff -r 4f3fafc20750 -r e611cbff142d distrib/utils/sysinst/util.c
--- a/distrib/utils/sysinst/util.c      Thu Nov 03 20:24:25 2005 +0000
+++ b/distrib/utils/sysinst/util.c      Thu Nov 03 21:01:02 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: util.c,v 1.117.2.4.2.2 2005/09/01 16:54:49 riz Exp $   */
+/*     $NetBSD: util.c,v 1.117.2.4.2.3 2005/11/03 21:01:02 riz Exp $   */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -472,9 +472,6 @@
                none = msg_string(MSG_None);
        }
 
-       msg_display(MSG_cur_distsets);
-       msg_table_add(MSG_cur_distsets_header);
-
        m = menu->opts;
        for (list = menu_info->dist; list->desc; list++) {
                if (!(menu_info->sets & list->set))
@@ -605,6 +602,9 @@
        if (menu_no == -1)
                return;
 
+       msg_display(MSG_cur_distsets);
+       msg_table_add(MSG_cur_distsets_header);
+
        set_menu_info.dist = dist_list;
        set_menu_info.sets = ~0u;
        process_menu(menu_no, &set_menu_info);



Home | Main Index | Thread Index | Old Index