aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2004-06-29 13:01:14 +0000
committerKim F. Storm2004-06-29 13:01:14 +0000
commit7549786255d7bb076ee7d079c39b529f815dc9c3 (patch)
tree53afaab2f1dcd4e7593bac0521ae691c09f74a19
parentd30bef645454b02eef96f408c578c4e235c1d020 (diff)
downloademacs-7549786255d7bb076ee7d079c39b529f815dc9c3.tar.gz
emacs-7549786255d7bb076ee7d079c39b529f815dc9c3.zip
(ada-tight-gvd-integration): Add :group 'ada.
-rw-r--r--lisp/progmodes/ada-xref.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/progmodes/ada-xref.el b/lisp/progmodes/ada-xref.el
index c7b5717a1bb..c9bfbd76c23 100644
--- a/lisp/progmodes/ada-xref.el
+++ b/lisp/progmodes/ada-xref.el
@@ -143,7 +143,8 @@ Otherwise, ask the user for the name of the project file to use."
143 143
144(defcustom ada-tight-gvd-integration nil 144(defcustom ada-tight-gvd-integration nil
145 "*If non-nil, a new Emacs frame will be swallowed in GVD when debugging. 145 "*If non-nil, a new Emacs frame will be swallowed in GVD when debugging.
146If GVD is not the debugger used, nothing happens.") 146If GVD is not the debugger used, nothing happens."
147 :type 'boolean :group 'ada)
147 148
148(defcustom ada-xref-search-with-egrep t 149(defcustom ada-xref-search-with-egrep t
149 "*If non-nil, use egrep to find the possible declarations for an entity. 150 "*If non-nil, use egrep to find the possible declarations for an entity.
@@ -506,12 +507,12 @@ All the directories are returned as absolute directories."
506 (equal ada-prj-default-project-file 507 (equal ada-prj-default-project-file
507 (car x)) 508 (car x))
508 )))) 509 ))))
509 510
510 ;; Parses all the known project files, and insert at 511 ;; Parses all the known project files, and insert at
511 ;; least the default one (in case 512 ;; least the default one (in case
512 ;; ada-xref-project-files is nil) 513 ;; ada-xref-project-files is nil)
513 (or ada-xref-project-files '(nil)))))) 514 (or ada-xref-project-files '(nil))))))
514 515
515 (easy-menu-add-item ada-mode-menu '() submenu))) 516 (easy-menu-add-item ada-mode-menu '() submenu)))
516 517
517 518