* tuiStack.c (tuiSetLocatorInfo): Cleanup.
authorStephane Carrez <stcarrez@nerim.fr>
Sat, 21 Jul 2001 20:52:56 +0000 (20:52 +0000)
committerStephane Carrez <stcarrez@nerim.fr>
Sat, 21 Jul 2001 20:52:56 +0000 (20:52 +0000)
* tuiStack.h (tuiGetLocatorFilename): Declare.
* tuiRegs.h (tuiFirstRegElementNoInLine): Declare.
* tuiData.h (addToSourceWindows): Declare.

gdb/tui/ChangeLog
gdb/tui/tuiData.h
gdb/tui/tuiRegs.h
gdb/tui/tuiStack.c
gdb/tui/tuiStack.h

index 1f7eb18..287a939 100644 (file)
@@ -1,5 +1,12 @@
 2001-07-21  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
 
+       * tuiStack.c (tuiSetLocatorInfo): Cleanup.
+       * tuiStack.h (tuiGetLocatorFilename): Declare.
+       * tuiRegs.h (tuiFirstRegElementNoInLine): Declare.
+       * tuiData.h (addToSourceWindows): Declare.
+
+2001-07-21  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
+
        * tui.c (tui_change_windows): New function.
        (tui_delete_other_windows): New function.
        (tui_initialize_readline): Bind them to C-X 1 and C-X 2.
index 0f590e2..6fc4ca3 100644 (file)
@@ -367,4 +367,6 @@ extern void tuiSetWinResizedTo (int);
 extern TuiWinInfoPtr tuiNextWin (TuiWinInfoPtr);
 extern TuiWinInfoPtr tuiPrevWin (TuiWinInfoPtr);
 
+extern void addToSourceWindows (TuiWinInfoPtr winInfo);
+
 #endif /* TUI_DATA_H */
index 7a78749..8fbfbbf 100644 (file)
@@ -41,7 +41,7 @@ extern int tuiLastRegElementInLine (int);
 extern int tuiLineFromRegElementNo (int);
 extern void tuiToggleFloatRegs (void);
 extern int tuiCalculateRegsColumnCount (TuiRegisterDisplayType);
-
+extern int tuiFirstRegElementNoInLine (int lineno);
 
 #endif
 /*_TUI_REGS_H*/
index b3e4931..bf02dec 100644 (file)
@@ -107,40 +107,18 @@ tuiShowLocatorContent (void)
 }                              /* tuiShowLocatorContent */
 
 
-/*
-   ** tuiSetLocatorInfo().
-   **        Function to update the locator, with the provided arguments.
- */
+/* Update the locator, with the provided arguments.  */
 void
 tuiSetLocatorInfo (char *fname, char *procname, int lineNo,
                    CORE_ADDR addr, TuiLocatorElementPtr element)
 {
-#ifdef COMMENT
-  /* first free the old info */
-  if (element->fileName)
-    tuiFree (element->fileName);
-  if (element->procName)
-    tuiFree (element->procName);
-
-  if (fname == (char *) NULL)
-    element->fileName = fname;
-  else
-    element->fileName = tuiStrDup (fname);
-  if (procname == (char *) NULL)
-    element->procName = procname;
-  else
-    element->procName = tuiStrDup (procname);
-#else
   element->fileName[0] = (char) 0;
   element->procName[0] = (char) 0;
   strcat_to_buf (element->fileName, MAX_LOCATOR_ELEMENT_LEN, fname);
   strcat_to_buf (element->procName, MAX_LOCATOR_ELEMENT_LEN, procname);
-#endif
   element->lineNo = lineNo;
   element->addr = addr;
-
-  return;
-}                              /* tuiSetLocatorInfo */
+}
 
 
 /*
index 77d5b85..c348f6d 100644 (file)
@@ -34,6 +34,7 @@ extern void tuiUpdateLocatorDisplay (struct frame_info *);
 extern void tuiSetLocatorContent (struct frame_info *);
 extern void tuiShowLocatorContent (void);
 extern void tuiClearLocatorContent (void);
+extern void tuiClearLocatorDisplay (void);
 extern void tuiSwitchFilename (char *);
 extern void tuiShowFrameInfo (struct frame_info *);
 extern void tuiGetLocatorFilename (TuiGenWinInfoPtr, char **);