From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: jacksneckhurts@yahoo.com Newsgroups: gmane.emacs.help Subject: Why does this code sometimes work? Date: 17 Feb 2006 03:14:17 -0800 Organization: http://groups.google.com Message-ID: <1140174857.888898.141060@z14g2000cwz.googlegroups.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: sea.gmane.org 1140228529 8753 80.91.229.2 (18 Feb 2006 02:08:49 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 18 Feb 2006 02:08:49 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Feb 18 03:08:49 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FAHWc-0004uf-IR for geh-help-gnu-emacs@m.gmane.org; Sat, 18 Feb 2006 03:08:42 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FAHWb-0008IF-VP for geh-help-gnu-emacs@m.gmane.org; Fri, 17 Feb 2006 21:08:41 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!z14g2000cwz.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 14 Original-NNTP-Posting-Host: 70.187.41.206 Original-X-Trace: posting.google.com 1140174863 8473 127.0.0.1 (17 Feb 2006 11:14:23 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Fri, 17 Feb 2006 11:14:23 +0000 (UTC) User-Agent: G2/0.2 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: z14g2000cwz.googlegroups.com; posting-host=70.187.41.206; posting-account=7fsrbQ0AAABalR4aDGnOGa9yzmwP0ntF Original-Xref: shelby.stanford.edu gnu.emacs.help:137634 Original-To: help-gnu-emacs@gnu.org 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:33259 Archived-At: I pulled the following code from a tutorial: ;; begin (defun multiply-by-seven (number) "Multiply NUMBER by seven." (* 7 number)) (multiply-by-seven 3) ;; end I put it in emacs as is, and sometimes it runs, and most of the time it errors out... I run the code with "ctrl-x ctrl-e" while the cursor is to the right of "3)". What am I doing wrong? Thanks!