yatex

diff yatexsec.el @ 53:5f4b18da14b3

Fix functions relating YaTeX-beginning-of-environment or YaTeX-end-of-environment. Line indentation by TAB much improved. Functions that work at enclosing environments, YaTeX-enclose-<ENVNAME>, introduced. Functions for enclosing verbatim and equations are supplied. SPC, DEL, +, - in YaTeX-hierarchy buffer. Compensate odd highlighting of hilit19.
author yuuji
date Thu, 02 Feb 1995 17:18:29 +0000
parents eb0512bfcb7f
children 3a7c0c2bf16d
line diff
     1.1 --- a/yatexsec.el	Fri Nov 25 08:26:13 1994 +0000
     1.2 +++ b/yatexsec.el	Thu Feb 02 17:18:29 1995 +0000
     1.3 @@ -2,7 +2,7 @@
     1.4  ;;; YaTeX sectioning browser.
     1.5  ;;; yatexsec.el
     1.6  ;;; (c ) 1994 by HIROSE Yuuji [yuuji@ae.keio.ac.jp]
     1.7 -;;; Last modified Fri Nov 25 04:46:42 1994 on VFR
     1.8 +;;; Last modified Tue Jan 24 23:19:14 1995 on VFR
     1.9  ;;; $Id$
    1.10  
    1.11  (defvar YaTeX-sectioning-level
    1.12 @@ -152,7 +152,8 @@
    1.13    (interactive "p")
    1.14    (if (eq (selected-window) (minibuffer-window))
    1.15        (let*((command (buffer-string))
    1.16 -	    (aster (equal (substring command -1) "*"))
    1.17 +	    (aster (and (string< "" command)
    1.18 +			(equal (substring command -1) "*")))
    1.19  	    (command (if aster (substring command 0 -1) command))
    1.20  	    (alist YaTeX-sectioning-level)
    1.21  	    (level 0))