update packages and add valign

This commit is contained in:
2026-04-05 20:00:27 +02:00
parent b062fb98e3
commit 03fb00e374
640 changed files with 109768 additions and 39311 deletions

View File

@@ -1,11 +1,11 @@
;;; dash.el --- A modern list library for Emacs -*- lexical-binding: t -*-
;; Copyright (C) 2012-2025 Free Software Foundation, Inc.
;; Copyright (C) 2012-2026 Free Software Foundation, Inc.
;; Author: Magnar Sveen <magnars@gmail.com>
;; Maintainer: Basil L. Contovounesios <basil@contovou.net>
;; Package-Version: 20250312.1307
;; Package-Revision: fcb5d831fc08
;; Package-Version: 20260221.1346
;; Package-Revision: d3a84021dbe4
;; Package-Requires: ((emacs "24"))
;; Keywords: extensions, lisp
;; URL: https://github.com/magnars/dash.el
@@ -27,7 +27,19 @@
;; A modern list API for Emacs.
;;
;; See its overview at https://github.com/magnars/dash.el#functions.
;; Dash is a utility library that affords functional programming
;; patterns inspired by Clojure, particularly in the realm of list
;; manipulation. Examples include higher-order functions (map, reduce,
;; filter) and derivatives (drop, flatten, sum); function combinators
;; (partial application, argument flipping, composition); and threading
;; and anaphoric macros with destructuring support.
;;
;; Dash is particularly useful in providing a broad and consistent API
;; across many Emacs versions.
;;
;; Documentation and examples are in the manual at Info node `(dash) Top'
;; and on the web at https://elpa.gnu.org/packages/doc/dash.html, as well
;; as in the projects README.md file.
;;; Code:
@@ -1882,7 +1894,7 @@ LISTS, it is generally recommended to use `-unzip-lists' instead."
"Return an infinite circular copy of LIST.
The returned list cycles through the elements of LIST and repeats
from the beginning."
(declare (pure t) (side-effect-free t))
(declare (side-effect-free t))
;; Also works with sequences that aren't lists.
(let ((newlist (append list ())))
(nconc newlist newlist)))