From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: RD Newsgroups: gmane.emacs.help Subject: Re: elisp help needed Date: Wed, 01 Mar 2006 16:37:13 -0500 Organization: Posted via Supernews, http://www.supernews.com Message-ID: <44061409.9080708@localnet.com> References: <87irqygkzs.fsf@laptop.rdc1.home> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1141400332 22414 80.91.229.2 (3 Mar 2006 15:38:52 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 3 Mar 2006 15:38:52 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Mar 03 16:38:51 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 1FFCMR-0006ZZ-JG for geh-help-gnu-emacs@m.gmane.org; Fri, 03 Mar 2006 16:38:31 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FFCMS-00022o-6x for geh-help-gnu-emacs@m.gmane.org; Fri, 03 Mar 2006 10:38:32 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!sn-xt-sjc-03!sn-xt-sjc-07!sn-post-02!sn-post-01!supernews.com!corp.supernews.com!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en In-Reply-To: <87irqygkzs.fsf@laptop.rdc1.home> Original-X-Complaints-To: abuse@supernews.com Original-Lines: 26 Original-Xref: shelby.stanford.edu gnu.emacs.help:137850 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:33478 Archived-At: Robert D. Crawford wrote: > I have the following lines in my .emacs file: > > (remove-hook 'w3m-after-cursor-move-hook > #'w3m-print-this-url) > > and for some reason, to get it to eval I have to do it by hand every > time I restart emacs. I *think* this might be the only code that is not > being evaled, but I do not know any way to be certain. I know that > there are things below this line that are being correctly evaled. All > the code in the customize section seems to be ok, and I have a function > that byte-compiles .el files when they are saved that works. > > Is there some way to know what is being evaled? > > Thanks, > > rdc > I use the old "print" method. I salt my .emacs file with (message "blah") commands to report progress. Is there a command after the remove-hook that puts the hook back? Bob