summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--debug.c5
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 6c2d36f6..362b5ad3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2015-08-06 Kaz Kylheku <kaz@kylheku.com>
+ * debug.c (help): Rearrange menu. Show missing quit command.
+
+2015-08-06 Kaz Kylheku <kaz@kylheku.com>
+
Suppress debug stepping into auto-loaded library code.
* debug.c (debug_set_state, debug_restore_state): New functions.
diff --git a/debug.c b/debug.c
index 0fb426b2..e0429421 100644
--- a/debug.c
+++ b/debug.c
@@ -61,9 +61,8 @@ void debug_init(void);
static void help(val stream)
{
put_string(lit("commands:\n"
- "? - help s - step into form\n"
- "h - help n - step over form\n"
- "c - continue f - finish form\n"
+ "? - help q - quit c - continue s - step into form\n"
+ "h - help f - finish form n - step over form\n"
"v - show variable binding environment o - show current form\n"
"b - set breakpoint by line number i - show current data\n"
"d - delete breakpoint w - backtrace\n"