language-vhdl
language-vhdl copied to clipboard
keyword "process"

Could you maybe upload the file? Cannot reproduce this locally:

http://pastebin.com/UGme2qmh I am using Atom 1.0.19
Still present in 0.7.2. Failing example:
entity test is
port (
clock
);
end entity;
architecture arch of test is
signal processing: std_logic;
begin
test: process(clock)
begin
if processing = '0' then
processing <= '1';
end if;
end process test;
end architecture;