1826
|
1 |
#!/bin/bash
|
|
2 |
################################################
|
|
3 |
# Title: Tools/8bit/gnu_emacs/isa_gnu_emacs
|
|
4 |
# ID: $Id$
|
|
5 |
# Author: Ralf S. Engelschall
|
|
6 |
# Copyright 1995 TU Muenchen
|
|
7 |
#
|
|
8 |
# isa_gnu_emacs -- emacs.19.27 for Isabelle environment
|
|
9 |
# 940510, Ralf S. Engelschall, <rse@en.muc.de>
|
|
10 |
#
|
|
11 |
# adapted for isabelle
|
|
12 |
# by Franz Regensburger <regensbu@informatik.tu-muenchen.de> 22.03.95
|
|
13 |
#
|
|
14 |
###############################################
|
|
15 |
#
|
|
16 |
# The script `isa_gnu_emacs' opens the GNU Emacs editor with the special
|
|
17 |
# 8bit font for Isabelle. It also provides keyboard bindings for the
|
|
18 |
# access to the graphical characters.
|
|
19 |
#
|
|
20 |
# The script is configured by the master makefile ../Makefile and
|
|
21 |
# the perl script ../bin/gen-isa_gnu_emacs which reads the configuration file
|
|
22 |
# ../config/key-table.inp. Edit these files to make changes!
|
|
23 |
#
|
|
24 |
####################################################
|
|
25 |
# do not configure macros below, use master Makefile
|
|
26 |
####################################################
|
|
27 |
|
|
28 |
|
|
29 |
# emacs command name. Name of your emacs executable
|
|
30 |
ENAME=emacs
|
|
31 |
|
|
32 |
#users init file ($HOME is added). This file is loaded after
|
|
33 |
#the init file $PREFIX.emacs
|
|
34 |
INIT=.emacs_gnu_isa
|
|
35 |
|
|
36 |
###############################################
|
|
37 |
# do not edit below
|
|
38 |
###############################################
|
|
39 |
|
|
40 |
# prefix of init file and title of emacs window
|
|
41 |
PREFIX=isa_gnu_emacs
|
|
42 |
|
|
43 |
# Name of the directory where this file is located
|
|
44 |
EDIR=gnu_emacs
|
|
45 |
|
|
46 |
# emacs init file for Isabelle
|
|
47 |
INITFILE=$ISABELLE8BIT/$EDIR/$PREFIX.emacs
|
|
48 |
|
|
49 |
# pop up isabelle emacs
|
|
50 |
$ENAME \
|
|
51 |
-name "$PREFIX" \
|
|
52 |
-l $INITFILE -l "$HOME/$INIT"\
|
|
53 |
$* 2>/dev/null
|
|
54 |
|
|
55 |
|
|
56 |
|
|
57 |
|