From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Angelo Graziosi Newsgroups: gmane.emacs.devel Subject: Still on F90 mode Date: Wed, 17 Feb 2010 23:43:06 +0100 Message-ID: <4B7C70FA.2020609@alice.it> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1266448053 26080 80.91.229.12 (17 Feb 2010 23:07:33 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 17 Feb 2010 23:07:33 +0000 (UTC) To: Emacs Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Feb 18 00:07:31 2010 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1NhszT-00073d-6s for ged-emacs-devel@m.gmane.org; Thu, 18 Feb 2010 00:07:31 +0100 Original-Received: from localhost ([127.0.0.1]:47301 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NhszS-0003NJ-Mu for ged-emacs-devel@m.gmane.org; Wed, 17 Feb 2010 18:07:30 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NhszM-0003L3-EQ for emacs-devel@gnu.org; Wed, 17 Feb 2010 18:07:24 -0500 Original-Received: from [140.186.70.92] (port=48499 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NhszK-0003IE-SJ for emacs-devel@gnu.org; Wed, 17 Feb 2010 18:07:23 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NhszK-00018k-6j for emacs-devel@gnu.org; Wed, 17 Feb 2010 18:07:22 -0500 Original-Received: from smtp-out30.alice.it ([85.33.2.30]:3602) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NhszJ-00018U-QB for emacs-devel@gnu.org; Wed, 17 Feb 2010 18:07:22 -0500 Original-Received: from FBCMMO01.fbc.local ([192.168.68.195]) by smtp-out30.alice.it with Microsoft SMTPSVC(6.0.3790.3959); Wed, 17 Feb 2010 23:43:12 +0100 Original-Received: from FBCMCL01B06.fbc.local ([192.168.69.87]) by FBCMMO01.fbc.local with Microsoft SMTPSVC(6.0.3790.3959); Wed, 17 Feb 2010 23:43:12 +0100 Original-Received: from [87.3.35.180] ([87.3.35.180]) by FBCMCL01B06.fbc.local with Microsoft SMTPSVC(6.0.3790.3959); Wed, 17 Feb 2010 23:43:12 +0100 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; it; rv:1.9.1.7) Gecko/20100111 Thunderbird/3.0.1 X-OriginalArrivalTime: 17 Feb 2010 22:43:12.0756 (UTC) FILETIME=[96205B40:01CAB022] X-detected-operating-system: by eggs.gnu.org: Windows 2000 SP4, XP SP1+ X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:121171 Archived-At: 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.