From f0bf7e52772064d1ccfcfe84798a658220483ec6 Mon Sep 17 00:00:00 2001 From: Arash Esbati Date: Tue, 18 Jul 2023 22:31:50 +0200 Subject: [PATCH] ; * vcard-parse.el (vcard-parse-buffer): Pacify the compiler. --- vcard-parse.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vcard-parse.el b/vcard-parse.el index 571faa1c6e..e43ceed8be 100644 --- a/vcard-parse.el +++ b/vcard-parse.el @@ -1,6 +1,6 @@ ;;; vcard-parse.el --- Library for parsing vCards -*- lexical-binding: t; -*- -;; Copyright (C) 2019-2022 Free Software Foundation, Inc. +;; Copyright (C) 2019-2023 Free Software Foundation, Inc. ;; Author: Eric Abrahamsen ;; Maintainer: Eric Abrahamsen @@ -221,8 +221,8 @@ Returns a list of contact objects." '(vcard) :error "Parsing failed with:\n %s" (buffer-substring-no-properties - (point-at-bol) - (point-at-eol)))))) + (line-beginning-position) + (line-end-position)))))) (push card out))) (nreverse out))) -- 2.41.0