~ubuntu-branches/ubuntu/jaunty/adacontrol/jaunty

« back to all changes in this revision

Viewing changes to src/rules-max_nesting.adb

  • Committer: Bazaar Package Importer
  • Author(s): Ludovic Brenta
  • Date: 2006-10-12 19:17:22 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061012191722-fo5bcn4k5r0iubgd
Tags: 1.5r24-1

* New upstream release.
* debian/control (Depends): add gnat-4.1.
  (Enhances): add gnat-gps.
* debian/adacontrol.gpr: build pfni.
* debian/rules: install the new gnat-gps plug-in, and pfni.
* debian/pfni.1: new.
* patches/gps-integration.patch: new.

Show diffs side-by-side

added added

removed removed

Lines of Context:
197
197
                 To_Wide_String (Rule_Count_Label),
198
198
                 Count,
199
199
                 Get_Location (Scope),
200
 
                 "nesting deeper than" & Scope_Range'Wide_Image (Check_Depth-1));
 
200
                 "nesting deeper than" & Scope_Range'Wide_Image (Count_Depth-1));
201
201
      end if;
202
202
  end Process_Scope_Enter;
203
203
 
226
226
   end Process_Scope_Exit;
227
227
 
228
228
begin
229
 
   Framework.Rules_Manager.Register (Rule_Id,
230
 
                                     Help    => Help'Access,
231
 
                                     Add_Use => Add_Use'Access,
232
 
                                     Command => Command'Access);
 
229
   Framework.Rules_Manager.Register_Semantic (Rule_Id,
 
230
                                              Help    => Help'Access,
 
231
                                              Add_Use => Add_Use'Access,
 
232
                                              Command => Command'Access);
233
233
end Rules.Max_Nesting;