Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
abc-interpreter
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
7
Issues
7
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
clean-and-itasks
abc-interpreter
Commits
eb94e6b6
Verified
Commit
eb94e6b6
authored
May 23, 2019
by
Camil Staps
🍃
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix rendering of _cycle_in_spine in debugger
parent
b9f78ecc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/debug_curses.c
src/debug_curses.c
+2
-2
No files found.
src/debug_curses.c
View file @
eb94e6b6
...
...
@@ -322,7 +322,7 @@ void wprint_node(WINDOW *win, BC_WORD *node, int with_arguments) {
wprintw
(
win
,
"CHAR '%c'"
,
node
[
1
]);
else
if
((
node
[
0
]
&-
4
)
==
(
BC_WORD
)
&
REAL
)
wprintw
(
win
,
"REAL %f"
,
*
(
BC_REAL
*
)
&
node
[
1
]);
else
if
((
node
[
0
]
&-
4
)
==
(
BC_WORD
)
&
__interpreter_cycle_in_spine
)
else
if
((
node
[
0
]
&-
4
)
==
(
BC_WORD
)
&
__interpreter_cycle_in_spine
[
1
]
)
wprintw
(
win
,
"_cycle_in_spine"
);
else
{
char
_tmp
[
256
];
...
...
@@ -510,7 +510,7 @@ void debugger_show_node_as_tree_(WINDOW *win, BC_WORD *node, int indent, uint64_
return
;
}
if
(
node
[
0
]
==
(
BC_WORD
)
&
__interpreter_cycle_in_spine
)
{
if
(
node
[
0
]
==
(
BC_WORD
)
&
__interpreter_cycle_in_spine
[
1
]
)
{
wprintw
(
win
,
" _cycle_in_spine"
);
return
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment