auctex
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [AUCTeX] auctex 11.81 "make install" failure on winXP


From: Arnaud Legout
Subject: Re: [AUCTeX] auctex 11.81 "make install" failure on winXP
Date: Fri, 21 Oct 2005 11:21:04 +0200
User-agent: Thunderbird 1.4.1 (Windows/20051006)



Ralf Angeli wrote:

Do you have a `(require 'tex-site)' somewhere in your init.el?
no
What is the output of `M-x find-library RET tex-mik RET'?  Maybe
XEmacs picks this up from the old AUCTeX installation.
it finds it. I attached the file at the end of the email. By doing a C-X D it returns
c:\..\Apps\XEmacs\xemacs-packages\lisp\auctex\

I have indeed a tex-mik.el in C:\Apps\XEmacs\packages\lisp\auctex
which is supposed to be my site package.
But, I don't have a tex-site.el in this directory.

Arnaud.


;;; tex-mik.el --- MikTeX support for AUCTeX.

;; Copyright (C) 1999, 2000, 2001, 2004 Free Software Foundation, Inc.

;; Author: Per Abrahamsen <address@hidden>
;; Maintainer: address@hidden
;; Keywords: tex

;; This file is part of AUCTeX.

;; AUCTeX is free software; you can redistribute it and/or modify it
;; under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.

;; AUCTeX is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
;; General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with AUCTeX; see the file COPYING.  If not, write to the Free
;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
;; 02111-1307, USA.

;;; Commentary:
;;
;; This file contains variables customized for MikTeX.

;;; Code:

 ;; Remove the Queue entry from the default, and make a non-Unix
 ;; specific print entry, assuming that we'll print via gsview32.
(unless (get 'TeX-queue-command 'saved-value)
 (setq TeX-queue-command nil))

(unless (get 'TeX-printer-list 'saved-value)
 (setq TeX-printer-list nil))

(unless (get 'TeX-print-command 'saved-value)
 (setq TeX-print-command
   "start %f"))

(unless (get 'TeX-view-style 'saved-value)
 (setq TeX-view-style '(("^epsf$" "start %f")
            ("." "yap -1 %dS %d"))))

(unless (get 'TeX-output-view-style 'saved-value)
 (setq TeX-output-view-style
   '(("^dvi$" "^pstricks$\\|^pst-\\|^psfrag$" "dvips %d -o && start %f")
     ("^dvi$" "." "yap -1 %dS %d")
     ("^pdf$" "." "start %o")
     ("^html?$" "." "start %o"))))

(unless (get 'TeX-source-specials-view-position-flags 'saved-value)
 (setq TeX-source-specials-view-position-flags "-s %n%b"))

;; Yap does not support a command line option for inverse searching.
;; The editor command has to be configured inside Yap in
;; "View/Options/Inverse Search" instead.
(unless (get 'TeX-source-specials-view-editor-flags 'saved-value)
 (setq TeX-source-specials-view-editor-flags ""))

(provide 'tex-mik)
(require 'tex-site)

;;; tex-mik.el ends here





reply via email to

[Prev in Thread] Current Thread [Next in Thread]