source: projects/specs/trunk/y/yatex/yatex-init.el @ 2750

Revision 2750, 814 bytes checked in by munepi, 13 years ago (diff)

updated emacs, emacs24, wl, yatex, auctex, IIIMECF; added wl-beta; supported new vine-default

Line 
1;;
2;; yatex-init.el
3;;
4;;      for Vine Linux with emacsen-common
5;;      Munehiro Yamamoto <munepi@vinelinux.org>
6
7(defcustom vine-default-yatex t
8  "A boolean for vine-default-yatex"
9  :type 'boolean)
10
11(defcustom vine-default-yahtml t
12  "A boolean for vine-default-yahtml"
13  :type 'boolean)
14
15(add-hook 'vine-default-setup-hook
16          (lambda()
17            (when vine-default-yatex
18              (message "Loading vine-default-yatex ...")
19              (drop-vine-default-from-load-path "/auctex");; /auctex /auctex/images;; "not /auctex$"
20              (drop-vine-default-from-load-path "/preview-latex");; /preview-latex /preview-latex/images;; not "/preview-latex$"
21              (require 'vine-default-yatex))
22            (when vine-default-yahtml
23              (message "Loading vine-default-yahtml ...")
24              (require 'vine-default-yahtml))
25            ))
26
27;;; end of file
Note: See TracBrowser for help on using the repository browser.