removing spaces.
This commit is contained in:
parent
731b3200ab
commit
986eedcc75
@ -125,8 +125,8 @@
|
|||||||
(ghc-display nil
|
(ghc-display nil
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(insert "Possible completions:\n")
|
(insert "Possible completions:\n")
|
||||||
(mapc
|
(mapc
|
||||||
(lambda (x)
|
(lambda (x)
|
||||||
(let* (; (ins1 (insert "- "))
|
(let* (; (ins1 (insert "- "))
|
||||||
(pos-begin (point))
|
(pos-begin (point))
|
||||||
(ins (insert x))
|
(ins (insert x))
|
||||||
|
@ -167,11 +167,11 @@ checkStx :: IOish m
|
|||||||
-> FilePath
|
-> FilePath
|
||||||
-> GhcModT m (String, Bool, Set FilePath)
|
-> GhcModT m (String, Bool, Set FilePath)
|
||||||
checkStx set file = do
|
checkStx set file = do
|
||||||
set' <- newFileSet set file
|
-- set' <- newFileSet set file
|
||||||
let files = S.toList set'
|
-- let files = S.toList set'
|
||||||
eret <- check files
|
eret <- check [file]
|
||||||
case eret of
|
case eret of
|
||||||
Right ret -> return (ret, True, set')
|
Right ret -> return (ret, True, set)
|
||||||
Left ret -> return (ret, True, set) -- fxime: set
|
Left ret -> return (ret, True, set) -- fxime: set
|
||||||
|
|
||||||
newFileSet :: IOish m => Set FilePath -> FilePath -> GhcModT m (Set FilePath)
|
newFileSet :: IOish m => Set FilePath -> FilePath -> GhcModT m (Set FilePath)
|
||||||
@ -320,4 +320,4 @@ browseIt set mdl = do
|
|||||||
else browse mdl
|
else browse mdl
|
||||||
return (ret, True, set)
|
return (ret, True, set)
|
||||||
where
|
where
|
||||||
setDetailed opt = opt { detailed = True }
|
setDetailed opt = opt { detailed = True }
|
||||||
|
Loading…
Reference in New Issue
Block a user