Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
56d9bb8c
Commit
56d9bb8c
authored
Nov 12, 2015
by
antirez
Browse files
Lua debugger: fix help typo, beark -> break.
parent
e386cd8c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/scripting.c
View file @
56d9bb8c
...
...
@@ -2100,10 +2100,10 @@ ldbLog(sdsnew("[c]continue Run till next breakpoint."));
ldbLog
(
sdsnew
(
"[l]list [line] List source code, around [line] if specified"
));
ldbLog
(
sdsnew
(
" you can use another arg for context size."
));
ldbLog
(
sdsnew
(
"[p]rint <var> Show the value of the specified variable."
));
ldbLog
(
sdsnew
(
"[b]ea
r
k Show all breakpoints."
));
ldbLog
(
sdsnew
(
"[b]ea
r
k <line> Add a breakpoint to the specified line."
));
ldbLog
(
sdsnew
(
"[b]ea
r
k -<line> Remove breakpoint from the specified line."
));
ldbLog
(
sdsnew
(
"[b]ea
r
k 0 Remove all breakpoints."
));
ldbLog
(
sdsnew
(
"[b]
r
eak Show all breakpoints."
));
ldbLog
(
sdsnew
(
"[b]
r
eak <line> Add a breakpoint to the specified line."
));
ldbLog
(
sdsnew
(
"[b]
r
eak -<line> Remove breakpoint from the specified line."
));
ldbLog
(
sdsnew
(
"[b]
r
eak 0 Remove all breakpoints."
));
ldbLog
(
sdsnew
(
"[e]eval <code> Execute some Lua code (in a different callframe)."
));
ldbLog
(
sdsnew
(
"[r]edis <cmd> Execute a Redis command."
));
ldbLog
(
sdsnew
(
""
));
...
...
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