Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.org
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ and ~cl-defmethod~.

** License

See [[file:COPYING][COPYING]]. Copyright (c) 2018-2023 Damien Cassou.
See [[file:COPYING][COPYING]]. Copyright (c) 2018-2025 Damien Cassou.

#+BEGIN_HTML
<a href="https://liberapay.com/DamienCassou/donate">
Expand Down
6 changes: 3 additions & 3 deletions libmpdel-directory.el
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
;;; libmpdel-directory.el --- Handling directories -*- lexical-binding: t; -*-

;; Copyright (C) 2019-2023 Damien Cassou
;; Copyright (C) 2019-2025 Damien Cassou

;; Author: Jose A Ortega <jao@gnu.org>
;; Keywords: multimedia
;; Url: https://github.com/mpdel/libmpdel
;; Package-requires: ((emacs "25.1"))
;; URL: https://github.com/mpdel/libmpdel
;; Package-Requires: ((emacs "25.1"))
;; Version: 1.2.0

;; This program is free software; you can redistribute it and/or modify
Expand Down
12 changes: 6 additions & 6 deletions libmpdel.el
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
;;; libmpdel.el --- Communication with an MPD server -*- lexical-binding: t; -*-

;; Copyright (C) 2017-2023 Damien Cassou
;; Copyright (C) 2017-2025 Damien Cassou

;; Author: Damien Cassou <damien@cassou.me>
;; Keywords: multimedia
;; Url: https://github.com/mpdel/libmpdel
;; Package-requires: ((emacs "25.1"))
;; URL: https://github.com/mpdel/libmpdel
;; Package-Requires: ((emacs "25.1"))
;; Version: 2.0.0

;; This program is free software; you can redistribute it and/or modify
Expand Down Expand Up @@ -685,9 +685,9 @@ directly on the completion candidates (such as embark)."
(funcall #'libmpdel-entity-name entity)
'libmpdel-entity entity))
entities)))
(cl-mapcar (lambda (entity entity-string)
(puthash entity-string entity map))
entities entity-strings)
(cl-loop for entity in entities
for entity-string in entity-strings
do (puthash entity-string entity map))
(let ((entity-string (completing-read prompt
(lambda (string predicate action)
(if (eq action 'metadata)
Expand Down
6 changes: 3 additions & 3 deletions test/libmpdel-directory-test.el
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
;;; libmpdel-directory-test.el --- Tests for libmpdel.el -*- lexical-binding: t; -*-

;; Copyright (C) 2019-2023 Damien Cassou
;; Copyright (C) 2019-2025 Damien Cassou

;; Author: Jose A Ortega <jao@gnu.org>
;; Url: https://github.com/mpdel/mpdel
;; Package-requires: ((emacs "25.1"))
;; URL: https://github.com/mpdel/mpdel
;; Package-Requires: ((emacs "25.1"))
;; Version: 1.2.0

;; This program is free software; you can redistribute it and/or modify
Expand Down
6 changes: 3 additions & 3 deletions test/libmpdel-test.el
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
;;; libmpdel-test.el --- Tests for libmpdel.el -*- lexical-binding: t; -*-

;; Copyright (C) 2017-2023 Damien Cassou
;; Copyright (C) 2017-2025 Damien Cassou

;; Author: Damien Cassou <damien@cassou.me>
;; Url: https://github.com/mpdel/mpdel
;; Package-requires: ((emacs "25.1"))
;; URL: https://github.com/mpdel/mpdel
;; Package-Requires: ((emacs "25.1"))
;; Version: 1.2.0

;; This program is free software; you can redistribute it and/or modify
Expand Down