diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-20 02:29:20 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-20 12:51:39 +0200 |
commit | e383aade0f215b3829600f8c2cb045aa81511042 (patch) | |
tree | 20adf76dff338bd374b5b0271ec74c5c712ca7dc /lisp/cedet/srecode | |
parent | 86c3d9280e13f72af1b353a473dea48b06cc8c6f (diff) | |
download | emacs-e383aade0f215b3829600f8c2cb045aa81511042.tar.gz emacs-e383aade0f215b3829600f8c2cb045aa81511042.tar.bz2 emacs-e383aade0f215b3829600f8c2cb045aa81511042.zip |
Remove XEmacs compat code from cedet
* lisp/cedet/srecode/mode.el (srecode-menu-bar):
* lisp/cedet/semantic/wisent/comp.el (wisent-debug-flag)
(wisent-print-results):
* lisp/cedet/semantic/util-modes.el
(semantic-stickyfunc-indent-string)
(semantic-stickyfunc-header-line-format)
(semantic-highlight-func-mode-map):
* lisp/cedet/semantic/symref/list.el
(semantic-symref-list-menu-entries):
* lisp/cedet/semantic/idle.el ()
(semantic-idle-breadcrumbs-popup-menu):
* lisp/cedet/semantic/grammar.el (semantic-grammar-item-value)
(semantic-grammar-create-package)
(semantic-grammar-batch-build-packages)
(semantic-grammar-setup-menu):
* lisp/cedet/semantic/fw.el (semantic-overlay-live-p)
(semantic-event-window, semantic-make-local-hook)
(semantic-run-mode-hooks, semantic-subst-char-in-string)
(semantic-menu-item, semantic-find-file-noselect):
* lisp/cedet/semantic/format.el (semantic-format-face-alist)
(semantic--format-colorize-merge-text):
* lisp/cedet/semantic/decorate/include.el ()
(semantic-decoration-on-include-menu)
(semantic-decoration-on-unknown-include-menu)
(semantic-decoration-on-fileless-include-menu)
(semantic-decoration-on-unparsed-include-menu):
* lisp/cedet/semantic/decorate.el (semantic-set-tag-read-only)
(semantic-tag-read-only-p):
* lisp/cedet/mode-local.el (activate-mode-local-bindings):
* lisp/cedet/data-debug.el (data-debug-overlay-properties): Remove
XEmacs compat code.
Diffstat (limited to 'lisp/cedet/srecode')
-rw-r--r-- | lisp/cedet/srecode/mode.el | 82 |
1 files changed, 32 insertions, 50 deletions
diff --git a/lisp/cedet/srecode/mode.el b/lisp/cedet/srecode/mode.el index a40b9d09a6f..3a8fd91eb2d 100644 --- a/lisp/cedet/srecode/mode.el +++ b/lisp/cedet/srecode/mode.el @@ -69,62 +69,44 @@ (defvar srecode-menu-bar (list "SRecoder" - (semantic-menu-item - ["Insert Template" - srecode-insert - :active t - :help "Insert a template by name." - ]) - (semantic-menu-item - ["Insert Template Again" - srecode-insert-again - :active t - :help "Run the same template as last time again." - ]) - (semantic-menu-item - ["Edit Template" - srecode-edit - :active t - :help "Edit a template for this language by name." - ]) + ["Insert Template" + srecode-insert + :active t + :help "Insert a template by name."] + ["Insert Template Again" + srecode-insert-again + :active t + :help "Run the same template as last time again."] + ["Edit Template" + srecode-edit + :active t + :help "Edit a template for this language by name."] "---" '( "Insert ..." :filter srecode-minor-mode-templates-menu ) '( "Generate ..." :filter srecode-minor-mode-generate-menu ) "---" - (semantic-menu-item - ["Customize..." - (customize-group "srecode") - :active t - :help "Customize SRecode options" - ]) + ["Customize..." + (customize-group "srecode") + :active t + :help "Customize SRecode options"] (list "Debugging Tools..." - (semantic-menu-item - ["Dump Template MAP" - srecode-get-maps - :active t - :help "Calculate (if needed) and display the current template file map." - ]) - (semantic-menu-item - ["Dump Tables" - srecode-dump-templates - :active t - :help "Dump the current template table." - ]) - (semantic-menu-item - ["Dump Dictionary" - srecode-dictionary-dump - :active t - :help "Calculate and dump a dictionary for point." - ]) - (semantic-menu-item - ["Show Macro Help" - srecode-macro-help - :active t - :help "Display the different types of macros available." - ]) - ) - ) + ["Dump Template MAP" + srecode-get-maps + :active t + :help "Calculate (if needed) and display the current template file map."] + ["Dump Tables" + srecode-dump-templates + :active t + :help "Dump the current template table."] + ["Dump Dictionary" + srecode-dictionary-dump + :active t + :help "Calculate and dump a dictionary for point."] + ["Show Macro Help" + srecode-macro-help + :active t + :help "Display the different types of macros available."])) "Menu for srecode minor mode.") (defvar srecode-minor-menu nil |