From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Bernardo Newsgroups: gmane.emacs.help Subject: Re: Continuation of comments in f90-mode with auto-fill Date: Thu, 15 Jan 2015 08:38:05 +1100 Message-ID: <8761c92gci.fsf@deb.home.net> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1421271605 29174 80.91.229.3 (14 Jan 2015 21:40:05 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 14 Jan 2015 21:40:05 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jan 14 22:39:59 2015 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1YBVfT-0007hl-2b for geh-help-gnu-emacs@m.gmane.org; Wed, 14 Jan 2015 22:39:59 +0100 Original-Received: from localhost ([::1]:48195 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YBVfS-0004P8-Hq for geh-help-gnu-emacs@m.gmane.org; Wed, 14 Jan 2015 16:39:58 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:33026) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YBVfG-0004P1-RH for help-gnu-emacs@gnu.org; Wed, 14 Jan 2015 16:39:47 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YBVfD-00080T-Lv for help-gnu-emacs@gnu.org; Wed, 14 Jan 2015 16:39:46 -0500 Original-Received: from pecan2-mail.exetel.com.au ([220.233.0.71]:42697 helo=pecan2.exetel.com.au) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YBVfD-00080K-BS for help-gnu-emacs@gnu.org; Wed, 14 Jan 2015 16:39:43 -0500 Original-Received: from 33.111.70.115.static.exetel.com.au ([115.70.111.33] helo=deb.home.net) by pecan2.exetel.com.au with esmtp (Exim 4.84) (envelope-from ) id 1YBVf7-0002rE-W0 for help-gnu-emacs@gnu.org; Thu, 15 Jan 2015 08:39:38 +1100 User-Agent: Gnus/5.13 (Gnus v5.13) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 220.233.0.71 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:102071 Archived-At: > When in f90-mode with auto-fill-mode, emacs continues a comment by > indenting the new line and inserting a single '!' character at the > beginning. How do I change this string, say to "!! "? completely untested but may give you an idea: (add-hook 'f90-hook (lambda () (setq comment-start "!! ")))