diff options
author | Juerg Billeter <j@bitron.ch> | 2007-09-04 20:17:31 +0000 |
---|---|---|
committer | Jürg Billeter <juergbi@src.gnome.org> | 2007-09-04 20:17:31 +0000 |
commit | c7229010b2a88d3cf5e1f1f07e815635489bc788 (patch) | |
tree | 8479ea35d1d865beb2a754d056d051c2faa4adfc /ccode/valaccodeforstatement.vala | |
parent | ffc76767c23915c789c6c0bf547c477ad85d39ae (diff) | |
download | vala-c7229010b2a88d3cf5e1f1f07e815635489bc788.tar.gz |
emit line directives in debug mode
2007-09-04 Juerg Billeter <j@bitron.ch>
* vala/valacodenode.vala, ccode/valaccodebreakstatement.vala,
ccode/valaccodecasestatement.vala, ccode/valaccodecontinuestatement.vala,
ccode/valaccodedeclaration.vala, ccode/valaccodedostatement.vala,
ccode/valaccodeexpressionstatement.vala, ccode/valaccodeforstatement.vala,
ccode/valaccodefunction.vala, ccode/valaccodeifstatement.vala,
ccode/valaccodereturnstatement.vala, ccode/valaccodeswitchstatement.vala,
ccode/valaccodevariabledeclarator.vala,
ccode/valaccodewhilestatement.vala, ccode/valaccodewriter.vala,
gobject/valacodegenerator.vala, gobject/valacodegeneratormethod.vala,
gobject/valacodegeneratorsourcefile.vala: emit line directives in debug
mode
svn path=/trunk/; revision=580
Diffstat (limited to 'ccode/valaccodeforstatement.vala')
-rw-r--r-- | ccode/valaccodeforstatement.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ccode/valaccodeforstatement.vala b/ccode/valaccodeforstatement.vala index 37600927a..2d5b3a605 100644 --- a/ccode/valaccodeforstatement.vala +++ b/ccode/valaccodeforstatement.vala @@ -64,7 +64,7 @@ public class Vala.CCodeForStatement : CCodeStatement { public override void write (CCodeWriter! writer) { bool first; - writer.write_indent (); + writer.write_indent (line); writer.write_string ("for ("); first = true; |