From e879f75c16e7e80eb38a80490ffc2a3c366dd854 Mon Sep 17 00:00:00 2001 From: bostic Date: Fri, 20 Dec 1996 10:35:46 +0000 Subject: [PATCH] rework the text, "window" is an integer option, not a toggle put the Editor (general configuration) options last --- motif_l/m_options.c | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/motif_l/m_options.c b/motif_l/m_options.c index 62dc47f2..807be571 100644 --- a/motif_l/m_options.c +++ b/motif_l/m_options.c @@ -10,7 +10,7 @@ #include "config.h" #ifndef lint -static const char sccsid[] = "$Id: m_options.c,v 8.16 1996/12/20 10:29:10 bostic Exp $ (Berkeley) $Date: 1996/12/20 10:29:10 $"; +static const char sccsid[] = "$Id: m_options.c,v 8.17 1996/12/20 10:35:46 bostic Exp $ (Berkeley) $Date: 1996/12/20 10:35:46 $"; #endif /* not lint */ #include @@ -67,7 +67,6 @@ static optData display[] = { { optToggle, "showmode", }, { optToggle, "slowopen", }, { optToggle, "verbose", }, - { optToggle, "window", }, { optToggle, "windowname", }, { optTerminator, }, }, display_int[] = { @@ -76,6 +75,7 @@ static optData display[] = { { optInteger, "shiftwidth", }, { optInteger, "sidescroll", }, { optInteger, "tabstop", }, + { optInteger, "window", }, { optTerminator, }, }, display_str[] = { { optString, "noprint", }, @@ -150,42 +150,41 @@ static optData display[] = { * ********* NOTE *********** */ static optSheet sheets[] = { - { "Editor", - "These options control the general configuration\n\ -and the editor as a whole", - NULL, - general, - general_int, - general_str, - }, { "Display", - "These options control the way things are displayed on the screen", + "These options control how text is displayed on the screen", NULL, display, display_int, display_str, }, { "Files", - "These options globally modify how the editor handles files", + "These options control how the editor handles files", NULL, files, NULL, files_str, }, { "Input", - "These options modify how text input behaves", + "These options control text input behavior", NULL, input, input_int, input_str, }, { "Search/RE", - "These options modify searches and regular expression", + "These options control searching and Regular Expression behavior", NULL, search, NULL, search_str, }, + { "Editor", + "These options control general editor configuration", + NULL, + general, + general_int, + general_str, + }, }; -- 2.11.4.GIT