[Lldb-commits] [lldb] r118460 - /lldb/trunk/utils/emacs/gud.el

Johnny Chen johnny.chen at apple.com
Mon Nov 8 16:24:51 PST 2010


Author: johnny
Date: Mon Nov  8 18:24:51 2010
New Revision: 118460

URL: http://llvm.org/viewvc/llvm-project?rev=118460&view=rev
Log:
Add keyboard shortcuts:

'run'          => Control-C r (gud-run)            "Run the program."
'process kill' => Control-C s (gud-stop-subjoball) "Stop the program."

Modified:
    lldb/trunk/utils/emacs/gud.el

Modified: lldb/trunk/utils/emacs/gud.el
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/utils/emacs/gud.el?rev=118460&r1=118459&r2=118460&view=diff
==============================================================================
--- lldb/trunk/utils/emacs/gud.el (original)
+++ lldb/trunk/utils/emacs/gud.el Mon Nov  8 18:24:51 2010
@@ -1057,9 +1057,9 @@
   (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)





More information about the lldb-commits mailing list