emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/realgud-lldb 634eb8e 41/56: Add enable/disable, and bac


From: Rocky Bernstein
Subject: [elpa] externals/realgud-lldb 634eb8e 41/56: Add enable/disable, and backtrace commands
Date: Thu, 23 May 2019 02:11:43 -0400 (EDT)

branch: externals/realgud-lldb
commit 634eb8efa1cb5c74020cf2a0134205d621716075
Author: rocky <address@hidden>
Commit: rocky <address@hidden>

    Add enable/disable, and backtrace commands
---
 lldb/init.el | 23 +++++++++++++----------
 1 file changed, 13 insertions(+), 10 deletions(-)

diff --git a/lldb/init.el b/lldb/init.el
index 4a23ca2..0926c46 100644
--- a/lldb/init.el
+++ b/lldb/init.el
@@ -152,16 +152,19 @@ realgud-loc-pat struct")
   "Hash key is command name like 'continue' and the value is
   the lldb command to use, like 'process continue'")
 
-(setf (gethash "break"    realgud:lldb-command-hash) "b %X:%l")
-(setf (gethash "delete"   realgud:lldb-command-hash) "break delete %p")
-(setf (gethash "clear"    realgud:lldb-command-hash) "break clear %X:%l")
-(setf (gethash "continue" realgud:lldb-command-hash) "process continue")
-(setf (gethash "eval"     realgud:lldb-command-hash) "print %s")
-(setf (gethash "finish"   realgud:lldb-command-hash) "thread step-out")
-(setf (gethash "quit"     realgud:lldb-command-hash) "quit")
-(setf (gethash "run"      realgud:lldb-command-hash) "run")
-(setf (gethash "step"     realgud:lldb-command-hash) "thread step-in --count 
%p")
-(setf (gethash "until"    realgud:lldb-command-hash) "thread until %l")
+(setf (gethash "backtrace" realgud:lldb-command-hash) "bt")
+(setf (gethash "break"     realgud:lldb-command-hash) "break set %X -l %l")
+(setf (gethash "delete"    realgud:lldb-command-hash) "break delete %p")
+(setf (gethash "clear"     realgud:lldb-command-hash) "break clear %X:%l")
+(setf (gethash "continue"  realgud:lldb-command-hash) "process continue")
+(setf (gethash "disable"   realgud:lldb-command-hash) "break disable %p")
+(setf (gethash "enable"    realgud:lldb-command-hash) "break enable %p")
+(setf (gethash "eval"      realgud:lldb-command-hash) "print %s")
+(setf (gethash "finish"    realgud:lldb-command-hash) "thread step-out")
+(setf (gethash "quit"      realgud:lldb-command-hash) "quit")
+(setf (gethash "run"       realgud:lldb-command-hash) "run")
+(setf (gethash "step"      realgud:lldb-command-hash) "thread step-in --count 
%p")
+(setf (gethash "until"     realgud:lldb-command-hash) "thread until %l")
 (setf (gethash "lldb" realgud-command-hash) realgud:lldb-command-hash)
 
 (setf (gethash "lldb" realgud-pat-hash) realgud:lldb-pat-hash)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]