This is an automated email from the git hooks/post-receive script. root pushed a commit to branch master in repository elpa.
commit 17a64360a9ccb4619db677f2df693311866ad112 Author: Stefan Monnier <monn...@iro.umontreal.ca> Date: Tue Jan 14 06:34:41 2014 +0200 * packages/company/company-etags.el: Require `cl' for `case'. * packages/company/company-oddmuse.el: Avoid `eval-when'. --- company-etags.el | 3 ++- company-oddmuse.el | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/company-etags.el b/company-etags.el index 956e294..f93c763 100644 --- a/company-etags.el +++ b/company-etags.el @@ -1,6 +1,6 @@ ;;; company-etags.el --- company-mode completion back-end for etags -;; Copyright (C) 2009-2011 Free Software Foundation, Inc. +;; Copyright (C) 2009-2011, 2014 Free Software Foundation, Inc. ;; Author: Nikolaj Schumacher @@ -25,6 +25,7 @@ ;;; Code: +(eval-when-compile (require 'cl)) (require 'company) (require 'etags) diff --git a/company-oddmuse.el b/company-oddmuse.el index 2415a74..358d5ea 100644 --- a/company-oddmuse.el +++ b/company-oddmuse.el @@ -1,6 +1,6 @@ ;;; company-oddmuse.el --- company-mode completion back-end for oddmuse-mode -;; Copyright (C) 2009-2011 Free Software Foundation, Inc. +;; Copyright (C) 2009-2011, 2014 Free Software Foundation, Inc. ;; Author: Nikolaj Schumacher @@ -27,8 +27,8 @@ (require 'company) (eval-when-compile (require 'cl)) -(eval-when 'compile (require 'yaooddmuse nil t)) -(eval-when 'compile (require 'oddmuse nil t)) +(eval-when-compile (require 'yaooddmuse nil t)) +(eval-when-compile (require 'oddmuse nil t)) (defvar company-oddmuse-link-regexp "\\(\\<[A-Z][[:alnum:]]*\\>\\)\\|\\[\\[\\([[:alnum:]]+\\>\\|\\)") -- To stop receiving notification emails like this one, please contact the administrator of this repository.