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: Suppress user-prompting when calling commands in programs Date: Fri, 13 Jun 2014 16:20:39 +0200 Message-ID: <877g4k7ux4.fsf@geodiff-mac3.ulb.ac.be> References: <87r42skjd8.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1402669190 20956 80.91.229.3 (13 Jun 2014 14:19:50 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 13 Jun 2014 14:19:50 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Thorsten Jolitz Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Jun 13 16:19:44 2014 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 1WvSKU-0007PO-Ms for geh-help-gnu-emacs@m.gmane.org; Fri, 13 Jun 2014 16:19:42 +0200 Original-Received: from localhost ([::1]:59429 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WvSKU-0002FA-9X for geh-help-gnu-emacs@m.gmane.org; Fri, 13 Jun 2014 10:19:42 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:53768) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WvSKD-0002Ep-JO for help-gnu-emacs@gnu.org; Fri, 13 Jun 2014 10:19:32 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WvSK7-0007LI-41 for help-gnu-emacs@gnu.org; Fri, 13 Jun 2014 10:19:25 -0400 Original-Received: from mxin.ulb.ac.be ([164.15.128.112]:64043) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WvSK6-0007KA-TS for help-gnu-emacs@gnu.org; Fri, 13 Jun 2014 10:19:19 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AqgEAKkHm1OkD4Xx/2dsb2JhbABag1+qMwEEAQaGa4p4hzwBgRl1hAQBAQQBAnYQCw4TJQ8BBA0HNRMbiBIBAxENtF6WYgFKDYYGF4VcgX+EXoIjB4RBBJdRbIM8hSCGdIV9gz47Lw Original-Received: from mathsrv4.ulb.ac.be (HELO geodiff-mac3.ulb.ac.be) ([164.15.133.241]) by smtp.ulb.ac.be with ESMTP; 13 Jun 2014 16:19:17 +0200 In-Reply-To: <87r42skjd8.fsf@gmail.com> (Thorsten Jolitz's message of "Fri, 13 Jun 2014 15:51:47 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.91 (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:98206 Archived-At: Thorsten Jolitz writes: > I seem to remember that a solution for this exists, but I can't find > it anymore. Thanks for any hint. flet would work but is obsolete. See Stefan's http://lists.gnu.org/archive/html/help-gnu-emacs/2013-04/msg00429.html for possible replacements (namely cl-letf and advising). OTOH, is it really not possible to change the function upstream ? "bar" could be made an optional argument upstream (possibly with proper interactive spec), or the body of the let form could be factored out as a function for you to use. -- Nico.