diff options
author | Tristan Gingold <tgingold@free.fr> | 2014-01-15 06:15:45 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2014-01-15 06:15:45 +0100 |
commit | 0cbe5130ba04826f5e7685198bea3a28e94fe6cd (patch) | |
tree | d64745a9c8aac695cdbb11a131ef61acdac3f2ce | |
parent | cb12a860012e3db72fdc399196db4dd729031492 (diff) | |
download | ghdl-0cbe5130ba04826f5e7685198bea3a28e94fe6cd.tar.gz ghdl-0cbe5130ba04826f5e7685198bea3a28e94fe6cd.tar.bz2 ghdl-0cbe5130ba04826f5e7685198bea3a28e94fe6cd.zip |
Fix indentation.
-rw-r--r-- | scanner.adb | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/scanner.adb b/scanner.adb index b8cc42281..70fe6ff0f 100644 --- a/scanner.adb +++ b/scanner.adb @@ -134,21 +134,21 @@ package body Scanner is -- it can be used to push/pop a lexical analysis, to restart the -- scanner from a context marking a previous point. type Scan_Context is record - Source: File_Buffer_Acc; - Source_File: Source_File_Entry; - Line_Number: Natural; - Line_Pos: Source_Ptr; - Pos: Source_Ptr; - Token_Pos: Source_Ptr; - File_Len: Source_Ptr; - File_Name: Name_Id; - Token: Token_Type; - Prev_Token: Token_Type; - Str_Id : String_Id; - Str_Len : Nat32; - Identifier: Name_Id; - Int64: Iir_Int64; - Fp64: Iir_Fp64; + Source: File_Buffer_Acc; + Source_File: Source_File_Entry; + Line_Number: Natural; + Line_Pos: Source_Ptr; + Pos: Source_Ptr; + Token_Pos: Source_Ptr; + File_Len: Source_Ptr; + File_Name: Name_Id; + Token: Token_Type; + Prev_Token: Token_Type; + Str_Id : String_Id; + Str_Len : Nat32; + Identifier: Name_Id; + Int64: Iir_Int64; + Fp64: Iir_Fp64; end record; -- The current context. |