From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Nicolas Richard Newsgroups: gmane.emacs.help Subject: Re: How to write the "interactive" form for a command acting on a region Date: Wed, 14 Jan 2015 00:24:00 +0100 Message-ID: <87sifei7sf.fsf@yahoo.fr> References: <8761ca5oc2.fsf@wmi.amu.edu.pl> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1421191463 30863 80.91.229.3 (13 Jan 2015 23:24:23 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 13 Jan 2015 23:24:23 +0000 (UTC) Cc: Help Gnu Emacs mailing list To: Marcin Borkowski Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jan 14 00:24:15 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 1YBAop-0004Ua-8B for geh-help-gnu-emacs@m.gmane.org; Wed, 14 Jan 2015 00:24:15 +0100 Original-Received: from localhost ([::1]:41824 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YBAoo-0008CW-Kp for geh-help-gnu-emacs@m.gmane.org; Tue, 13 Jan 2015 18:24:14 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:46587) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YBAod-0008CP-0W for help-gnu-emacs@gnu.org; Tue, 13 Jan 2015 18:24:03 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YBAoZ-0000h4-IO for help-gnu-emacs@gnu.org; Tue, 13 Jan 2015 18:24:02 -0500 Original-Received: from mxin.ulb.ac.be ([164.15.128.112]:34769) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YBAoZ-0000gh-C4 for help-gnu-emacs@gnu.org; Tue, 13 Jan 2015 18:23:59 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ao8FAKGotVSkD4Xx/2dsb2JhbABbDoQigjaxFgEBAQEBAQaYNAKBWQEBAQEBfYQNAQV5EAgDDhMlDwEESROIFwEUvW6NZQGEOgEBAQcCAR+GBYIqhCyDHgeEKQWXT4YLi3EigzE+PTGCQwEBAQ Original-Received: from mathsrv4.ulb.ac.be (HELO localhost) ([164.15.133.241]) by smtp.ulb.ac.be with ESMTP; 14 Jan 2015 00:23:58 +0100 In-Reply-To: <8761ca5oc2.fsf@wmi.amu.edu.pl> (Marcin Borkowski's message of "Tue, 13 Jan 2015 23:05:01 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 164.15.128.112 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:102057 Archived-At: Hello, Marcin Borkowski writes: > (if (use-region-p) > (list (region-beginning) (region-end) t) > (list (point-min) (point-max) t))) You could do (if (use-region-p) (list (region-beginning) (region-end) t) (list nil nil t)) (naive suggestion -- I have no experience !) -- Nicolas Richard