From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Tim McNamara Newsgroups: gmane.emacs.help Subject: HTML Helper Date: 12 Nov 2003 22:37:00 -0600 Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1068698768 18942 80.91.224.253 (13 Nov 2003 04:46:08 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 13 Nov 2003 04:46:08 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Nov 13 05:46:06 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 1AK9Mr-00057M-00 for ; Thu, 13 Nov 2003 05:46:06 +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 1AKAJF-0001is-Kg for geh-help-gnu-emacs@m.gmane.org; Thu, 13 Nov 2003 00:46:25 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!logbridge.uoregon.edu!newspeer.monmouth.com!news-out.visi.com!petbe.visi.com!gemini.bitstream.net.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Original-Lines: 19 Original-NNTP-Posting-Host: 0e158585.news.bitstream.net Original-X-Trace: 1068698264 gemini.bitstream.net 1098 216.243.177.155 Original-X-Complaints-To: abuse@bitstream.net Original-Xref: shelby.stanford.edu gnu.emacs.help:118193 Original-To: help-gnu-emacs@gnu.org 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:14133 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:14133 I seem to be having trouble getting html-helper-mode to work. When I open an .html file, Emacs complains that it can't load html-helper-mode. Here's my .emacs configuration for this: (setq load-path (cons "/usr/local/share/emacs/21.1/site-lisp/html-helper-mode/html-helper-mode.el" load-path)) (autoload 'html-helper-mode "html-helper-mode" "Yay HTML" t) (setq auto-mode-alist (cons '("\.html$" . html-helper-mode) auto-mode-alist)) html-helper-mode.el is at the specified location- I've checked carefully. Emacs can find the directory on launch (at least it no longer complains that it isn't there). Could there be a permissions issue with launching this file BSD-ish Unix a.k.a. Darwin? Do I need to chmod permissions (currently -rw-r--r-- for the .el file, and drwxr-xr-x for the html-helper-mode directory)? Thanks! Obviously still learning both Emacs and Unix...