GNU bug report logs -
#50136
28.0.50; A problem with rx-let expansion
Previous Next
Full log
View this message in rfc822 format
Hello,
I'm referring to this paragraph in rx.el:
;; FIXME: Consider adding extensions in Lisp macro style, where
;; arguments are passed unevaluated to code that returns the rx form
;; to use.
;; [...]
;; While this would permit more powerful extensions, it's unclear just
;; how often they would be used in practice. Let's wait until there is
;; demand for it.
Ok - here is! I would find that approach much more natural than the
current one. Look:
Already the first `rx-let' pseudo macro I tried hit a problem (bug) with
the current approach:
#+begin_src emacs-lisp
(rx-let ((scatter (string)
(regex (mapconcat #'string (string-to-list string) ".*"))))
(rx (scatter "abc"))) => useless error message
#+end_src
while the following version (the only difference is the argument name)
works as expected:
#+begin_src emacs-lisp
(rx-let ((scatter (s) (regex (mapconcat #'string (string-to-list s) ".*"))))
(rx (scatter "abc"))) ==> "a.*b.*c"
#+end_src
Seems the function form #'string gets replaced and ends as #'"abc" in
the first version because the function name accidentally collides with
the argument name.
Personally I would be more happy with a thing called `rx-macrolet' than
with an extended `rx-let' to support this additional macro-like kind of
syntax.
TIA,
Michael.
This bug report was last modified 3 years and 273 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.