]> git.eshelyaron.com Git - emacs.git/commitdiff
semantic: Accept FLAGS parameter for makefile-mode for analyzing completions
authorEric Ludlam <eric@siege-engine.com>
Sat, 11 Apr 2015 23:18:14 +0000 (19:18 -0400)
committerDavid Engster <deng@randomsample.de>
Sun, 22 Jan 2017 21:25:15 +0000 (22:25 +0100)
* lisp/cedet/semantic/bovine/make.el
  (semantic-analyze-possible-completions): Add support for FLAGS
  arg (currently ignored)

lisp/cedet/semantic/bovine/make.el

index 2a224bd99bec11407cf68bc96d98768bd8dc7d01..78a0926ea33e3e3d0e54b309f082f1c204610737 100644 (file)
@@ -175,9 +175,10 @@ This is the same as a regular prototype."
   (semantic-format-tag-prototype tag parent color))
 
 (define-mode-local-override semantic-analyze-possible-completions
-  makefile-mode (context)
+  makefile-mode (context &rest flags)
   "Return a list of possible completions in a Makefile.
-Uses default implementation, and also gets a list of filenames."
+Uses default implementation, and also gets a list of filenames.
+Any extra FLAGS are ignored."
   (require 'semantic/analyze/complete)
   (with-current-buffer (oref context buffer)
     (let* ((normal (semantic-analyze-possible-completions-default context))