projects
/
YACASL2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb35f74
)
デバッガーで、デフォルトの動作がステップ実行になるよう修正
author
j8takagi
<j8takagi@nifty.com>
Mon, 25 Jun 2018 09:04:12 +0000
(18:04 +0900)
committer
j8takagi
<j8takagi@nifty.com>
Mon, 25 Jun 2018 09:04:12 +0000
(18:04 +0900)
src/debugger.c
patch
|
blob
|
history
diff --git
a/src/debugger.c
b/src/debugger.c
index
68e24fb
..
119c02f
100644
(file)
--- a/
src/debugger.c
+++ b/
src/debugger.c
@@
-6,7
+6,7
@@
void debugger()
for( ; ;) {
fprintf(stdout, "COMET II (Type ? for help) > ");
fgets(buf, DBINSIZE, stdin);
- if(*buf == '\
0
' || *buf == 's') {
+ if(*buf == '\
n
' || *buf == 's') {
break;
} else if(*buf == 'c') {
execmode.debugger = false;