First of all,
Congratulations with the old-ada-mode "adaptation" to the new emacs versions.
--
I have noticed some indentation issues, or differences, compared with the previous Ada-mode version.
procedure p_test is
procedure p_proc
(param1 : boolean;
param2 : boolean) is
begin
null;
end p_proc;
begin
p_proc
(param1 => true,
param2 => false); -- This is not correctly indented. When I click <tab> the line starts at the same column that the parenthesis, not below the param1.
end p_test;