Source-Changes-HG archive

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

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



details:   https://anonhg.NetBSD.org/src/rev/819fd32bb4b9
branches:  netbsd-3
changeset: 577440:819fd32bb4b9
user:      tron <tron%NetBSD.org@localhost>
date:      Sat Nov 05 00:49:05 2005 +0000

description:
Pull up following revision(s) (requested by dsl in ticket #931):
        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 92ac9e99b684 -r 819fd32bb4b9 distrib/utils/sysinst/util.c
--- a/distrib/utils/sysinst/util.c      Sat Nov 05 00:47:36 2005 +0000
+++ b/distrib/utils/sysinst/util.c      Sat Nov 05 00:49:05 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: util.c,v 1.135.2.1 2005/04/20 11:43:13 tron Exp $      */
+/*     $NetBSD: util.c,v 1.135.2.2 2005/11/05 00:49:05 tron 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