[Lldb-commits] [PATCH] D59779: [Args] Handle backticks
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 25 10:15:47 PDT 2019
labath added a comment.
Given the current way lldb command interpreter parser does things (which tries to model a posix shell), (one of) the correct ways to do `'`-quoting would be to replace each `'` char by `'\''`.
However, this isn't the only problem with how we do tab-completion of quoted strings, so if you want to just fix the crash, I think this is fine.
Repository:
rLLDB LLDB
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D59779/new/
https://reviews.llvm.org/D59779
More information about the lldb-commits
mailing list