From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Yehudah Rubinsky Newsgroups: gmane.emacs.help Subject: Re: LaTeX-mode menu Date: Tue, 18 Nov 2003 14:15:25 -0500 Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <5.1.0.14.0.20031118133912.03d2de60@localhost> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Trace: sea.gmane.org 1069183085 31829 80.91.224.253 (18 Nov 2003 19:18:05 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 18 Nov 2003 19:18:05 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Nov 18 20:18:03 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 1AMBMQ-0005z3-00 for ; Tue, 18 Nov 2003 20:18:03 +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 1AMCJm-0006uU-8Z for geh-help-gnu-emacs@m.gmane.org; Tue, 18 Nov 2003 15:19:22 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1AMCJL-0006r2-3B for help-gnu-emacs@gnu.org; Tue, 18 Nov 2003 15:18:55 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1AMCIo-0006f9-OS for help-gnu-emacs@gnu.org; Tue, 18 Nov 2003 15:18:53 -0500 Original-Received: from [207.69.200.226] (helo=blount.mail.mindspring.net) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AMCHM-00068S-ND for help-gnu-emacs@gnu.org; Tue, 18 Nov 2003 15:16:52 -0500 Original-Received: from h-67-100-121-179.phlapafg.dynamic.covad.net ([67.100.121.179] helo=ed.mindspring.com) by blount.mail.mindspring.net with esmtp (Exim 3.33 #1) id 1AMBJv-0007di-00 for help-gnu-emacs@gnu.org; Tue, 18 Nov 2003 14:15:27 -0500 X-Sender: edrubins@localhost X-Mailer: QUALCOMM Windows Eudora Version 5.1 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:14360 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:14360 Reiner Steib wrote >I guess AUCTeX *is* your "super LaTeX-mode". See the instructions in >the manual (info "(auctex)Top") on how to set it up. That's what I thought as well. My .emacs contains the following. ;; load Auc Tex (require 'tex-site) (setq TeX-auto-save t) (setq TeX-parse-self t) (setq-default TeX-master nil) site-lips/tex-site.el contains the following. (defvar TeX-lisp-directory "c:/progra~1/emacs/site-lisp/auctex/" "*The directory where the AUC TeX lisp files are located.") ;;; Autoloads: (add-to-list 'load-path TeX-lisp-directory) The beginning of my load-path variable is ("c:/progra~1/emacs/site-lisp/auctex/" nil. The following is in the *messages* buffer when loading, even without any ".tex" files. eval-buffer: Symbol's value as variable is void: latex-mode-hook So the question still is what am I doing that prevents auctex from loading for LaTeX files? Best, Ed