Temporay (non-)fix for any.
This commit is contained in:
parent
6f9f0c34e2
commit
b92828ec10
|
@ -288,9 +288,13 @@
|
|||
(or (c sre (r (car sym-list)))
|
||||
(hygn-memq? (cdr sym-list)))))))
|
||||
(let ((cs (cond
|
||||
((hygn-memq? '(any)) char-set:full)
|
||||
((hygn-memq? '(nonl)) nonl-chars)
|
||||
((hygn-memq? '(lower-case lower)) char-set:lower-case)
|
||||
;;; any is imported from scsh-utilities and for
|
||||
;;; some reason this screws the hygienic renaming
|
||||
;;; up here. So this is bogus:
|
||||
((eq? sre 'any) char-set:full)
|
||||
((hygn-memq? '(any)) char-set:full)
|
||||
((hygn-memq? '(upper-case upper)) char-set:upper-case)
|
||||
((hygn-memq? '(alphabetic alpha)) char-set:letter)
|
||||
((hygn-memq? '(numeric digit num)) char-set:digit)
|
||||
|
|
Loading…
Reference in New Issue