Mercurial > emacs
changeset 111271:61073c29d954
Fix previous cedet change and ChangeLog.
* lisp/cedet/semantic/ede-grammar.el (project-compile-target):
Fix previous change.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sun, 31 Oct 2010 15:43:06 -0700 |
parents | 83641cd010c7 |
children | c5f89cc4d275 |
files | lisp/ChangeLog lisp/cedet/ChangeLog lisp/cedet/semantic/ede-grammar.el |
diffstat | 3 files changed, 14 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sun Oct 31 15:35:44 2010 -0700 +++ b/lisp/ChangeLog Sun Oct 31 15:43:06 2010 -0700 @@ -3,8 +3,6 @@ * emacs-lisp/bytecomp.el (byte-recompile-file): New fun (bug#7297). (byte-recompile-directory): * emacs-lisp/lisp-mode.el (emacs-lisp-byte-compile-and-load): - * cedet/ede/proj-elisp.el (project-compile-target): - * cedet/semantic/ede-grammar.el (project-compile-target): Use `byte-recompile-file'. 2010-10-31 Glenn Morris <rgm@gnu.org>
--- a/lisp/cedet/ChangeLog Sun Oct 31 15:35:44 2010 -0700 +++ b/lisp/cedet/ChangeLog Sun Oct 31 15:43:06 2010 -0700 @@ -1,3 +1,13 @@ +2010-10-31 Glenn Morris <rgm@gnu.org> + + * semantic/ede-grammar.el (project-compile-target): Fix previous change. + +2010-10-31 Julien Danjou <julien@danjou.info> + + * ede/proj-elisp.el (project-compile-target): + * semantic/ede-grammar.el (project-compile-target): + Use `byte-recompile-file'. + 2010-10-31 Glenn Morris <rgm@gnu.org> * mode-local.el (mode-local-augment-function-help):
--- a/lisp/cedet/semantic/ede-grammar.el Sun Oct 31 15:35:44 2010 -0700 +++ b/lisp/cedet/semantic/ede-grammar.el Sun Oct 31 15:43:06 2010 -0700 @@ -1,6 +1,7 @@ ;;; semantic/ede-grammar.el --- EDE support for Semantic Grammar Files -;;; Copyright (C) 2003, 2004, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +;; Copyright (C) 2003, 2004, 2007, 2008, 2009, 2010 +;; Free Software Foundation, Inc. ;; Author: Eric M. Ludlam <zappo@gnu.org> ;; Keywords: project, make @@ -133,8 +134,8 @@ (save-excursion (semantic-grammar-create-package)) (save-buffer) - (byte-recompile-file (concat (semantic-grammar-package) ".el") nil 0)) - (oref obj source))) + (byte-recompile-file (concat (semantic-grammar-package) ".el") nil 0))) + (oref obj source))) (message "All Semantic Grammar sources are up to date in %s" (object-name obj))) ;;; Makefile generation functions @@ -194,5 +195,4 @@ (provide 'semantic/ede-grammar) -;; arch-tag: 37a06a8d-957a-4fa2-a931-38482d28c24a ;;; semantic/ede-grammar.el ends here