yatex

diff yatex23.el @ 340:3206061867ae

let* should be
author HIROSE Yuuji <yuuji@gentei.org>
date Thu, 18 Dec 2014 17:57:46 +0900
parents 9cef5d10a0f1
children 43fb2bf403e4
line diff
     1.1 --- a/yatex23.el	Tue Dec 16 11:12:38 2014 +0900
     1.2 +++ b/yatex23.el	Thu Dec 18 17:57:46 2014 +0900
     1.3 @@ -1,6 +1,6 @@
     1.4  ;;; yatex23.el --- YaTeX facilities for Emacs 23 or later -*- coding: sjis -*-
     1.5  ;;; (c)2014 by HIROSE Yuuji.[yuuji@yatex.org]
     1.6 -;;; Last modified Tue Dec 16 11:08:10 2014 on firestorm
     1.7 +;;; Last modified Tue Dec 16 11:29:14 2014 on firestorm
     1.8  ;;; $Id:$
     1.9  
    1.10  ;;; Code:
    1.11 @@ -18,8 +18,8 @@
    1.12         ((memq action '(copy link move private))
    1.13  	(cond
    1.14  	 ((string-match "\\.\\(jpe?g\\|png\\|gif\\|bmp\\|tiff?\\|e?ps\\|pdf\\)$" path)
    1.15 -	  (insert "\\includegraphics"
    1.16 -		  "{" (YaTeX::includegraphics 1 path t) "}")
    1.17 +	  (insert "\\includegraphics")
    1.18 +	  (insert "{" (YaTeX::includegraphics 1 path t) "}")
    1.19  	  (YaTeX-package-auto-usepackage "includegraphics" 'section))
    1.20  	 ((string-match "\\.tex$" path)
    1.21  	  (insert "\\include{" path "}"))