diff options
| -rw-r--r-- | lisp/cedet/semantic/bovine/make.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/cedet/semantic/bovine/make.el b/lisp/cedet/semantic/bovine/make.el index 2a224bd99be..78a0926ea33 100644 --- a/lisp/cedet/semantic/bovine/make.el +++ b/lisp/cedet/semantic/bovine/make.el | |||
| @@ -175,9 +175,10 @@ This is the same as a regular prototype." | |||
| 175 | (semantic-format-tag-prototype tag parent color)) | 175 | (semantic-format-tag-prototype tag parent color)) |
| 176 | 176 | ||
| 177 | (define-mode-local-override semantic-analyze-possible-completions | 177 | (define-mode-local-override semantic-analyze-possible-completions |
| 178 | makefile-mode (context) | 178 | makefile-mode (context &rest flags) |
| 179 | "Return a list of possible completions in a Makefile. | 179 | "Return a list of possible completions in a Makefile. |
| 180 | Uses default implementation, and also gets a list of filenames." | 180 | Uses default implementation, and also gets a list of filenames. |
| 181 | Any extra FLAGS are ignored." | ||
| 181 | (require 'semantic/analyze/complete) | 182 | (require 'semantic/analyze/complete) |
| 182 | (with-current-buffer (oref context buffer) | 183 | (with-current-buffer (oref context buffer) |
| 183 | (let* ((normal (semantic-analyze-possible-completions-default context)) | 184 | (let* ((normal (semantic-analyze-possible-completions-default context)) |