ada-mode-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Ada mode 6.2.1: ada-indent-comment-col-0 no longer honored


From: SCHOEPFLIN Markus
Subject: RE: Ada mode 6.2.1: ada-indent-comment-col-0 no longer honored
Date: Wed, 20 Nov 2019 08:24:13 +0000

Thank you for the patch. I can confirm that the exception is now gone, and the 
code indents properly.

But as you already said, the following code

-- 1
procedure TEST
-- 2
is
-- 3
X : INTEGER;
-- 4
begin
-- 5
if TRUE
-- 6
then
-- 7
X := 0;
-- 8
end if;
-- 9
end TEST;
-- 10

is now turned into

-- 1
procedure TEST
     -- 2
is
-- 3
   X : INTEGER;
   -- 4
begin
-- 5
   if TRUE
     -- 6
   then
-- 7
      X := 0;
      -- 8
   end if;
   -- 9
end TEST;
-- 10

even with ada-indent-comment-col-0 being non-nil, whereas all comments should 
stay at column 0.

-- 
Markus



reply via email to

[Prev in Thread] Current Thread [Next in Thread]