* tuiWin.c (_tuiSetFocus): Replace subsetCompare with subset_compare.
authorStephane Carrez <stcarrez@nerim.fr>
Tue, 17 Jul 2001 21:37:18 +0000 (21:37 +0000)
committerStephane Carrez <stcarrez@nerim.fr>
Tue, 17 Jul 2001 21:37:18 +0000 (21:37 +0000)
* tuiLayout.c (_tuiSetLayoutTo): Likewise.
* tui.c (_tui_vToggle_command): Likewise.

gdb/tui/ChangeLog
gdb/tui/tui.c
gdb/tui/tuiLayout.c
gdb/tui/tuiWin.c

index 45feef431d40da3a224815b4c0aa0642dd382e0e..30163968fd601f5ace09180f4024a7d3e925fd3c 100644 (file)
@@ -1,3 +1,9 @@
+2001-07-17  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
+
+       * tuiWin.c (_tuiSetFocus): Replace subsetCompare with subset_compare.
+       * tuiLayout.c (_tuiSetLayoutTo): Likewise.
+       * tui.c (_tui_vToggle_command): Likewise.
+
 2001-07-17  Elena Zannoni  <ezannoni@redhat.com>
 
        * tui-file.c: Add include of tuiIO.h, for tuiPuts_unfiltered.
index 4262d3aac18e1259a80b63dc03255cf57bd594a0..e51e1b9399714e477ef06c24e31f5c63d59ad3f4 100644 (file)
@@ -600,9 +600,9 @@ _tui_vToggle_command (va_list args)
       for (i = 0; (ptr[i]); i++)
        ptr[i] = toupper (arg[i]);
 
-      if (subsetCompare (ptr, TUI_FLOAT_REGS_NAME))
+      if (subset_compare (ptr, TUI_FLOAT_REGS_NAME))
        tuiToggleFloatRegs ();
-/*        else if (subsetCompare(ptr, "ANOTHER TOGGLE OPTION"))
+/*        else if (subset_compare(ptr, "ANOTHER TOGGLE OPTION"))
    ...
  */
       else
index 2b435b420d340732ecc77288d9e3c5411ca35cc4..9d30bdec9735af2a6cd0a00b537b06a5ca12516c 100644 (file)
@@ -499,17 +499,17 @@ _tuiSetLayoutTo (char *layoutName)
        }
       else
        {
-         if (subsetCompare (bufPtr, "SRC"))
+         if (subset_compare (bufPtr, "SRC"))
            newLayout = SRC_COMMAND;
-         else if (subsetCompare (bufPtr, "ASM"))
+         else if (subset_compare (bufPtr, "ASM"))
            newLayout = DISASSEM_COMMAND;
-         else if (subsetCompare (bufPtr, "SPLIT"))
+         else if (subset_compare (bufPtr, "SPLIT"))
            newLayout = SRC_DISASSEM_COMMAND;
-         else if (subsetCompare (bufPtr, "REGS") ||
-                  subsetCompare (bufPtr, TUI_GENERAL_SPECIAL_REGS_NAME) ||
-                  subsetCompare (bufPtr, TUI_GENERAL_REGS_NAME) ||
-                  subsetCompare (bufPtr, TUI_FLOAT_REGS_NAME) ||
-                  subsetCompare (bufPtr, TUI_SPECIAL_REGS_NAME))
+         else if (subset_compare (bufPtr, "REGS") ||
+                  subset_compare (bufPtr, TUI_GENERAL_SPECIAL_REGS_NAME) ||
+                  subset_compare (bufPtr, TUI_GENERAL_REGS_NAME) ||
+                  subset_compare (bufPtr, TUI_FLOAT_REGS_NAME) ||
+                  subset_compare (bufPtr, TUI_SPECIAL_REGS_NAME))
            {
              if (curLayout == SRC_COMMAND || curLayout == SRC_DATA_COMMAND)
                newLayout = SRC_DATA_COMMAND;
@@ -521,7 +521,7 @@ _tuiSetLayoutTo (char *layoutName)
    layout command issued by the user. HP has asked us to hook up this code 
    - edie epstein
  */
-             if (subsetCompare (bufPtr, TUI_FLOAT_REGS_NAME))
+             if (subset_compare (bufPtr, TUI_FLOAT_REGS_NAME))
                {
                  if (dataWin->detail.dataDisplayInfo.regsDisplayType !=
                      TUI_SFLOAT_REGS &&
@@ -532,12 +532,12 @@ _tuiSetLayoutTo (char *layoutName)
                    dpyType =
                      dataWin->detail.dataDisplayInfo.regsDisplayType;
                }
-             else if (subsetCompare (bufPtr,
+             else if (subset_compare (bufPtr,
                                      TUI_GENERAL_SPECIAL_REGS_NAME))
                dpyType = TUI_GENERAL_AND_SPECIAL_REGS;
-             else if (subsetCompare (bufPtr, TUI_GENERAL_REGS_NAME))
+             else if (subset_compare (bufPtr, TUI_GENERAL_REGS_NAME))
                dpyType = TUI_GENERAL_REGS;
-             else if (subsetCompare (bufPtr, TUI_SPECIAL_REGS_NAME))
+             else if (subset_compare (bufPtr, TUI_SPECIAL_REGS_NAME))
                dpyType = TUI_SPECIAL_REGS;
              else
                {
@@ -559,9 +559,9 @@ _tuiSetLayoutTo (char *layoutName)
 /*              dpyType = TUI_GENERAL_REGS; 
  */
            }
-         else if (subsetCompare (bufPtr, "NEXT"))
+         else if (subset_compare (bufPtr, "NEXT"))
            newLayout = _nextLayout ();
-         else if (subsetCompare (bufPtr, "PREV"))
+         else if (subset_compare (bufPtr, "PREV"))
            newLayout = _prevLayout ();
          else
            status = TUI_FAILURE;
index 925e1f4fa715e5e1237a297825a6ef6258a0acb6..3843eb69201414e8f798a094ae21ad5b199e44f6 100644 (file)
@@ -664,9 +664,9 @@ _tuiSetFocus (char *arg, int fromTTY)
       for (i = 0; (i < strlen (bufPtr)); i++)
        bufPtr[i] = toupper (arg[i]);
 
-      if (subsetCompare (bufPtr, "NEXT"))
+      if (subset_compare (bufPtr, "NEXT"))
        winInfo = tuiNextWin (tuiWinWithFocus ());
-      else if (subsetCompare (bufPtr, "PREV"))
+      else if (subset_compare (bufPtr, "PREV"))
        winInfo = tuiPrevWin (tuiWinWithFocus ());
       else
        winInfo = partialWinByName (bufPtr);