diff options
| author | David Engster | 2012-10-14 21:31:45 +0200 |
|---|---|---|
| committer | David Engster | 2012-10-14 21:31:45 +0200 |
| commit | 1a9653aa8c2d31d5951345643944f7e2a8df8ca2 (patch) | |
| tree | 141048362d5f5148fe00abdc9a1a2da5763c71b5 | |
| parent | 63aad59653e72c5b048653033973eef00f143115 (diff) | |
| download | emacs-1a9653aa8c2d31d5951345643944f7e2a8df8ca2.tar.gz emacs-1a9653aa8c2d31d5951345643944f7e2a8df8ca2.zip | |
Fix last commit.
(semantic-analyze-possible-completions): Replace CEDET compatibility
function `cedet-called-interactively-p' with `called-interactively-p'.
| -rw-r--r-- | lisp/cedet/semantic/analyze/complete.el | 2 |
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." | |||
| 104 | ans)) | 104 | ans)) |
| 105 | ;; Buffer was not parsed by Semantic. | 105 | ;; Buffer was not parsed by Semantic. |
| 106 | ;; Raise error if called interactively. | 106 | ;; Raise error if called interactively. |
| 107 | (when (cedet-called-interactively-p 'any) | 107 | (when (called-interactively-p 'any) |
| 108 | (error "Buffer was not parsed by Semantic.")))) | 108 | (error "Buffer was not parsed by Semantic.")))) |
| 109 | 109 | ||
| 110 | (defun semantic-analyze-possible-completions-default (context &optional flags) | 110 | (defun semantic-analyze-possible-completions-default (context &optional flags) |