| 1826 |      1 | #!/bin/bash
 | 
|  |      2 | ################################################
 | 
|  |      3 | # Title:      Tools/8bit/xemacs/isa_xemacs
 | 
|  |      4 | # ID:         $Id$
 | 
|  |      5 | # Author:     Franz Regensburger
 | 
|  |      6 | # Copyright   1995 TU Muenchen
 | 
|  |      7 | #
 | 
|  |      8 | # isa_xemacs -- xemacs for Isabelle environment
 | 
|  |      9 | #
 | 
|  |     10 | # Franz Regensburger <regensbu@informatik.tu-muenchen.de> 22.3.95
 | 
|  |     11 | # 
 | 
|  |     12 | ###############################################
 | 
|  |     13 | #
 | 
|  |     14 | # The script `isa_xemacs' opens the XEmacs editor with the special
 | 
|  |     15 | # 8bit font for Isabelle. It also provides keyboard bindings for the
 | 
|  |     16 | # access to the graphical characters.
 | 
|  |     17 | #
 | 
|  |     18 | # The script is configured by the master makefile ../Makefile and
 | 
|  |     19 | # the perl script ../bin/gen-isa_xemacs which reads the configuration file
 | 
|  |     20 | #  ../config/key-table.inp. Edit these files to make changes!
 | 
|  |     21 | #
 | 
|  |     22 | ####################################################
 | 
|  |     23 | # do not configure macros below, use master Makefile
 | 
|  |     24 | ####################################################
 | 
|  |     25 | 
 | 
|  |     26 | # emacs command name. Name of your emacs executable 
 | 
|  |     27 | ENAME=xemacs
 | 
|  |     28 | 
 | 
|  |     29 | ###############################################
 | 
|  |     30 | # do not edit below
 | 
|  |     31 | ###############################################
 | 
|  |     32 | 
 | 
|  |     33 | # prefix of init file and title of emacs window
 | 
|  |     34 | PREFIX=isa_xemacs
 | 
|  |     35 | 
 | 
|  |     36 | # Name of the directory where this file is located
 | 
|  |     37 | EDIR=xemacs
 | 
|  |     38 | 
 | 
|  |     39 | #  emacs init file for Isabelle
 | 
|  |     40 | INITFILE=$ISABELLE8BIT/$EDIR/$PREFIX.emacs
 | 
|  |     41 | 
 | 
| 4929 |     42 | # pop up isabelle emacs
 | 
|  |     43 | $ENAME -T "$PREFIX" -fn isabelle14 -l $INITFILE $*
 | 
| 1826 |     44 | 
 |