emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/vcard a3e60e2883 09/13: (vcard-parse-region-value): Do


From: Stefan Monnier
Subject: [elpa] externals/vcard a3e60e2883 09/13: (vcard-parse-region-value): Do not use `new-marker';
Date: Tue, 12 Jul 2022 00:17:02 -0400 (EDT)

branch: externals/vcard
commit a3e60e2883f2ffe894475d32f352b5e184ddac48
Author: Noah Friedman <friedman@splode.com>
Commit: Noah Friedman <friedman@splode.com>

    (vcard-parse-region-value): Do not use `new-marker';
    use `set-marker' and `make-marker' instead.
---
 vcard.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vcard.el b/vcard.el
index 228d815c7d..842ee09cd4 100644
--- a/vcard.el
+++ b/vcard.el
@@ -7,7 +7,7 @@
 ;; Keywords: vcard, mail, news
 ;; Created: 1997-09-27
 
-;; $Id: vcard.el,v 1.8 2000/02/03 17:54:50 friedman Exp $
+;; $Id: vcard.el,v 1.9 2000/02/03 20:51:51 friedman Exp $
 
 ;; This program is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
@@ -275,7 +275,7 @@ Note: this function modifies the buffer!"
              ;; chars and those which were encoded in order to quote them
              ;; against being treated as field separators.
              (goto-char beg)
-             (setq pos (new-marker (point)))
+             (setq pos (set-marker (make-marker) (point)))
              (setq match-beg (make-marker))
              (setq match-end (make-marker))
              (save-match-data



reply via email to

[Prev in Thread] Current Thread [Next in Thread]