]> git.eshelyaron.com Git - emacs.git/commitdiff
semantic: Use file name for grammar name instead of %package token
authorEric Ludlam <zappo@gnu.org>
Wed, 26 Nov 2014 16:45:46 +0000 (11:45 -0500)
committerDavid Engster <deng@randomsample.de>
Mon, 23 Jan 2017 21:10:07 +0000 (22:10 +0100)
* lisp/cedet/semantic/ede-grammar.el
  (ede-proj-makefile-insert-variables): Request the grammar name come
  from the file name, not the %package token.

lisp/cedet/semantic/ede-grammar.el

index d982b6e258d74115aace650d28bebe3a9fd6833a..22de1d082ee1b59fed706efc9110f892e125d7b4 100644 (file)
@@ -187,7 +187,7 @@ Lays claim to all -by.el, and -wy.el files."
     (insert
      (mapconcat (lambda (src)
                  (with-current-buffer (find-file-noselect src)
-                   (concat (semantic-grammar-package) ".el")))
+                   (concat (semantic-grammar-package t) ".el")))
                (oref this source)
                " ")))
   )