From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Bric Newsgroups: gmane.emacs.devel Subject: awesome feature (yet to be added?) Date: Sat, 3 May 2014 14:47:44 -0400 (EDT) Message-ID: <112075085.1028629.1399142864865.open-xchange@email.1and1.com> Reply-To: Bric NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1399142892 18496 80.91.229.3 (3 May 2014 18:48:12 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 3 May 2014 18:48:12 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat May 03 20:48:05 2014 Return-path: Envelope-to: ged-emacs-devel@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 1Wgeyh-0004F8-Tw for ged-emacs-devel@m.gmane.org; Sat, 03 May 2014 20:48:04 +0200 Original-Received: from localhost ([::1]:49827 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wgeyh-0003jb-KK for ged-emacs-devel@m.gmane.org; Sat, 03 May 2014 14:48:03 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:52374) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WgeyZ-0003hc-2g for emacs-devel@gnu.org; Sat, 03 May 2014 14:48:01 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WgeyS-0000a4-TL for emacs-devel@gnu.org; Sat, 03 May 2014 14:47:55 -0400 Original-Received: from mout.perfora.net ([74.208.4.194]:51333) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WgeyS-0000Zp-NH for emacs-devel@gnu.org; Sat, 03 May 2014 14:47:48 -0400 Original-Received: from oxuslxltgw00.lxa.perfora.net (oxuslxltgw00.lxa.perfora.net [172.19.206.3]) by mrelay.perfora.net (node=mrus3) with ESMTP (Nemesis) id 0MJT9f-1Wj7wx3htb-002dPT; Sat, 03 May 2014 14:47:45 -0400 X-Priority: 3 Importance: Medium X-Mailer: Open-Xchange Mailer v7.4.2-Rev18 X-Provags-ID: V02:K0:HToQpRd+xQ7rvtGzS7gLB+rGp/g+DF03G1FGV5PF/A7 45hHBDD8qYOrGXLvTEb4BVcPK0LPFmRNjTtBYlD062iCFDJCDU 4qnt9MC5lk2OZUmRmb8l3tNFNX5Mek4WsvPfb57y4FQYBdkqbE GwqhItBB6LvQkQMQ8VUp9LALixoRxuqXsqTAzEIfG/1zD019VB kGtES+cBiDlt62FV4Gp7LKOqU9WNeFlCYy9GVt/mgMAqEIkswu 4KI3CDfsUpzY6Zfvs58hRgkMWvROMOUTCj6de84GkFBqzM8pmu SNnGvsaKiyCmCtuuA/AuiTIS5aJwxJl1RXmUTB0/nHsdxZmVhC xSg5phBHWaGxTUAZkTvkHJ1HX3Vb5JiI975n0DxnMsezuuVoEI yzgrUhZLvbKeZtfhmE2cMpL5pynm0Nzfofe7DV8g2DWcTAX9gU /kfaT X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 74.208.4.194 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:171678 Archived-At: Hi, all unless it already exists, I thought of an awesome time-saving command:=C2= =A0 invert-comment this to be on a par with "comment-region" and "uncomment-region". "invert-comment" would change something like this : =C2=A0 =C2=A0/* int b_progress; */ =C2=A0 =C2=A0 /* int i_seek; */ =C2=A0 =C2=A0 /* hnd_t hin; */ =C2=A0 =C2=A0 /* hnd_t hout; */ =C2=A0 =C2=A0 int c_progress; =C2=A0 =C2=A0 int j_seek; =C2=A0 =C2=A0 hnd_e hin; =C2=A0 =C2=A0 hnd_f hout; to: =C2=A0 =C2=A0 int b_progress; =C2=A0 =C2=A0 int i_seek; =C2=A0 =C2=A0 hnd_t hin; =C2=A0 =C2=A0 hnd_t hout; =C2=A0 =C2=A0 /* int c_progress; */ =C2=A0 =C2=A0 /* int j_seek; */ =C2=A0 =C2=A0 /* hnd_e hin; */ =C2=A0 =C2=A0 /* hnd_f hout; */ ------------- not for all occasions, but can be very useful for some, it seems to me. Maybe it's easily added with a scheme script or something. thanks!