diff options
| author | Lars Ingebrigtsen | 2019-06-20 02:29:20 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-06-20 12:51:39 +0200 |
| commit | e383aade0f215b3829600f8c2cb045aa81511042 (patch) | |
| tree | 20adf76dff338bd374b5b0271ec74c5c712ca7dc /lisp/cedet/data-debug.el | |
| parent | 86c3d9280e13f72af1b353a473dea48b06cc8c6f (diff) | |
| download | emacs-e383aade0f215b3829600f8c2cb045aa81511042.tar.gz 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/data-debug.el')
| -rw-r--r-- | lisp/cedet/data-debug.el | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/lisp/cedet/data-debug.el b/lisp/cedet/data-debug.el index ffdd9e8cdb3..0debbef54b5 100644 --- a/lisp/cedet/data-debug.el +++ b/lisp/cedet/data-debug.el | |||
| @@ -49,25 +49,9 @@ | |||
| 49 | 49 | ||
| 50 | ;;; Compatibility | 50 | ;;; Compatibility |
| 51 | ;; | 51 | ;; |
| 52 | (if (featurep 'xemacs) | 52 | (defalias 'data-debug-overlay-properties 'overlay-properties) |
| 53 | (eval-and-compile | 53 | (defalias 'data-debug-overlay-p 'overlayp) |
| 54 | (defalias 'data-debug-overlay-properties 'extent-properties) | 54 | (defalias 'dd-propertize 'propertize) |
| 55 | (defalias 'data-debug-overlay-p 'extentp) | ||
| 56 | (if (not (fboundp 'propertize)) | ||
| 57 | (defun dd-propertize (string &rest properties) | ||
| 58 | "Mimic `propertize' in from Emacs 23." | ||
| 59 | (add-text-properties 0 (length string) properties string) | ||
| 60 | string | ||
| 61 | ) | ||
| 62 | (defalias 'dd-propertize 'propertize)) | ||
| 63 | ) | ||
| 64 | ;; Regular Emacs | ||
| 65 | (eval-and-compile | ||
| 66 | (defalias 'data-debug-overlay-properties 'overlay-properties) | ||
| 67 | (defalias 'data-debug-overlay-p 'overlayp) | ||
| 68 | (defalias 'dd-propertize 'propertize) | ||
| 69 | ) | ||
| 70 | ) | ||
| 71 | 55 | ||
| 72 | ;;; GENERIC STUFF | 56 | ;;; GENERIC STUFF |
| 73 | ;; | 57 | ;; |