Irrespectively of my former reading of the R7RS (which I outlined in my previous post), I also do think that using bound-identifier=? makes (much) more sense when testing for literals in the pattern variables.
There is three more arguments in favour of using bound-identifier=?. Consider
(define-syntax foo
(syntax-rules ... (...)
((foo ...) 'foo)))
In the only rule, Is ... the ellipsis or the literal ...?
SRFI 46, which was voted into the R7RS as is, says: "This [the ellipsis] identifier's specification is considered to be a binding whose scope is the rules of the transformer. The macro system implementation must make the hygienic arrangements described in R5RS's section 4.3 to preserve the lexical scope of these bindings."
So if an implementation used free-identifier=?, "..." would not be detected as a literal; if an implementation used bound-identifier=?, it would be. And the latter is much less confusing to the user.
In particular, in the former case, the following would behave differently:
(define-syntax foo
(syntax-rules ... (...)
((foo ...) 'foo)))
The second reason why bound-identifier=? is likely be what was intended lies again in the quotation from SRFI 46 from above. For specifying the ellipsis, the lexical scope is mentioned explicitly. It would be confusing if literals were not playing by the same rules.
The last reason is based on history, or rather backward-compatibility. All the R5RS and R6RS Schemes I tested use bound-identifier=?. The two sample implementations (by Al Petrofsky) cited in SRFI 46 (which is the basis of the R7RS macro system) also use bound-identifier=?.
As no intention that R7RS deliberately wanted to break compatibility with existing Schemes and standards with respect to detecting literals amongst the pattern identifiers was made public, one may conclude that the R7RS didn't want to change the existing behaviour, so bound-identifier=? is the correct predicate.
So what I will do now (or quite soon when time permits) is to rewrite the sample implementations of SRFI 147 and SRFI 148 so that they work with the better, more hygienic matching.
We should also ask Alex Shinn to bring his implementation in line with the other (and previous) implementation. There is a simple change necessary here:
Just change "compare" into "eq?", which is bound-identifier=? in the syntactic closures implementation, Chibi is using. (I made the change locally, and all tests continue to pass.)
With that change, we can hopefully expect that Sagittarius will follow, so at least the R7RS systems Chibi, Sagittarius, and Gauche will agree with previously implementations of R5RS/R6RS/SRFI 46 and which the obviously better semantics.
Marc