aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorSimon Josefsson <[email protected]>2002-09-11 05:07:36 +0000
committerSimon Josefsson <[email protected]>2002-09-11 05:07:36 +0000
commitcf681de6e5fe3919f94e742662d0aaefe296f286 (patch)
treecf87c5d094b1d60b22ddeeb535b962bce22e0f8e /lisp
parentb559a041686f1e981366624a1259a7eecf1a807a (diff)
(gud-gdb-massage-args): Don't secretly add -fullname.
(gud-query-cmdline): Add --fullname to the user cmdline.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/gud.el4
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e1b495184c..28f9c38ebb 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
2002-09-11 Simon Josefsson <[email protected]>
+ * gud.el (gud-gdb-massage-args): Don't secretly add -fullname.
+ (gud-query-cmdline): Add --fullname to the user cmdline.
+
* mail/smtpmail.el (smtpmail-default-smtp-server): Doc fix.
2002-09-10 Richard M. Stallman <[email protected]>
diff --git a/lisp/gud.el b/lisp/gud.el
index 751d3d80da..70e9f1418f 100644
--- a/lisp/gud.el
+++ b/lisp/gud.el
@@ -307,7 +307,7 @@ off the specialized speedbar mode."
(defvar gud-gdb-history nil)
(defun gud-gdb-massage-args (file args)
- (cons "-fullname" args))
+ args)
(defvar gud-gdb-marker-regexp
;; This used to use path-separator instead of ":";
@@ -383,7 +383,7 @@ off the specialized speedbar mode."
(read-from-minibuffer
(format "Run %s (like this): " minor-mode)
(or (car-safe (symbol-value hist-sym))
- (concat (or cmd-name (symbol-name minor-mode)) " " init))
+ (concat (or cmd-name (symbol-name minor-mode)) " --fullname " init))
gud-minibuffer-local-map nil
hist-sym)))