| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| |
|
|
|
|
| |
char like ARM. Check for EOF explicitly.
llvm-svn: 207859
|
| |
|
|
|
|
|
|
|
|
|
|
| |
- CTRL+C wasn't clearing the command in lldb
- CTRL+C doesn't work in python macros in lldb
- Ctrl+C no longer interrupts the running process that you attach to
<rdar://problem/15949205>
<rdar://problem/16778652>
<rdar://problem/16774411>
llvm-svn: 207816
|
| |
|
|
|
|
|
|
| |
expressions, etc) can exist at once, they should all shared a ref counted history object.
Now they do.
llvm-svn: 207293
|
| |
|
|
|
|
|
| |
Up/down arrows select next/prev line in multi-line mode
CTRL+N and CTRL+P do next/prev history
llvm-svn: 207033
|
| |
|
|
|
|
|
|
|
|
| |
mappings would get messed up.
I fixed this by only doing el_set(e, EL_BIND, ...) calls before sourcing the .editrc files.
<rdar://problem/16614095>
llvm-svn: 207005
|
| |
|
|
|
|
|
|
| |
had .editrc key mappings in their ~/.editrc.
<rdar://problem/16279283>
llvm-svn: 204870
|
| |
|
|
| |
llvm-svn: 203185
|
| |
|
|
|
|
| |
<rdar://problem/16140277>
llvm-svn: 202426
|
| |
|
|
|
|
| |
Ubuntu 12.04
llvm-svn: 201521
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Although the interface to el_push should be a constant parameter (as it is on
Darwin), certain Linux distributions currently ship a header which does not
provide proper const correctness. This causes compilation failures on Linux.
Strip the constness on the parameter, which whilst incorrect, is mostly
harmless. The parameter will not be changed by the interface and so it is
acceptable to do this. When distributions have updated to a more correct
declaration, it would be nice to revert this change.
Addresses PR18784.
llvm-svn: 201092
|
| |
|
|
| |
llvm-svn: 201024
|
| |
|
|
| |
llvm-svn: 201023
|
| |
|
|
|
|
|
|
| |
that we stack more than one editline instance on top of each other and we still expect CTRL+D to exit the editline instance, but it should only do so when the line is empty. Otherwise it should (and does) delete the character at the cursor.
<rdar://problem/15944703>
llvm-svn: 200489
|
|
|
The many many benefits include:
1 - Input/Output/Error streams are now handled as real streams not a push style input
2 - auto completion in python embedded interpreter
3 - multi-line input for "script" and "expression" commands now allow you to edit previous/next lines using up and down arrow keys and this makes multi-line input actually a viable thing to use
4 - it is now possible to use curses to drive LLDB (please try the "gui" command)
We will need to deal with and fix any buildbot failures and tests and arise now that input/output and error are correctly hooked up in all cases.
llvm-svn: 200263
|