[ELPA-diffs] Copyright notices changed

2013-03-19 Thread ELPA update
--- copyright_exceptions.old2013-03-18 05:02:04.0 -0400
+++ copyright_exceptions.new2013-03-19 05:02:05.0 -0400
@@ -37,6 +37,8 @@
 ./auctex/style/dutch.el
 ./auctex/style/czech.el
 ./auctex/multi-prompt.el
+./company/company-tests.el
+./company/.dir-locals.el
 ./muse/htmlize-hack.el
 ./uni-confusables/uni-confusables.el:;; Copyright (C) 1991-2009, 2010 Unicode, 
Inc.
 ./uni-confusables/uni-confusables.el:;; for the copyright and permission 
notice.



[ELPA-diffs] /srv/bzr/emacs/elpa r365: * ggtags.el: Fix bug#13829; release v0.6.1

2013-03-19 Thread Leo Liu

revno: 365
committer: Leo Liu 
branch nick: elpa
timestamp: Tue 2013-03-19 19:17:43 +0800
message:
  * ggtags.el: Fix bug#13829; release v0.6.1
modified:
  packages/ggtags/ggtags.el
=== modified file 'packages/ggtags/ggtags.el'
--- a/packages/ggtags/ggtags.el 2013-03-08 10:50:44 +
+++ b/packages/ggtags/ggtags.el 2013-03-19 11:17:43 +
@@ -3,7 +3,7 @@
 ;; Copyright (C) 2013  Free Software Foundation, Inc.
 
 ;; Author: Leo Liu 
-;; Version: 0.6
+;; Version: 0.6.1
 ;; Keywords: tools, convenience
 ;; Created: 2013-01-29
 ;; URL: https://github.com/leoliu/ggtags
@@ -287,6 +287,7 @@
(point) 'compilation-message
 (ggtags-navigation-mode -1)
 ;; 0.5s delay for `ggtags-auto-jump-to-first-match'
+(sit-for 0); See: http://debbugs.gnu.org/13829
 (ggtags-navigation-mode-cleanup buf 0.5)))
 
 (define-compilation-mode ggtags-global-mode "Global"
@@ -338,8 +339,7 @@
(when (and (derived-mode-p 'ggtags-global-mode)
   (get-buffer-window))
  (delete-window (get-buffer-window)))
-   (and time (run-with-idle-timer time nil
-  'kill-buffer (current-buffer)))
+   (and time (run-with-idle-timer time nil 'kill-buffer buf))
 
 (defun ggtags-navigation-mode-done ()
   (interactive)



[ELPA-diffs] /srv/bzr/emacs/elpa r366: company-tests.el: add copyright boilerplate

2013-03-19 Thread Dmitry Gutov

revno: 366
committer: Dmitry Gutov 
branch nick: elpa
timestamp: Tue 2013-03-19 18:15:57 +0400
message:
  company-tests.el: add copyright boilerplate
modified:
  packages/company/company-tests.el
=== modified file 'packages/company/company-tests.el'
--- a/packages/company/company-tests.el 2013-03-19 03:47:51 +
+++ b/packages/company/company-tests.el 2013-03-19 14:15:57 +
@@ -1,3 +1,30 @@
+;;; company-tests.el --- company-mode tests
+
+;; Copyright (C) 2011  Free Software Foundation, Inc.
+
+;; Author: Nikolaj Schumacher
+
+;; This file is part of GNU Emacs.
+
+;; GNU Emacs is free software: you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; GNU Emacs is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs.  If not, see .
+
+
+;;; Commentary:
+;;
+
+;;; Code:
+
 (require 'ert)
 (require 'company)
 (require 'company-keywords)



[ELPA-diffs] /srv/bzr/emacs/elpa r367: company: Update pkg.el and summary string

2013-03-19 Thread Dmitry Gutov

revno: 367
committer: Dmitry Gutov 
branch nick: elpa
timestamp: Tue 2013-03-19 18:45:31 +0400
message:
  company: Update pkg.el and summary string
modified:
  packages/company/company-pkg.el
  packages/company/company.el
=== modified file 'packages/company/company-pkg.el'
--- a/packages/company/company-pkg.el   2010-11-18 18:24:12 +
+++ b/packages/company/company-pkg.el   2013-03-19 14:45:31 +
@@ -1,1 +1,1 @@
-(define-package "company" "0.5" "Flexible inline text and code completion")
+(define-package "company" "0.6" "Modular in-buffer completion framework")

=== modified file 'packages/company/company.el'
--- a/packages/company/company.el   2013-03-19 03:47:51 +
+++ b/packages/company/company.el   2013-03-19 14:45:31 +
@@ -1,4 +1,4 @@
-;;; company.el --- Extensible inline text completion mechanism
+;;; company.el --- Modular in-buffer completion framework
 
 ;; Copyright (C) 2009-2013  Free Software Foundation, Inc.