]> git.eshelyaron.com Git - emacs.git/commitdiff
(gdb-cpp-define-alist-program): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Fri, 6 May 2005 12:47:54 +0000 (12:47 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 6 May 2005 12:47:54 +0000 (12:47 +0000)
Remove the redundant test for ms-dos.

lisp/progmodes/gdb-ui.el

index 56344a67e5c9931a72b355bd13feca926930cd5d..7c679b226c3111f00c5f44c2ebb5866d79532054 100644 (file)
@@ -196,10 +196,8 @@ detailed description of this mode.
   :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."