yatex

changeset 388:ad62fb00a393 dev

Update command names
author HIROSE Yuuji <yuuji@gentei.org>
date Wed, 07 Jan 2015 09:09:15 +0900
parents 04ee01ddb7ab
children 3a235b173835
files yatexprc.el
diffstat 1 files changed, 10 insertions(+), 10 deletions(-) [+]
line diff
     1.1 --- a/yatexprc.el	Tue Jan 06 23:22:15 2015 +0900
     1.2 +++ b/yatexprc.el	Wed Jan 07 09:09:15 2015 +0900
     1.3 @@ -1,7 +1,7 @@
     1.4  ;;; yatexprc.el --- YaTeX process handler
     1.5  ;;; 
     1.6  ;;; (c)1993-2015 by HIROSE Yuuji.[yuuji@yatex.org]
     1.7 -;;; Last modified Tue Jan  6 08:56:01 2015 on firestorm
     1.8 +;;; Last modified Wed Jan  7 09:06:54 2015 on firestorm
     1.9  ;;; $Id$
    1.10  
    1.11  ;;; Code:
    1.12 @@ -9,10 +9,10 @@
    1.13  (require 'yatexlib)
    1.14  
    1.15  (defvar YaTeX-typeset-process nil
    1.16 -  "Process identifier for jlatex")
    1.17 +  "Process identifier for latex")
    1.18  
    1.19  (defvar YaTeX-typeset-buffer "*YaTeX-typesetting*"
    1.20 -  "Process buffer for jlatex")
    1.21 +  "Process buffer for latex")
    1.22  
    1.23  (defvar YaTeX-typeset-buffer-syntax nil
    1.24    "*Syntax table for typesetting buffer")
    1.25 @@ -59,7 +59,7 @@
    1.26  (defvar YaTeX-typeset-consumption nil)
    1.27  (make-variable-buffer-local 'YaTeX-typeset-consumption)
    1.28  (defun YaTeX-typeset (command buffer &optional prcname modename ppcmd)
    1.29 -  "Execute jlatex (or other) to LaTeX typeset."
    1.30 +  "Execute latex command (or other) to LaTeX typeset."
    1.31    (interactive)
    1.32    (save-excursion
    1.33      (let ((p (point)) (window (selected-window)) execdir (cb (current-buffer))
    1.34 @@ -1209,9 +1209,9 @@
    1.35  	(widen))))
    1.36  
    1.37  (defvar YaTeX-dvi2-command-ext-alist
    1.38 - '(("[agx]dvi\\|dviout" . ".dvi")
    1.39 + '(("[agxk]dvi\\|dviout" . ".dvi")
    1.40     ("ghostview\\|gv" . ".ps")
    1.41 -   ("acroread\\|xpdf\\|pdfopen\\|Preview\\|TeXShop\\|Skim\\|evince\\|mupdf\\|zathura\\|okular" . ".pdf")))
    1.42 +   ("acroread\\|[xk]pdf\\|pdfopen\\|Preview\\|TeXShop\\|Skim\\|evince\\|mupdf\\|zathura\\|okular" . ".pdf")))
    1.43  
    1.44  (defun YaTeX-get-preview-file-name (&optional preview-command)
    1.45    "Get file name to preview by inquiring YaTeX-get-latex-command"
    1.46 @@ -1238,12 +1238,12 @@
    1.47  strings are assumed to be the latex-command and arguments.  The
    1.48  default value of latex-command is:
    1.49  	tex-command FileName
    1.50 -and if you write \"%#!jlatex\" in the beginning of certain line.
    1.51 -	\"jlatex \" FileName
    1.52 +and if you write \"%#!platex\" in the beginning of certain line.
    1.53 +	\"platex \" FileName
    1.54  will be the latex-command,
    1.55 -and you write \"%#!jlatex main.tex\" on some line and argument SWITCH
    1.56 +and you write \"%#!platex main.tex\" on some line and argument SWITCH
    1.57  is non-nil, then
    1.58 -	\"jlatex main.tex\"
    1.59 +	\"platex main.tex\"
    1.60  
    1.61  will be given to the shell."
    1.62    (let (parent tparent magic)