1
0
mirror of https://github.com/m00natic/vlfi.git synced 2025-01-31 10:10:48 +00:00

Fix vlfi invocation when prompted for large files.

This commit is contained in:
Andrey Kotlarski 2013-04-04 11:49:19 +03:00
parent e387ed5f09
commit 80ca6b638b

View File

@ -253,7 +253,7 @@ OP-TYPE specifies the file operation being performed over FILENAME."
'(?o ?O ?v ?V ?a ?A)))) '(?o ?O ?v ?V ?a ?A))))
(cond ((memq char '(?o ?O))) (cond ((memq char '(?o ?O)))
((memq char '(?v ?V)) ((memq char '(?v ?V))
(vlfi nil filename) (vlfi filename nil)
(error "")) (error ""))
((memq char '(?a ?A)) ((memq char '(?a ?A))
(error "Aborted")))))) (error "Aborted"))))))