diff lisp/progmodes/gdb-ui.el @ 62723:0ae5fe9ca759

*** empty log message ***
author Nick Roberts <nickrob@snap.net.nz>
date Thu, 26 May 2005 12:41:35 +0000
parents 05f48d9c5aed
children 787677122f52
line wrap: on
line diff
--- a/lisp/progmodes/gdb-ui.el	Thu May 26 12:40:44 2005 +0000
+++ b/lisp/progmodes/gdb-ui.el	Thu May 26 12:41:35 2005 +0000
@@ -75,6 +75,7 @@
 (defvar gdb-current-language nil)
 (defvar gdb-var-list nil "List of variables in watch window.")
 (defvar gdb-var-changed nil "Non-nil means that gdb-var-list has changed.")
+(defvar gdb-main-file nil "Source file from which program execution begins.")
 (defvar gdb-buffer-type nil)
 (defvar gdb-overlay-arrow-position nil)
 (defvar gdb-server-prefix nil)
@@ -211,11 +212,18 @@
   :version "22.1")
 
 (defcustom gdb-cpp-define-alist-flags ""
-  "*Preprocessor flags for `gdb-cpp-define-alist-program'."
+  "Preprocessor flags for `gdb-cpp-define-alist-program'."
   :type 'string
   :group 'gud
   :version "22.1")
 
+(defcustom gdb-show-main nil
+  "Non-nil means display source file containing the main routine at startup.
+Also display the main routine in the disassembly buffer if present."
+  :type 'boolean
+  :group 'gud
+  :version "22.1")
+
 (defvar gdb-define-alist nil "Alist of #define directives for GUD tooltips.")
 
 (defun gdb-create-define-alist ()
@@ -2137,15 +2145,6 @@
   (gdb-display-buffer
    (gdb-get-create-buffer 'gdba)))
 
-(defvar gdb-main-file nil "Source file from which program execution begins.")
-
-(defcustom gdb-show-main nil
-  "Non-nil means display source file containing the main routine at startup."
-"Also display the main routine in the disassembly buffer if present."
-  :type 'boolean
-  :group 'gud
-  :version "22.1")
-
 (defun gdb-set-window-buffer (name)
   (set-window-buffer (selected-window) (get-buffer name))
   (set-window-dedicated-p (selected-window) t))