emacs-diffs
[Top][All Lists]
Advanced

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

master 377a3c42816: ; More fixes for LLDB support


From: Eli Zaretskii
Subject: master 377a3c42816: ; More fixes for LLDB support
Date: Fri, 20 Oct 2023 08:56:34 -0400 (EDT)

branch: master
commit 377a3c428164f3905f1f7683cfa7c3ea103667a5
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    ; More fixes for LLDB support
    
    * lisp/progmodes/gud.el (gud-gud-lldb-command-name, lldb): Doc fixes.
---
 lisp/progmodes/gud.el | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el
index d48ff68cc5e..aad052012cf 100644
--- a/lisp/progmodes/gud.el
+++ b/lisp/progmodes/gud.el
@@ -3862,8 +3862,9 @@ so they have been disabled."))
 (defvar gud-lldb-history nil)
 
 (defcustom gud-gud-lldb-command-name "lldb"
-  "Default command to run an executable under LLDB."
-  :type 'string)
+  "Default command to invoke LLDB in order to debug a progra with it."
+  :type 'string
+  :version "30.1")
 
 (defun gud-lldb-marker-filter (string)
   "Deduce interesting stuff from process output STRING."
@@ -3999,17 +4000,17 @@ by `gud-lldb-max-completions', which see."
 
 ;;;###autoload
 (defun lldb (command-line)
-  "Run lldb passing it COMMAND-LINE as arguments.
-If COMMAND-LINE names a program FILE to debug, lldb will run in
+  "Run LLDB passing it COMMAND-LINE as arguments.
+If COMMAND-LINE names a program FILE to debug, LLDB will run in
 a buffer named *gud-FILE*, and the directory containing FILE
 becomes the initial working directory and source-file directory
-for your debugger.  If you don't want `default-directory' to
+for the debug session.  If you don't want `default-directory' to
 change to the directory of FILE, specify FILE without leading
 directories, in which case FILE should reside either in the
 directory of the buffer from which this command is invoked, or
 it can be found by searching PATH.
 
-If COMMAND-LINE requests that lldb attaches to a process PID, lldb
+If COMMAND-LINE requests that LLDB attaches to a process PID, LLDB
 will run in *gud-PID*, otherwise it will run in *gud*; in these
 cases the initial working directory is the `default-directory' of
 the buffer in which this command was invoked.



reply via email to

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