diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-11-09 00:24:51 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-11-09 00:24:51 +0000 |
commit | 31f29e98bfaa1a9fb75d73f9efbf7b1ac45c6a1b (patch) | |
tree | 6897362d5888aba2f52fa19e7fb4e309fc7b9e3c /lldb/utils | |
parent | 14d88eb41f7620779c6a832955add6d85ae11f4e (diff) | |
download | bcm5719-llvm-31f29e98bfaa1a9fb75d73f9efbf7b1ac45c6a1b.tar.gz bcm5719-llvm-31f29e98bfaa1a9fb75d73f9efbf7b1ac45c6a1b.zip |
Add keyboard shortcuts:
'run' => Control-C r (gud-run) "Run the program."
'process kill' => Control-C s (gud-stop-subjoball) "Stop the program."
llvm-svn: 118460
Diffstat (limited to 'lldb/utils')
-rw-r--r-- | lldb/utils/emacs/gud.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/utils/emacs/gud.el b/lldb/utils/emacs/gud.el index 550c7552251..aff4a6ef614 100644 --- a/lldb/utils/emacs/gud.el +++ b/lldb/utils/emacs/gud.el @@ -1057,9 +1057,9 @@ and source-file directory for your debugger." (gud-def gud-pstar "expression -- *%e" nil "Evaluate C dereferenced pointer expression at point.") (gud-def gud-run "run" - nil "Run the program.") + "r" "Run the program.") (gud-def gud-stop-subjob "process kill" - nil "Stop the program.") + "s" "Stop the program.") (setq comint-prompt-regexp "\\(^\\|\n\\)\\*") (setq paragraph-start comint-prompt-regexp) |