summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/texsis/base/texsis.el
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2009-05-24 00:31:38 +0000
committerKarl Berry <karl@freefriends.org>2009-05-24 00:31:38 +0000
commit3db8854079e5f66bff8e115d3e53b74a9e6b1b94 (patch)
treec76f77b61118c210746b2b9a513369908249ae7e /Master/texmf-dist/doc/texsis/base/texsis.el
parent631b5bbb9b2878fe0c658883d594124839413456 (diff)
move doc for lesser-used formats to subdirs
git-svn-id: svn://tug.org/texlive/trunk@13440 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/texsis/base/texsis.el')
-rw-r--r--Master/texmf-dist/doc/texsis/base/texsis.el46
1 files changed, 0 insertions, 46 deletions
diff --git a/Master/texmf-dist/doc/texsis/base/texsis.el b/Master/texmf-dist/doc/texsis/base/texsis.el
deleted file mode 100644
index 41e251e31b0..00000000000
--- a/Master/texmf-dist/doc/texsis/base/texsis.el
+++ /dev/null
@@ -1,46 +0,0 @@
-;; file: texsis.el (TeXsis version 2.18)
-;; @(#) $Revision: 18.3 $ / $Date: 1998/09/26 23:57:01 $ / $Author: myers $
-;;======================================================================*
-; GNU emacs support for TeXsis (A TeX macro package for Physicists)
-;
-; The function texsis-mode makes TeXsis the version of TeX run by the
-; commands TeX-buffer and TeX-region. If the mode is not already
-; "TeX" then plain-tex-mode is invoked first.
-;
-; The function look-for-texsis looks for "\texsis" (or actually, just
-; the word "texsis") and sets texsis-mode if such is found. Put this
-; in your TeX-mode-hook to automatically set texsis-mode for TeXsis files.
-;
-; This file is a part of TeXsis.
-;
-; Eric Myers, University of Texas at Austin, 22 September 1990
-; (with help from lion@navier.stanford.edu -- thanks, leo.)
-;======================================================================*
-
-(defun look-for-texsis ()
- "search for \"texsis\" within first 256 characters of the file.
-If found, turn on texsis-mode."
- (goto-char (point-min))
- (if (search-forward "texsis" (min (point-max) (+ (point-min) 255)) t)
- (texsis-mode))
-)
-
-
-(defun texsis-mode () "TeX mode for processing TeXsis files."
- (if (or (equal mode-name "TeX") (equal mode-name "TeXsis") )
- (progn
- (setq TeX-command "texsis") ;; emacs 18.xx
- (setq tex-command "texsis") ;; emacs 19.xx
- (setq mode-name "TeXsis") ;; mode name is TeXsis
- (goto-char (point-min))
- (message "TeXsis mode.")
- )
-
- ;; if not a TeX mode then first invoke plain-tex-mode
-
- (progn
- (plain-tex-mode)
- (if (not (equal mode-name "TeXsis")) (texsis-mode) )
- )
- )
-) \ No newline at end of file