OSDN Git Service

* tui/tui-data.h (MAX_LOCATOR_ELEMENT_LEN): Defined to a bigger
authorJoel Brobecker <brobecker@gnat.com>
Fri, 21 Dec 2007 07:37:26 +0000 (07:37 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Fri, 21 Dec 2007 07:37:26 +0000 (07:37 +0000)
        value or to PATH_MAX when possible.

gdb/ChangeLog
gdb/tui/tui-data.h

index 96a8faa..98c262f 100644 (file)
@@ -1,3 +1,8 @@
+2007-12-21 Denis Pilat <denis.pilat@st.com>
+
+       * tui/tui-data.h (MAX_LOCATOR_ELEMENT_LEN): Defined to a bigger
+       value or to PATH_MAX when possible.
+
 2007-12-20  Joel Brobecker  <brobecker@adacore.com>
 
        * rs6000-tdep.h: Remove defs.h #include.
index 63a5b25..3a0c044 100644 (file)
@@ -195,8 +195,11 @@ struct tui_command_element
   char *line;
 };
 
-
-#define MAX_LOCATOR_ELEMENT_LEN        100
+#ifdef PATH_MAX
+# define MAX_LOCATOR_ELEMENT_LEN        PATH_MAX
+#else
+# define MAX_LOCATOR_ELEMENT_LEN        1024
+#endif
 
 /* Elements in the locator window content.  */
 struct tui_locator_element