From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ted Zlatanov Newsgroups: gmane.emacs.devel Subject: Re: extra-interactive functions Date: Fri, 03 Jun 2011 14:10:12 -0500 Organization: =?utf-8?B?0KLQtdC+0LTQvtGAINCX0LvQsNGC0LDQvdC+0LI=?= @ Cienfuegos Message-ID: <8762omenor.fsf@lifelogs.com> References: <87pqngewwp.fsf@spindle.srvr.nix> <87pqnfu51p.fsf@spindle.srvr.nix> <87d3jf3ef8.fsf_-_@lifelogs.com> <87fwobasiy.fsf@lifelogs.com> <87mxi1qlwv.fsf@lifelogs.com> <874o48axbk.fsf@lifelogs.com> <87tyc7i1yw.fsf@lifelogs.com> <4DE8CFA8.5020707@gmx.at> <87vcwneyyl.fsf_-_@lifelogs.com> <4DE8FD71.1000004@gmx.at> <87boyegajh.fsf@lifelogs.com> <4DE92F11.9010300@gmx.at> Reply-To: emacs-devel@gnu.org NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1307130216 24223 80.91.229.12 (3 Jun 2011 19:43:36 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 3 Jun 2011 19:43:36 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jun 03 21:43:32 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QSaHM-0001QA-IW for ged-emacs-devel@m.gmane.org; Fri, 03 Jun 2011 21:43:32 +0200 Original-Received: from localhost ([::1]:51715 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QSaHL-0006rF-8o for ged-emacs-devel@m.gmane.org; Fri, 03 Jun 2011 15:43:31 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:44565) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QSZpt-00006n-3f for emacs-devel@gnu.org; Fri, 03 Jun 2011 15:15:10 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QSZpr-0004fX-1E for emacs-devel@gnu.org; Fri, 03 Jun 2011 15:15:08 -0400 Original-Received: from lo.gmane.org ([80.91.229.12]:53127) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QSZpq-0004eM-Ig for emacs-devel@gnu.org; Fri, 03 Jun 2011 15:15:06 -0400 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1QSZpp-00045h-F0 for emacs-devel@gnu.org; Fri, 03 Jun 2011 21:15:05 +0200 Original-Received: from 38.98.147.130 ([38.98.147.130]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 03 Jun 2011 21:15:05 +0200 Original-Received: from tzz by 38.98.147.130 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 03 Jun 2011 21:15:05 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: emacs-devel@gnu.org Original-Lines: 23 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: 38.98.147.130 X-Face: bd.DQ~'29fIs`T_%O%C\g%6jW)yi[zuz6; d4V0`@y-~$#3P_Ng{@m+e4o<4P'#(_GJQ%TT= D}[Ep*b!\e,fBZ'j_+#"Ps?s2!4H2-Y"sx" Mail-Copies-To: never User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:rj5TnH8FIwln8VyDRiQRmw0hwjU= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 80.91.229.12 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:140147 Archived-At: On Fri, 03 Jun 2011 20:59:29 +0200 martin rudalics wrote: >> You're sort of side-stepping my suggestion of a special tag for >> functions that should not be called from ELisp. Is it because you think >> it's too unusual to be useful, or something else? mr> Such functions should be in `byte-compile-interactive-only-functions'. Oh cool, so it already exists :) Can the docstring for those functions automatically include a warning about usage from ELisp? Since you're so careful about including functions in that list, it makes sense to use it authoritatively. mr> Currently, I don't want to include `switch-to-buffer' because it would mr> create too many useless warnings. Eventually, I have to check in every mr> single case whether the intended use is to really show the buffer in the mr> selected window or simply in some window. mr> We could add `find-file' though ;-) Works for me. Ted