* event-top.c (command_line_handler): Don't read past
beginning of buffer.
2002-07-03 Martin M. Hunt <hunt@redhat.com>
+ * event-top.c (command_line_handler): Don't read past
+ beginning of buffer.
+2002-07-03 Martin M. Hunt <hunt@redhat.com>
+
* varobj.c (struct varobj_root): Change frame from CORE_ADDR to
struct frame_id.
(varobj_create): Store frame_id for root.
xfree (rl); /* Allocated in readline. */
- if (*(p - 1) == '\\')
+ if (p > linebuffer && *(p - 1) == '\\')
{
p--; /* Put on top of '\'. */