I created a very simple example to get familiar with the new Format specifier for %rf :
program rf_format
implicit none
integer :: iw
double precision :: d_input
d_input = 1.23d0
iw=winio@('%rf[fmt=0.4e]&',d_input)
iw=winio@('%bt[OK button]')
END
When I run the program and try to edit the variable, I get a program crash with 'Stack Overflow'. The program runs fine, if I omit the format specifier. Any Ideas?
Ralf