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

View File

@@ -1,9 +1,11 @@
;; -*- no-byte-compile: t; lexical-binding: nil -*-
(define-package "llama" "20260301.1253"
(define-package "llama" "20260601.1455"
"Compact syntax for short lambda."
'((emacs "26.1")
(compat "30.1"))
(compat "31.0"))
:url "https://github.com/tarsius/llama"
:commit "d430d48e0b5afd2a34b5531f103dcb110c3539c4"
:revdesc "d430d48e0b5a"
:keywords '("extensions"))
:commit "4d4024048053b898a01521046e0f063ee47615b0"
:revdesc "4d4024048053"
:keywords '("extensions")
:authors '(("Jonas Bernoulli" . "emacs.llama@jonas.bernoulli.dev"))
:maintainers '(("Jonas Bernoulli" . "emacs.llama@jonas.bernoulli.dev")))

View File

@@ -2,15 +2,15 @@
;; Copyright (C) 2020-2026 Jonas Bernoulli
;; Authors: Jonas Bernoulli <emacs.llama@jonas.bernoulli.dev>
;; Author: Jonas Bernoulli <emacs.llama@jonas.bernoulli.dev>
;; Homepage: https://github.com/tarsius/llama
;; Keywords: extensions
;; Package-Version: 20260301.1253
;; Package-Revision: d430d48e0b5a
;; Package-Version: 20260601.1455
;; Package-Revision: 4d4024048053
;; Package-Requires: (
;; (emacs "26.1")
;; (compat "30.1"))
;; (compat "31.0"))
;; SPDX-License-Identifier: GPL-3.0-or-later
@@ -362,7 +362,7 @@ expansion, and the looks of this face should hint at that.")
(put-text-property (match-beginning 0) (point)
'font-lock-multiline t)
(llama--fontify (cdr expr) nil nil t)))))
(list re end))) ; Silence compiler.
(progn re end nil))) ; Silence compiler.
(defun llama--fontify (expr &optional fnpos backquoted top)
(static-if (fboundp 'bare-symbol)
@@ -419,7 +419,7 @@ expansion, and the looks of this face should hint at that.")
(throw t nil))))
(when expr
(llama--fontify expr fnpos))))))
(list expr fnpos backquoted top)) ; Silence compiler.
(and expr fnpos backquoted top nil)) ; Silence compiler.
(defvar llama-fontify-mode-lighter nil)