changeset 62115:515e18600ed2

(gdb-cpp-define-alist-program): Doc fix. Remove the redundant test for ms-dos.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 06 May 2005 12:47:54 +0000
parents 1b51972031b3
children f1b7fe92d96a
files lisp/progmodes/gdb-ui.el
diffstat 1 files changed, 2 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/gdb-ui.el	Fri May 06 12:46:49 2005 +0000
+++ b/lisp/progmodes/gdb-ui.el	Fri May 06 12:47:54 2005 +0000
@@ -196,10 +196,8 @@
   :group 'gud
   :version "22.1")
 
-(defcustom gdb-cpp-define-alist-program 
-  (cond ((eq system-type 'ms-dos) "gcc -E -dM -o - -")
-	(t "gcc -E -dM -"))
-  "The program name for generating an alist of #define directives.
+(defcustom gdb-cpp-define-alist-program "gcc -E -dM -"
+  "Shell command for generating a list of defined macros in a source file.
 This list is used to display the #define directive associated
 with an identifier as a tooltip. It works in a debug session with
 GDB, when tooltip-gud-tips-p is t."