# HG changeset patch # User Eli Zaretskii # Date 1115383674 0 # Node ID 515e18600ed2215efcd7ec71948362bfa3a6a5e8 # Parent 1b51972031b3e2c149ea94cc5dcd7258ffae726d (gdb-cpp-define-alist-program): Doc fix. Remove the redundant test for ms-dos. diff -r 1b51972031b3 -r 515e18600ed2 lisp/progmodes/gdb-ui.el --- 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."