diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2020-12-09 18:36:41 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-12-09 18:36:41 +0100 |
commit | 28b61da99f89b3771f5581077dfe6179987e3a2f (patch) | |
tree | 7f400df2519abb8bae24b9a799941d0761968f2b /lisp/progmodes | |
parent | e2c08dbf7b213e69b23f1938aa37b26f2c207926 (diff) | |
download | emacs-28b61da99f89b3771f5581077dfe6179987e3a2f.tar.gz emacs-28b61da99f89b3771f5581077dfe6179987e3a2f.tar.bz2 emacs-28b61da99f89b3771f5581077dfe6179987e3a2f.zip |
`pdb' doc string clarification
* lisp/progmodes/gud.el (pdb): Mention that this command is for
debugging Python scripts.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r-- | lisp/progmodes/gud.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el index 279a70b0d75..cee0961013a 100644 --- a/lisp/progmodes/gud.el +++ b/lisp/progmodes/gud.el @@ -1683,7 +1683,7 @@ and source-file directory for your debugger." ;;;###autoload (defun pdb (command-line) - "Run COMMAND-LINE in the `*gud-FILE*' buffer. + "Run COMMAND-LINE in the `*gud-FILE*' buffer to debug Python programs. COMMAND-LINE should include the pdb executable name (`gud-pdb-command-name') and the file to be debugged. |