update packages

This commit is contained in:
2026-06-27 11:34:21 +02:00
parent 4be4f859c4
commit 1aaef48596
246 changed files with 7997 additions and 4359 deletions
+9 -3
View File
@@ -5,8 +5,8 @@
;; Author: Alex Murray <murray.alex@gmail.com>
;; Maintainer: Alex Murray <murray.alex@gmail.com>
;; URL: https://github.com/alexmurray/flycheck-posframe
;; Package-Version: 20220715.133
;; Package-Revision: 19896b922c76
;; Package-Version: 20260409.14
;; Package-Revision: aeccb14e90ba
;; Package-Requires: ((flycheck "0.24") (emacs "26") (posframe "0.7.0"))
;; This file is not part of GNU Emacs.
@@ -199,6 +199,10 @@ Only the `foreground' is used in this face."
"Hide posframe if position has changed since last display."
(not (flycheck-posframe-check-position)))
(defun flycheck-posframe-point-position-p ()
"Return non-nil if `flycheck-posframe-position' is a point-based position."
(string-prefix-p "point-" (symbol-name flycheck-posframe-position)))
(defun flycheck-posframe-show-posframe (errors)
"Display ERRORS, using posframe.el library."
(posframe-hide flycheck-posframe-buffer)
@@ -218,7 +222,9 @@ Only the `foreground' is used in this face."
(flycheck-posframe-highest-error-level-face errors)
'flycheck-posframe-border-face) nil t)
:poshandler poshandler
:hidehandler #'flycheck-posframe-hidehandler))))
:hidehandler #'flycheck-posframe-hidehandler
:y-pixel-offset (when (flycheck-posframe-point-position-p)
flycheck-posframe-border-width)))))
;;;###autoload
(defun flycheck-posframe-configure-pretty-defaults ()