Quote user input before globbing
This commit is contained in:
parent
aaf2089247
commit
3f752d9dc3
|
@ -51,7 +51,10 @@
|
|||
(define (dir-executables/prefix dir prefix)
|
||||
(if (file-readable? dir)
|
||||
(map file-name-nondirectory
|
||||
(let ((files (glob (string-append dir "/" prefix "*"))))
|
||||
(let ((files (glob (string-append (glob-quote dir)
|
||||
"/"
|
||||
(glob-quote prefix)
|
||||
"*"))))
|
||||
(if *completion-check-executable*
|
||||
(filter executable? files)
|
||||
files)))
|
||||
|
|
Loading…
Reference in New Issue