]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix perldb doc string
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 21 Aug 2021 14:28:51 +0000 (16:28 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 21 Aug 2021 14:28:51 +0000 (16:28 +0200)
* lisp/progmodes/gud.el (perldb): Fix doc string (bug#14588).

lisp/progmodes/gud.el

index 08814ebcaaac65d2460006dc7b7ab57f486fb863..021c5a314c99a958fe36f40b079af19b82e356fd 100644 (file)
@@ -1679,9 +1679,14 @@ into one that invokes an Emacs-enabled debugging session.
 
 ;;;###autoload
 (defun perldb (command-line)
-  "Run perldb on program FILE in buffer *gud-FILE*.
-The directory containing FILE becomes the initial working directory
-and source-file directory for your debugger."
+  "Debug a perl program with gud.
+Interactively, this will prompt you for a command line.
+
+Noninteractively, COMMAND-LINE should be on the form
+\"perl -d perl-file.pl\".
+
+The directory containing the perl program becomes the initial
+working directory and source-file directory for your debugger."
   (interactive
    (list (gud-query-cmdline 'perldb
                            (concat (or (buffer-file-name) "-e 0") " "))))