blob: 4e48ab50efad65ab4512a3202f0bdf94a8ed30e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
;; $Id: dump-xindy.xdy,v 1.2 1996/08/02 17:41:07 kehr Exp $
;; ----------------------------------------------------------------------
;;
;; This file is necessary to dump xindy.
;;
#+CLISP (setq custom:*suppress-check-redefinition* t)
(load 'base)
(load 'locref)
(load 'idxstyle)
(load 'index)
(load 'version)
(load 'markup)
(load "defaults.xdy")
(setq *load-verbose* nil)
(shadow 'require)
(lisp:shadowing-import idxstyle:*idxstyle-user-interface-definitions*)
(lisp:import markup:*markup-user-interface-definitions*)
(lisp:import index:*raw-index-interface-definitions*)
;; Install the break-driver if its feature exists.
#+:BREAK-DRIVER
(setq *break-driver* #'xindy:*break-driver*)
(gc)
(saveinitmem "xindy.mem" :quiet t)
(exit)
|