From 8710a3738470e19e0d05c8e68db0803100caf3d8 Mon Sep 17 00:00:00 2001 From: Araq Date: Thu, 29 Jan 2015 03:08:41 +0100 Subject: nimsuggest: sane dirty buffer handling --- compiler/syntaxes.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compiler/syntaxes.nim') diff --git a/compiler/syntaxes.nim b/compiler/syntaxes.nim index 61677a641..7f9e25f82 100644 --- a/compiler/syntaxes.nim +++ b/compiler/syntaxes.nim @@ -45,7 +45,7 @@ proc parseFile(fileIdx: int32): PNode = var p: TParsers f: File - let filename = fileIdx.toFullPath + let filename = fileIdx.toFullPathConsiderDirty if not open(f, filename): rawMessage(errCannotOpenFile, filename) return @@ -163,7 +163,7 @@ proc evalPipe(p: var TParsers, n: PNode, filename: string, proc openParsers(p: var TParsers, fileIdx: int32, inputstream: PLLStream) = var s: PLLStream p.skin = skinStandard - let filename = fileIdx.toFullPath + let filename = fileIdx.toFullPathConsiderDirty var pipe = parsePipe(filename, inputstream) if pipe != nil: s = evalPipe(p, pipe, filename, inputstream) else: s = inputstream -- cgit 1.4.1-2-gfad0 href='/akspecs/aerc/blame/lib/msgstore.go?h=0.1.4'>blame commit diff stats
path: root/lib/msgstore.go
blob: 6ab7fc26ad6b2d9f8021ccc3d0375eb4d1857b6a (plain) (tree)
1
2
3
4
5
6
7
8
9