Update dash

This commit is contained in:
Daniel - 2022-08-13 10:20:02 +02:00
parent 5360344a92
commit d2d396d6db
Signed by: dbo
GPG Key ID: 784AA8DF0CCDF625
5 changed files with 1111 additions and 655 deletions

View File

@ -1,4 +1,4 @@
;;; dash-autoloads.el --- automatically extracted autoloads ;;; dash-autoloads.el --- automatically extracted autoloads -*- lexical-binding: t -*-
;; ;;
;;; Code: ;;; Code:
@ -12,10 +12,19 @@
(autoload 'dash-fontify-mode "dash" "\ (autoload 'dash-fontify-mode "dash" "\
Toggle fontification of Dash special variables. Toggle fontification of Dash special variables.
If called interactively, enable Dash-Fontify mode if ARG is This is a minor mode. If called interactively, toggle the
positive, and disable it if ARG is zero or negative. If called `Dash-Fontify mode' mode. If the prefix argument is positive,
from Lisp, also enable the mode if ARG is omitted or nil, and enable the mode, and if it is zero or negative, disable the mode.
toggle it if ARG is `toggle'; disable the mode otherwise.
If called from Lisp, toggle the mode if ARG is `toggle'. Enable
the mode if ARG is nil, omitted, or is a positive number.
Disable the mode if ARG is a negative number.
To check whether the minor mode is enabled in the current buffer,
evaluate `dash-fontify-mode'.
The mode's hook is called both when the mode is enabled and when
it is disabled.
Dash-Fontify mode is a buffer-local minor mode intended for Emacs Dash-Fontify mode is a buffer-local minor mode intended for Emacs
Lisp buffers. Enabling it causes the special variables bound in Lisp buffers. Enabling it causes the special variables bound in
@ -43,12 +52,16 @@ or call the function `global-dash-fontify-mode'.")
(autoload 'global-dash-fontify-mode "dash" "\ (autoload 'global-dash-fontify-mode "dash" "\
Toggle Dash-Fontify mode in all buffers. Toggle Dash-Fontify mode in all buffers.
With prefix ARG, enable Global Dash-Fontify mode if ARG is positive; With prefix ARG, enable Global Dash-Fontify mode if ARG is positive; otherwise,
otherwise, disable it. If called from Lisp, enable the mode if disable it.
ARG is omitted or nil.
If called from Lisp, toggle the mode if ARG is `toggle'.
Enable the mode if ARG is nil, omitted, or is a positive number.
Disable the mode if ARG is a negative number.
Dash-Fontify mode is enabled in all buffers where `dash--turn-on-fontify-mode'
would do it.
Dash-Fontify mode is enabled in all buffers where
`dash--turn-on-fontify-mode' would do it.
See `dash-fontify-mode' for more information on Dash-Fontify mode. See `dash-fontify-mode' for more information on Dash-Fontify mode.
\(fn &optional ARG)" t nil) \(fn &optional ARG)" t nil)
@ -57,7 +70,7 @@ See `dash-fontify-mode' for more information on Dash-Fontify mode.
Register the Dash Info manual with `info-lookup-symbol'. Register the Dash Info manual with `info-lookup-symbol'.
This allows Dash symbols to be looked up with \\[info-lookup-symbol]." t nil) This allows Dash symbols to be looked up with \\[info-lookup-symbol]." t nil)
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dash" '("!cdr" "!cons" "--" "->" "-a" "-butlast" "-c" "-d" "-e" "-f" "-gr" "-i" "-juxt" "-keep" "-l" "-m" "-no" "-o" "-p" "-r" "-s" "-t" "-u" "-value-to-list" "-when-let" "-zip" "dash-"))) (register-definition-prefixes "dash" '("!cdr" "!cons" "--" "->" "-a" "-butlast" "-c" "-d" "-e" "-f" "-gr" "-i" "-juxt" "-keep" "-l" "-m" "-no" "-o" "-p" "-r" "-s" "-t" "-u" "-value-to-list" "-when-let" "-zip" "dash-"))
;;;*** ;;;***

View File

@ -1,6 +1,6 @@
(define-package "dash" "20220417.2250" "A modern list library for Emacs" (define-package "dash" "20220608.1931" "A modern list library for Emacs"
'((emacs "24")) '((emacs "24"))
:commit "7fd71338dce041b352f84e7939f6966f4d379459" :authors :commit "0ac1ecf6b56eb67bb81a3cf70f8d4354b5782341" :authors
'(("Magnar Sveen" . "magnars@gmail.com")) '(("Magnar Sveen" . "magnars@gmail.com"))
:maintainer :maintainer
'("Magnar Sveen" . "magnars@gmail.com") '("Magnar Sveen" . "magnars@gmail.com")