From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: gebser@speakeasy.net Newsgroups: gmane.emacs.help Subject: Re: "variable [in .emacs] is void" Date: Mon, 22 Dec 2003 19:49:49 -0500 (EST) Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: <3FE745B8.6030309@yahoo.com> Reply-To: gebser@speakeasy.net NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT X-Trace: sea.gmane.org 1072140711 25410 80.91.224.253 (23 Dec 2003 00:51:51 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 23 Dec 2003 00:51:51 +0000 (UTC) Cc: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Dec 23 01:51:48 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AYam4-0007W9-00 for ; Tue, 23 Dec 2003 01:51:48 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AYbib-0001qJ-J7 for geh-help-gnu-emacs@m.gmane.org; Mon, 22 Dec 2003 20:52:17 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1AYbiE-0001qD-Uu for help-gnu-emacs@gnu.org; Mon, 22 Dec 2003 20:51:54 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1AYbhi-0001JR-7W for help-gnu-emacs@gnu.org; Mon, 22 Dec 2003 20:51:53 -0500 Original-Received: from [216.254.0.206] (helo=mail6.speakeasy.net) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.24) id 1AYbhg-0001IW-5r for help-gnu-emacs@gnu.org; Mon, 22 Dec 2003 20:51:21 -0500 Original-Received: (qmail 1122 invoked from network); 23 Dec 2003 00:49:50 -0000 Original-Received: from dsl093-011-017.cle1.dsl.speakeasy.net (HELO heidegger.mousecar.net) ([66.93.11.17]) (envelope-sender ) by mail6.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 23 Dec 2003 00:49:50 -0000 Original-To: Kevin Rodgers In-Reply-To: <3FE745B8.6030309@yahoo.com> X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 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 Xref: main.gmane.org gmane.emacs.help:15525 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:15525 At 12:27 (UTC-0700) on Mon, 22 Dec 2003 Kevin Rodgers said: = gebser@speakeasy.net wrote: = = > At 18:18 (UTC+0100) on Sun, 21 Dec 2003 Karl Pflästerer said: = > = Post the code you wrote in your .emacs (c&p). = > = > (eval-after-load "sendmail" = > (add-hook 'mail-setup-hook = > '(substitute-key-definition = = = The above line is wrong. Get rid of it and its terminating close parenthesis. Sorry, I don't understand what you mean here. = = = > '(lambda () = > (substitute-key-definition = > 'next-line 'mail-abbrev-next-line = > mail-mode-map global-map) = > (substitute-key-definition = > 'end-of-buffer 'mail-abbrev-end-of-buffer = > mail-mode-map global-map))))) = > = ...