[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Still on F90 mode
From: |
Angelo Graziosi |
Subject: |
Still on F90 mode |
Date: |
Wed, 17 Feb 2010 23:43:06 +0100 |
User-agent: |
Mozilla/5.0 (Windows; U; Windows NT 5.1; it; rv:1.9.1.7) Gecko/20100111 Thunderbird/3.0.1 |
In F90 mode, I still observe things which seem strange in my opinion.
To reproduce, start Emacs with
$ emacs -Q
and enable the Pc-Selection mode,
M-x pc-selection-mode
After this, if I have the code
write(STDERR,*)
double clicking on 'STDERR' and then typing 'a', '0'..., I obtain
write(a,*)
write(0,*)
...
which is expected.
But if I type '*', the result is
write(STDERR*,*)
and not 'write(*,*)', which, really, is what I expect (and want!).
Surely I am missing something here...
Ciao,
Angelo.