summaryrefslogtreecommitdiff
path: root/lisp/cedet
diff options
context:
space:
mode:
authorDavid Engster <dengste@eml.cc>2012-10-14 21:31:45 +0200
committerDavid Engster <dengste@eml.cc>2012-10-14 21:31:45 +0200
commit1a9653aa8c2d31d5951345643944f7e2a8df8ca2 (patch)
tree141048362d5f5148fe00abdc9a1a2da5763c71b5 /lisp/cedet
parent63aad59653e72c5b048653033973eef00f143115 (diff)
downloademacs-1a9653aa8c2d31d5951345643944f7e2a8df8ca2.tar.gz
Fix last commit.
(semantic-analyze-possible-completions): Replace CEDET compatibility function `cedet-called-interactively-p' with `called-interactively-p'.
Diffstat (limited to 'lisp/cedet')
-rw-r--r--lisp/cedet/semantic/analyze/complete.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cedet/semantic/analyze/complete.el b/lisp/cedet/semantic/analyze/complete.el
index bb9bbf6352f..a83f4ff0ac8 100644
--- a/lisp/cedet/semantic/analyze/complete.el
+++ b/lisp/cedet/semantic/analyze/complete.el
@@ -104,7 +104,7 @@ in a buffer."
ans))
;; Buffer was not parsed by Semantic.
;; Raise error if called interactively.
- (when (cedet-called-interactively-p 'any)
+ (when (called-interactively-p 'any)
(error "Buffer was not parsed by Semantic."))))
(defun semantic-analyze-possible-completions-default (context &optional flags)