From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: mrf Newsgroups: gmane.emacs.help Subject: Is there any unbackslash-region command in emacs? Date: Fri, 02 Jul 2021 11:20:19 +0300 Message-ID: <87zgv5dsoa.fsf@cock.li> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="32642"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: mu4e 1.5.8; emacs 27.2 To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Fri Jul 02 10:30:02 2021 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lzEYi-0008Ki-4y for geh-help-gnu-emacs@m.gmane-mx.org; Fri, 02 Jul 2021 10:30:01 +0200 Original-Received: from localhost ([::1]:57554 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lzEYh-0004Y4-3Z for geh-help-gnu-emacs@m.gmane-mx.org; Fri, 02 Jul 2021 04:29:59 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:54310) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lzEY9-0004Xe-ND for help-gnu-emacs@gnu.org; Fri, 02 Jul 2021 04:29:25 -0400 Original-Received: from mail.cock.li ([37.120.193.124]:46460) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lzEY7-0007DQ-RY for help-gnu-emacs@gnu.org; Fri, 02 Jul 2021 04:29:25 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cock.li; s=mail; t=1625214560; bh=XEF019pFUKS7/x2FMQ31rUH+B8Tcnl3SIs04Zw2kFVw=; h=From:To:Subject:Date:From; b=mr/H60s0uKvkLiXKWLctLdIPKYf+gEpJ0GRuU4MNJHqMriVv21m7hay5ay1bdSgut KhPC1yZPHn3GPqFw8bFvv0lUJoXpj1UtzLU91Ydf0OpJ+TVDHhgY1MXhgimG2QGQqh I9RrZhk7paLVLufZygB/tKrHD3xOvmxb+EKz1MHQ4Hb20jdLZ0UYwRGLgGz5rWFZmT nFh4jVuj0h7Fe9u/t1Td7sQjODI29CniJBayMep82gMaZi0727o0vdI8FX6Xkl/tXC KlYc7zXx/2J0lzz2ykOb2SAIcoX1nVcCwSKO+ymNL8+Bkd1QqwQUwWJD9+8k7Do6Qx MwMbCK8BrI/Gg== Received-SPF: pass client-ip=37.120.193.124; envelope-from=joinlaw@cock.li; helo=mail.cock.li X-Spam_score_int: 25 X-Spam_score: 2.5 X-Spam_bar: ++ X-Spam_report: (2.5 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_PBL=3.335, RCVD_IN_VALIDITY_RPBL=1.31, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.23 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-mx.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.io gmane.emacs.help:131383 Archived-At: Hi, When I work on long C macros I use M-x c-backslash-region // even makefile-backslash-region working in c-mode after writing it but sometimes I want to convert preprocessor function to symbolic function so I can do recursion and to do that I remove backslashes with C-x SPC (rectangle-mark-mode). what I'm asking for is quick command to remove this backslashes like the comment and uncomment commands: M-x comment-region M-x uncomment-region