unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Anand Tamariya <atamariya@gmail.com>
To: Lars Ingebrigtsen <larsi@gnus.org>
Cc: emacs-devel@gnu.org
Subject: Re: [Patch] Draw and scribble notes in GNU Emacs
Date: Mon, 13 Sep 2021 11:06:46 +0530	[thread overview]
Message-ID: <CADm7Y4mHBc9STf6JDiABnh4nbBGA=cbNABz=D+q0ZKzhmHcibQ@mail.gmail.com> (raw)
In-Reply-To: <87fsudu7jm.fsf@gnus.org>

[-- Attachment #1: Type: text/plain, Size: 1357 bytes --]

>
> >  (defun svg--append (svg node)
> > +  ;; id is expected to be unique.
> >    (let ((old (and (dom-attr node 'id)
> >                 (dom-by-id svg
> >                               (concat "\\`" (regexp-quote (dom-attr node
> 'id))
> >                                       "\\'")))))
> >      (if old
> > -        ;; FIXME: This was (dom-set-attributes old (dom-attributes
> node))
> > -        ;; and got changed by commit
> f7ea7aa11f6211b5142bbcfc41c580d75485ca56
> > -        ;; without any explanation.
> > -     (setcdr (car old) (cdr node))
> > -      (dom-append-child svg node)))
> > +        ;; Remove old node. New node might be a different type.
> > +        (mapc (lambda (a)
> > +                  (dom-remove-node svg a))
> > +                old))
> > +    (dom-append-child svg node))
>
> Hm...  I think this is basically correct, but it's a behaviour change --
> previously svg--append wouldn't append if the ID already existed, but
> would keep the save place in the structure, but with this change, it
> really always appends.
>
> So I don't think that's quite right -- the old behaviour was OK, I think
> (but undocumented).
>
Existing code doesn't ensure ids are unique. Furthermore, in case id is
duplicated, only the attributes on the first tag gets replaced. That's a
little unpredictable behaviour from an API perspective.

[-- Attachment #2: Type: text/html, Size: 1822 bytes --]

  reply	other threads:[~2021-09-13  5:36 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-09  7:54 [Patch] Draw and scribble notes in GNU Emacs Anand Tamariya
2021-09-09  8:33 ` Po Lu
2021-09-09 12:00   ` Eli Zaretskii
2021-09-09 12:23     ` Po Lu
2021-09-09 14:51       ` Lars Ingebrigtsen
2021-09-10 21:45         ` dalanicolai
2021-09-13  5:32           ` Anand Tamariya
2021-09-13  5:15   ` Anand Tamariya
2021-09-09 14:50 ` Lars Ingebrigtsen
2021-09-13  5:36   ` Anand Tamariya [this message]
2021-09-13  8:25     ` Lars Ingebrigtsen
2021-09-13  8:31       ` Anand Tamariya
2021-09-13  8:47         ` Lars Ingebrigtsen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CADm7Y4mHBc9STf6JDiABnh4nbBGA=cbNABz=D+q0ZKzhmHcibQ@mail.gmail.com' \
    --to=atamariya@gmail.com \
    --cc=emacs-devel@gnu.org \
    --cc=larsi@gnus.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).