Hey, thanks for your reply! Nicolas Goaziou writes: > Please add the function modified in the commit message. Also, if > you haven't signed FSF papers for copyright, you need to insert > TINYCHANGE. Done. >> - (new-style (string= (match-string 1 fname) >> "?"))) + (new-style (string-match >> (match-string 1 fname) "/*?"))) > > I don't understand this line. Aren't you calling string-match > backwards? I think you mean: > > (new-style (string-match "?" (match-string 1 fname))) Yes, you are right. I mixed this up because I just changed the previous line without thinking about it. > Could you also insert a comment explaining why this workaround > is required? I added a short comment in the commit message. Did you mean to also insert a comment in the code? Thanks!