Initial Commit
[packages] / xemacs-packages / x-symbol / lisp / x-symbol-site.el
1 ;;; x-symbol-site.el --- sample customization of package x-symbol
2
3 ;; Copyright (C) 1996-1998 Free Software Foundation, Inc.
4 ;;
5 ;; Author: Christoph Wedler <wedler@users.sourceforge.net>
6 ;; Maintainer: (Please use `M-x x-symbol-package-bug' to contact the maintainer)
7 ;; Version: 3.4
8 ;; Keywords: WYSIWYG, LaTeX, HTML, wp, math, internationalization
9 ;; X-URL: http://x-symbol.sourceforge.net/
10
11 ;; This program is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15 ;;
16 ;; This program is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20 ;;
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with this program; if not, write to the Free Software
23 ;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24
25 ;;; Commentary:
26
27 ;; If you want to use package x-symbol, please visit the URL (use
28 ;; \\[x-symbol-package-web]) and read the info (use \\[x-symbol-package-info]).
29
30 ;; This file contains the elisp code for the installation of package x-symbol.
31 ;; Copy the first lines of the code, which are also mentioned in the
32 ;; installation instructions, into your `~/.emacs' or `default.el'.  The direct
33 ;; use of this file via `(load "x-symbol-site")' is deprecated.
34
35 ;;; Code:
36
37 ;;(setq x-symbol-data-directory (expand-file-name "~/.xemacs/etc/x-symbol/"))
38 (unless (featurep 'mule) (setq x-symbol-compose-key '(multi-key)))
39 (require 'x-symbol-hooks)
40 (x-symbol-initialize)
41
42 ;; Use GNUs make for creation of executables:
43 ;;(defvar x-symbol-exec-compile-command "gmake -k")
44
45 ;; Do not expand \FROM to \TO if we have an abbreviation from FROM to TO:
46 ;;(custom-set-variables '(words-include-escapes t))
47
48 ;; Set this if your normal font does not have registry iso8859-1:
49 ;;(setq x-symbol-default-coding 'iso-8859-2) ; but not with Mule!
50
51 ;; If you run x-symbol on tty, but never use \usepackage[latinN]{inputenc}
52 ;; where N does not correspond to your "normal" font (e.g., if you only use
53 ;; \usepackage[latin1]{inputenc}):
54 ;;(setq x-symbol-latin-force-use nil)
55
56 ;; If you would use XEmacs/Mule just for package X-Symbol
57 ;;(setq x-symbol-mule-change-default-face t)
58
59 ;; psgml-html:
60 ;;(setq html-auto-sgml-entity-conversion nil) ; the default
61
62 ;; If you `isearch' for x-symbol characters, it is a good idea to remove any
63 ;; font property from the `isearch' face (the same for highlight), this could
64 ;; be a problem with B/W monitors: -------------------------------------------
65 (remove-specifier (get (get-face 'isearch) 'font))
66 (set-face-foreground 'isearch "white" nil '(mono))
67 (set-face-background 'isearch "black" nil '(mono))
68 (remove-specifier (get (get-face 'highlight) 'font))
69 (set-face-underline-p 'highlight t nil '(mono))
70 ;; Check also the faces `primary-selection', `secondary-selection',
71 ;; `underline', `paren-match', `paren-blink-off', `paren-mismatch'.  Thanks to
72 ;; Solofo Ramangalahy <solofo@mpi-sb.mpg.de> for this list.
73
74 ;;; Local IspellPersDict: .ispell_xsymb
75 ;;; x-symbol-site.el ends here