diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-09-26 19:17:02 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-09-26 19:17:02 +0000 |
commit | eb1ac101af57ea1c780cf2142af9f49be7b45b58 (patch) | |
tree | f9affb8f4258163bd1d558dab74730ebd0b55efe /lisp/cedet/srecode/mode.el | |
parent | b733e9bc683d03d18acbda9907b969114cb439eb (diff) | |
download | emacs-eb1ac101af57ea1c780cf2142af9f49be7b45b58.tar.gz emacs-eb1ac101af57ea1c780cf2142af9f49be7b45b58.tar.bz2 emacs-eb1ac101af57ea1c780cf2142af9f49be7b45b58.zip |
* cedet/srecode/mode.el (srecode-menu-bar): Use
semantic-menu-item.
Diffstat (limited to 'lisp/cedet/srecode/mode.el')
-rw-r--r-- | lisp/cedet/srecode/mode.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/cedet/srecode/mode.el b/lisp/cedet/srecode/mode.el index f8493138e49..73a722b518d 100644 --- a/lisp/cedet/srecode/mode.el +++ b/lisp/cedet/srecode/mode.el @@ -80,19 +80,19 @@ (defvar srecode-menu-bar (list "SRecoder" - (senator-menu-item + (semantic-menu-item ["Insert Template" srecode-insert :active t :help "Insert a template by name." ]) - (senator-menu-item + (semantic-menu-item ["Insert Template Again" srecode-insert-again :active t :help "Run the same template as last time again." ]) - (senator-menu-item + (semantic-menu-item ["Edit Template" srecode-edit :active t @@ -102,7 +102,7 @@ '( "Insert ..." :filter srecode-minor-mode-templates-menu ) `( "Generate ..." :filter srecode-minor-mode-generate-menu ) "---" - (senator-menu-item + (semantic-menu-item ["Customize..." (customize-group "srecode") :active t @@ -110,19 +110,19 @@ ]) (list "Debugging Tools..." - (senator-menu-item + (semantic-menu-item ["Dump Template MAP" srecode-get-maps :active t :help "Calculate (if needed) and display the current template file map." ]) - (senator-menu-item + (semantic-menu-item ["Dump Tables" srecode-dump-templates :active t :help "Dump the current template table." ]) - (senator-menu-item + (semantic-menu-item ["Dump Dictionary" srecode-dictionary-dump :active t |