A user asked this question.

  • Slightly annoyed, I posted a comment linking to the search, and voted to close it as not a real question.

  • I then thought again, and started searching for a good duplicate.

  • When I had found one, I came back to the question. Somebody else had already found a duplicate and voted accordingly, but I thought mine worth a mention, too.

  • Unable to vote to close as a duplicate (as I had voted to close as NaRQ already), I inserted my dupe link as a faux "Possible duplicate of" link. I emulated a real automatic dupe comment's link formatting to the letter.

  • When the question was closed as a duplicate, my manually inserted link was removed from the comments, but was not inserted into the "Possible Duplicate" box to the top.

This looks like a (minor) bug to me.

link|improve this question

66% accept rate
feedback

2 Answers

Jeff's answer here seems to imply that intentionally the only thing they check for is the presence of comments that start with that exact syntax.

Which, as most people seem to believe, is improper and should be changed, as normal people who would write duplicate comments would use a capital P. As the auto-comment still remains with a lowercase P, that makes it fairly less common for there to be collision between normal user comments and the auto-comment.

This is further expanded at this answer, which acknowledges this behavior already and notes that it only checks for fresh comments that start with that syntax.

It is thus most likely to still be by design. I'm not sure what else you would've expected to happen when copying exactly the same syntax of comments whose only function is to be removed on duplicate closure.

link|improve this answer
I would expect either the link to stay, or it to be moved into the duplicate box along with the automatic one. The current behaviour doesn't really make sense IMO. – Pekka Apr 29 '11 at 20:18
All I can say is that going forward, if you want a comment to stick around, not copying a grammatically unsound syntax that solely exists to be deleted would be wise. – Grace Note Apr 29 '11 at 20:23
feedback

Yeah, I had same issue when closing this question with 3 links. I had to manually add a link later on.

It should be like

if closed_reasons is exact_duplicate:
  for comment in comments:
    for link in duplicate_links:
      if comment =~ /^possible duplicate of {link}/:
        delete_it

instead of

if closed_reasons is exact_duplicate:
  for comment in comments:
    if comment =~ /^possible duplicate of/:
      delete_it
link|improve this answer
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged