[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Status of vcard packages
From: |
Stefan Monnier |
Subject: |
Re: Status of vcard packages |
Date: |
Tue, 12 Jul 2022 10:05:26 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) |
Arash Esbati [2022-07-12 14:14:26] wrote:
> (defun vcard-proplist-all-properties (proplist props)
> - "Returns nil unless PROPLIST contains all properties specified in PROPS."
> + "Return nil unless PROPLIST contains all properties specified in PROPS."
> (let ((result t))
> (while (and result props)
> (or (vcard-get-property proplist (car props))
> @@ -353,7 +353,7 @@
> result))
>
> (defun vcard-proplist-any-properties (proplist props)
> - "Returns `t' if PROPLIST contains any of the properties specified in
> PROPS."
> + "Return t if PROPLIST contains any of the properties specified in PROPS."
> (let ((result nil))
> (while (and (not result) props)
> (and (vcard-get-property proplist (car props))
> --8<---------------cut here---------------end--------------->8---
Thanks.
> The byte-compiler from current master (cfda663282) also complains about:
>
> vcard-parse.el:98:2: Warning: defvar `vcard-parse-select-fields' docstring has
> wrong usage of unescaped single quotes (use \= or different quoting)
> vcard-parse.el:355:45: Warning: docstring has wrong usage of unescaped single
> quotes (use \= or different quoting)
This is fixed in the version I installed yesterday into the GNU ELPA
version of `vcard`. It's not yet released but you can see the preview
at
http://elpa.gnu.org/devel/vcard.html
-- Stefan