From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 13 11:56:19 2013 Received: (at submit) by debbugs.gnu.org; 13 Sep 2013 15:56:19 +0000 Received: from localhost ([127.0.0.1]:34077 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VKVjH-000460-Al for submit@debbugs.gnu.org; Fri, 13 Sep 2013 11:56:19 -0400 Received: from eggs.gnu.org ([208.118.235.92]:41591) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VKTvM-000097-15 for submit@debbugs.gnu.org; Fri, 13 Sep 2013 10:00:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VKTv8-0007Z4-8u for submit@debbugs.gnu.org; Fri, 13 Sep 2013 10:00:34 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=BAYES_40,FREEMAIL_FROM, HTML_MESSAGE,T_DKIM_INVALID autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:39726) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VKTv8-0007Z0-5Z for submit@debbugs.gnu.org; Fri, 13 Sep 2013 10:00:26 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43254) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VKTuz-0008R3-Nr for bug-gnu-emacs@gnu.org; Fri, 13 Sep 2013 10:00:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VKTuq-0007Vj-6y for bug-gnu-emacs@gnu.org; Fri, 13 Sep 2013 10:00:17 -0400 Received: from mail-ea0-x235.google.com ([2a00:1450:4013:c01::235]:37601) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VKTuq-0007V9-1I for bug-gnu-emacs@gnu.org; Fri, 13 Sep 2013 10:00:08 -0400 Received: by mail-ea0-f181.google.com with SMTP id d10so603526eaj.40 for ; Fri, 13 Sep 2013 07:00:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:message-id:subject:mime-version:content-type; bh=q3higb0btaFl3aZNTcK5thZP8cla5V/4UIj+VCRMGLM=; b=GSDWXhgDfxoUM76YgesAKZX/4C1n0FxwkLLH2Uao21+wGVmS4vQUO/PkCNePHcpcRX zn2NQZ4bOrUOVFeeg+5ykRzXmUtJ1Bu0PNO76o6rnYRPsZgMIDKSViIXF2FzXVNvgsYz pLqVhqumcn8B1B22oLEEdgIo8BJ1RMbXhhl335fCt2fp+Axr/rnpZefKIXnRB3+T+vH9 E3Pt5uMWa3ovfkuA2v18wT7pa5bmZm4j31G+vlcA7MFsL7pXoA2NNV+uKsQ7lyYVK3or s3/h0Z+tPLvJUK0yRXCKOvgD+Yqxrg+07ZoHGLv0S9z3qfSMpxxYH41jBW3VTG6Uiooy WNZA== X-Received: by 10.14.199.3 with SMTP id w3mr18510306een.33.1379080803995; Fri, 13 Sep 2013 07:00:03 -0700 (PDT) Received: from [192.168.1.28] ([95.87.231.111]) by mx.google.com with ESMTPSA id p5sm15191056eeg.5.1969.12.31.16.00.00 (version=TLSv1 cipher=RC4-SHA bits=128/128); Fri, 13 Sep 2013 07:00:02 -0700 (PDT) Date: Fri, 13 Sep 2013 16:59:26 +0300 From: Bozhidar Batsov To: bug-gnu-emacs@gnu.org Message-ID: <46A0697CE8F64041A31CFEC90550A257@gmail.com> Subject: 24.3; Incorrect indentation after line continuation character in ruby-mode X-Mailer: sparrow 1.6.4 (build 1178) MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="52331a3e_1958bd17_99" X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Fri, 13 Sep 2013 11:56:17 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.0 (----) --52331a3e_1958bd17_99 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline The line continuation character is not properly treated by ruby-mode. Here's how the indentation after `\` works now: MSG = 'Separate every 3 digits in the integer portion of a number' \ 'with underscores(_).' Pretty sure the second line should be indented one level, since we're continuing the statement from the previous line: MSG = 'Separate every 3 digits in the integer portion of a number' \ 'with underscores(_).' -- Cheers, Bozhidar --52331a3e_1958bd17_99 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline
The line continuation= character is not properly treated by ruby-mode. Here's how the indentati= on after =60=5C=60 works now:

MSG =3D 'Separate every 3 digits in the = integer portion of a number' =5C
'with underscores(=5F).'
=

Pretty sure the= second line should be indented one level, since we're continuing the sta= tement from the previous line:

MSG =3D 'Separate every 3 digits in the= integer portion of a number' =5C
  'with underscores(=5F)= .'

-- 
Cheers,
=
Bozhidar

--52331a3e_1958bd17_99-- From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 15 19:46:37 2013 Received: (at 15369) by debbugs.gnu.org; 15 Sep 2013 23:46:37 +0000 Received: from localhost ([127.0.0.1]:39446 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VLM1V-0000AF-7L for submit@debbugs.gnu.org; Sun, 15 Sep 2013 19:46:37 -0400 Received: from mail-ea0-f169.google.com ([209.85.215.169]:38984) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VLM1S-0000A0-Az for 15369@debbugs.gnu.org; Sun, 15 Sep 2013 19:46:35 -0400 Received: by mail-ea0-f169.google.com with SMTP id k11so1688877eaj.14 for <15369@debbugs.gnu.org>; Sun, 15 Sep 2013 16:46:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=28gM+GnwW+nJPtKmi1JGJj7x020wbtM1J/X0HpsrTnQ=; b=clDiTGswzWMeYhEsiBX6//X7PBi8wnEIjEybQEVoqgDFstnWw0j80JU0j4UBj3NIxz hyI1YmUIG2uDQ8NMDOraWRLghipLoePpRBFjq+XPYUgUB3lqwk1vWaxHFvkWKitWn5AS wTLJWajvdM2kHd5sxkLgPZYhG9s3ZbP3tOutwkYDm5fQqUn8cYNipM74TykVU7uDixnS OzNVIFfkIyZMsYJFLSSU4OhWO9iUxrrmtUU5i+FZYHI9IxnlmXTPYaDdRs9bmc8C/5Df HrXWaTvPyx59GIfrqogbV3/FLKjGj3ZhkP0kF/zcfflQokM+u9F9F/fJQmK1GVcV0VL0 xSCA== X-Received: by 10.15.67.131 with SMTP id u3mr38395190eex.34.1379288788051; Sun, 15 Sep 2013 16:46:28 -0700 (PDT) Received: from axl (62-118-214.netrun.cytanet.com.cy. [62.228.118.214]) by mx.google.com with ESMTPSA id p5sm37097775eeg.5.1969.12.31.16.00.00 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sun, 15 Sep 2013 16:46:27 -0700 (PDT) From: Dmitry Gutov To: Bozhidar Batsov Subject: Re: bug#15369: 24.3; Incorrect indentation after line continuation character in ruby-mode References: <46A0697CE8F64041A31CFEC90550A257@gmail.com> Date: Mon, 16 Sep 2013 02:46:19 +0300 In-Reply-To: <46A0697CE8F64041A31CFEC90550A257@gmail.com> (Bozhidar Batsov's message of "Fri, 13 Sep 2013 16:59:26 +0300") Message-ID: <87six5bqd0.fsf@yandex.ru> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 15369 Cc: 15369@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) Version: 24.4 Bozhidar Batsov writes: > The line continuation character is not properly treated by ruby-mode. > Here's how the indentation after `\` works now: > > MSG = 'Separate every 3 digits in the integer portion of a number' \ > 'with underscores(_).' > > Pretty sure the second line should be indented one level, since we're > continuing the statement from the previous line: > > MSG = 'Separate every 3 digits in the integer portion of a number' \ > 'with underscores(_).' Fixed in 114298. But it could break some edge cases, so please be on lookout for that. From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 15 22:09:08 2013 Received: (at control) by debbugs.gnu.org; 16 Sep 2013 02:09:08 +0000 Received: from localhost ([127.0.0.1]:39638 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VLOFP-0003gr-SG for submit@debbugs.gnu.org; Sun, 15 Sep 2013 22:09:08 -0400 Received: from fencepost.gnu.org ([208.118.235.10]:38359 ident=Debian-exim) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VLOFO-0003gj-CZ for control@debbugs.gnu.org; Sun, 15 Sep 2013 22:09:06 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1VLOFN-0007rN-Sd for control@debbugs.gnu.org; Sun, 15 Sep 2013 22:09:05 -0400 Date: Sun, 15 Sep 2013 22:09:05 -0400 Message-Id: Subject: control message for bug 15369 To: X-Mailer: mail (GNU Mailutils 2.1) From: Glenn Morris X-Spam-Score: -5.7 (-----) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.7 (-----) close 15369 24.4 From unknown Sat Sep 20 13:00:26 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 14 Oct 2013 11:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator