a complete git commandline
This commit is contained in:
@@ -871,7 +871,10 @@
|
||||
|
||||
|
||||
(define (grep-flag? x flag)
|
||||
(and (symbol? x) (eq? x flag)))
|
||||
;; Racket reads -i as the complex number 0-1i before quote is applied.
|
||||
;; In git-grep option position, accept that reader form as the Git -i flag.
|
||||
(or (and (symbol? x) (eq? x flag))
|
||||
(and (equal? flag 0-1i) (equal? x 0-1i))))
|
||||
|
||||
(define (parse-grep-arguments args)
|
||||
(let loop ([rest args] [ignore-case? #f] [invert? #f]
|
||||
|
||||
Reference in New Issue
Block a user