yatex

changeset 558:a2ef47ba407f dev

Why 'insert-string was used??
author HIROSE Yuuji <yuuji@gentei.org>
date Tue, 25 Dec 2018 20:02:58 +0900
parents f5d0550cbdce
children 3f5ce5a755c4
files yatexmth.el
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line diff
     1.1 --- a/yatexmth.el	Mon Dec 24 21:10:27 2018 +0900
     1.2 +++ b/yatexmth.el	Tue Dec 25 20:02:58 2018 +0900
     1.3 @@ -1,7 +1,7 @@
     1.4  ;;; yatexmth.el --- YaTeX math-mode-specific functions -*- coding: sjis -*-
     1.5  ;;; 
     1.6 -;;; (c)1993-2017 by HIROSE Yuuji [yuuji@yatex.org]
     1.7 -;;; Last modified Sat Feb 24 16:40:22 2018 on firestorm
     1.8 +;;; (c)1993-2018 by HIROSE Yuuji [yuuji@yatex.org]
     1.9 +;;; Last modified Tue Dec 25 20:02:12 2018 on firestorm
    1.10  ;;; $Id$
    1.11  
    1.12  ;;; Commentary:
    1.13 @@ -1014,7 +1014,7 @@
    1.14         (t
    1.15  	(delete-region (- (point) length) (- (point) paren-length))
    1.16  	(backward-char paren-length)))
    1.17 -      (insert-string newsize)
    1.18 +      (insert newsize)
    1.19        (if big-p (insert ?l))
    1.20        (unwind-protect
    1.21  	  (progn
    1.22 @@ -1029,7 +1029,7 @@
    1.23  	     (t
    1.24  	      (delete-region (- (point) length) (- (point) paren-length))
    1.25  	      (backward-char paren-length)
    1.26 -	      (insert-string newsize)
    1.27 +	      (insert newsize)
    1.28  	      (if big-p (insert ?r))
    1.29  	      (forward-char paren-length)))
    1.30  	    (if (string= lr "l") (backward-list)))