From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ritchie Newsgroups: gmane.emacs.help Subject: interactive function name Date: Sun, 20 Mar 2011 15:38:49 -0700 (PDT) Organization: http://groups.google.com Message-ID: <21b55cc1-30f5-453a-9502-2963063bf704@d26g2000prn.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1300660837 4784 80.91.229.12 (20 Mar 2011 22:40:37 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sun, 20 Mar 2011 22:40:37 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Mar 20 23:40:34 2011 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Q1RIX-0005aa-JF for geh-help-gnu-emacs@m.gmane.org; Sun, 20 Mar 2011 23:40:33 +0100 Original-Received: from localhost ([127.0.0.1]:56793 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q1RIT-0001Ck-BS for geh-help-gnu-emacs@m.gmane.org; Sun, 20 Mar 2011 18:40:29 -0400 Original-Path: usenet.stanford.edu!postnews.google.com!d26g2000prn.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 23 Original-NNTP-Posting-Host: 139.182.44.145 Original-X-Trace: posting.google.com 1300660729 25180 127.0.0.1 (20 Mar 2011 22:38:49 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Sun, 20 Mar 2011 22:38:49 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: d26g2000prn.googlegroups.com; posting-host=139.182.44.145; posting-account=CuLrKQoAAACxi2VsGphG0_-Zo9Puh4B0 User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.151 Safari/534.16, gzip(gfe) Original-Xref: usenet.stanford.edu gnu.emacs.help:186162 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:80300 Archived-At: I'm trying to use the interactive function name feature. On emacs lisp manual it says: =91a=92 A function name (i.e., a symbol satisfying fboundp). Existing, Completion, Prompt. So I tried it with a small test code: (defun testfun1 () (message "hello, world!")) (defun test (abcd) (interactive "aTheme name: ") (abcd)) Emacs gives an error saying, test: Symbol's function definition is void: abcd I tried to test abcd with fboundp, it returns t. So I'm quite confused about how to use the 'a' option in interactive. Any body can give some hints?