Update packages

This commit is contained in:
Marcus Kammer 2020-02-08 18:30:56 +01:00
parent 1a3dc5558f
commit b5ecf818c8
313 changed files with 43 additions and 33 deletions

View file

@ -334,7 +334,7 @@
(:maintainer "Clément Pit-Claudel" . "clement.pitclaudel@live.com")
(:url . "https://github.com/cpitclaudel/compact-docstrings"))])
(company .
[(0 9 11)
[(0 9 12)
((emacs
(24 3)))
"Modular text completion framework" tar
@ -869,7 +869,7 @@
(:keywords "gnome" "c" "coding style")
(:url . "http://elpa.gnu.org/packages/gnome-c-style.html"))])
(gnorb .
[(1 6 4)
[(1 6 5)
((cl-lib
(0 5)))
"Glue code between Gnus, Org, and BBDB" tar

View file

@ -1 +1 @@
Good signature from 066DAFCB81E42C40 GNU ELPA Signing Agent (2019) <elpasign@elpa.gnu.org> (trust undefined) created at 2020-02-05T11:05:09+0100 using RSA
Good signature from 066DAFCB81E42C40 GNU ELPA Signing Agent (2019) <elpasign@elpa.gnu.org> (trust undefined) created at 2020-02-08T11:05:02+0100 using RSA

View file

@ -1,4 +1,4 @@
(define-package "company" "20200110.929" "Modular text completion framework"
(define-package "company" "20200206.2239" "Modular text completion framework"
'((emacs "24.3"))
:keywords
'("abbrev" "convenience" "matching")

View file

@ -5,7 +5,7 @@
;; Author: Nikolaj Schumacher
;; Maintainer: Dmitry Gutov <dgutov@yandex.ru>
;; URL: http://company-mode.github.io/
;; Version: 0.9.11
;; Version: 0.9.12
;; Keywords: abbrev, convenience, matching
;; Package-Requires: ((emacs "24.3"))
@ -2933,7 +2933,8 @@ Returns a negative number if the tooltip should be displayed above point."
(overlay-put company-pseudo-tooltip-overlay 'invisible nil)
(overlay-put company-pseudo-tooltip-overlay 'line-prefix nil)
(overlay-put company-pseudo-tooltip-overlay 'after-string nil)
(overlay-put company-pseudo-tooltip-overlay 'display nil)))
(overlay-put company-pseudo-tooltip-overlay 'display nil)
(overlay-put company-pseudo-tooltip-overlay 'face nil)))
(defun company-pseudo-tooltip-unhide ()
(when company-pseudo-tooltip-overlay

View file

@ -1,2 +0,0 @@
;;; -*- no-byte-compile: t -*-
(define-package "git-commit" "20200204.2012" "Edit Git commit messages" '((emacs "25.1") (dash "20180910") (transient "20190812") (with-editor "20181103")) :commit "bdd2b09e48541ac770b7d16f66d5997b971623f5" :keywords '("git" "tools" "vc") :maintainer '("Jonas Bernoulli" . "jonas@bernoul.li") :url "https://github.com/magit/magit")

View file

@ -0,0 +1,2 @@
;;; -*- no-byte-compile: t -*-
(define-package "git-commit" "20200207.1819" "Edit Git commit messages" '((emacs "25.1") (dash "20180910") (transient "20190812") (with-editor "20181103")) :commit "57f2d0f8308268913f4de6d06b968c05225b5e53" :keywords '("git" "tools" "vc") :maintainer '("Jonas Bernoulli" . "jonas@bernoul.li") :url "https://github.com/magit/magit")

View file

@ -12,7 +12,7 @@
;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
;; Package-Requires: ((emacs "25.1") (dash "20180910") (transient "20190812") (with-editor "20181103"))
;; Package-Version: 20200204.2012
;; Package-Version: 20200207.1819
;; Keywords: git tools vc
;; Homepage: https://github.com/magit/magit
@ -878,7 +878,7 @@ Added to `font-lock-extend-region-functions'."
`(,@git-commit-font-lock-keywords-1
;; Comments
(eval . `(,(format "^%s.*" comment-start)
(0 'font-lock-comment-face)))
(0 'font-lock-comment-face append)))
(eval . `(,(format "^%s On branch \\(.*\\)" comment-start)
(1 'git-commit-comment-branch-local t)))
(eval . `(,(format "^%s \\(HEAD\\) detached at" comment-start)

View file

@ -110,7 +110,9 @@ seconds of user inactivity. That is not desirable."
(file-readable-p buffer-file-name)
(or (< emacs-major-version 27)
(with-no-warnings
(executable-find magit-git-executable t))) ; see #3684
(condition-case nil
(executable-find magit-git-executable t) ; see #3684
(wrong-number-of-arguments t)))) ; very old 27 built
(magit-toplevel)
(or (not magit-auto-revert-tracked-only)
(magit-file-tracked-p buffer-file-name))

Some files were not shown because too many files have changed in this diff Show more