# HG changeset patch # User HIROSE Yuuji # Date 1545735778 -32400 # Node ID a2ef47ba407fbd44d7d4e70591977a2c07deef14 # Parent f5d0550cbdce94fd0b23ca8c10e7c1ade1b9bad3 Why 'insert-string was used?? diff -r f5d0550cbdce -r a2ef47ba407f yatexmth.el --- a/yatexmth.el Mon Dec 24 21:10:27 2018 +0900 +++ b/yatexmth.el Tue Dec 25 20:02:58 2018 +0900 @@ -1,7 +1,7 @@ ;;; yatexmth.el --- YaTeX math-mode-specific functions -*- coding: sjis -*- ;;; -;;; (c)1993-2017 by HIROSE Yuuji [yuuji@yatex.org] -;;; Last modified Sat Feb 24 16:40:22 2018 on firestorm +;;; (c)1993-2018 by HIROSE Yuuji [yuuji@yatex.org] +;;; Last modified Tue Dec 25 20:02:12 2018 on firestorm ;;; $Id$ ;;; Commentary: @@ -1014,7 +1014,7 @@ (t (delete-region (- (point) length) (- (point) paren-length)) (backward-char paren-length))) - (insert-string newsize) + (insert newsize) (if big-p (insert ?l)) (unwind-protect (progn @@ -1029,7 +1029,7 @@ (t (delete-region (- (point) length) (- (point) paren-length)) (backward-char paren-length) - (insert-string newsize) + (insert newsize) (if big-p (insert ?r)) (forward-char paren-length))) (if (string= lr "l") (backward-list)))