yatex

changeset 185:85e57c4b27a2 dev

merged
author HIROSE Yuuji <yuuji@koeki-u.ac.jp>
date Wed, 30 Nov 2011 14:22:46 +0900
parents bdc00b25045d 1c41dc8a28eb
children 61996cd55816
files yatex.el
diffstat 4 files changed, 16 insertions(+), 12 deletions(-) [+]
line diff
     1.1 --- a/docs/qanda	Wed Nov 30 14:21:28 2011 +0900
     1.2 +++ b/docs/qanda	Wed Nov 30 14:22:46 2011 +0900
     1.3 @@ -344,8 +344,8 @@
     1.4  		└──────────────┘
     1.5  	
     1.6  	てな具合になるわけですよ。おおかちょええ。さて、小文字program環
     1.7 -	境のマクロ定義を良く見ると環境に渡した foo.c はそのまま
     1.8 -	\label{#1} でラベルとして自動的に打たれることになる。あ、pLaTeX 
     1.9 +	境のマクロ定義を良く見ると環境に渡した foo.c はそのまま自動的に
    1.10 +	\label{#1} でラベルとして打たれることになります。あ、pLaTeX 
    1.11  	のラベルは日本語もOKよ。で、その暗黙のうちに打たれたラベル名を野
    1.12  	鳥に教えるというのがスマートなやり方です。これを定義するのが変数
    1.13  	YaTeX::ref-labeling-regexp-alist-private なり。これには
     2.1 --- a/yatex.el	Wed Nov 30 14:21:28 2011 +0900
     2.2 +++ b/yatex.el	Wed Nov 30 14:22:46 2011 +0900
     2.3 @@ -1,15 +1,15 @@
     2.4  ;;; -*- Emacs-Lisp -*-
     2.5  ;;; Yet Another tex-mode for emacs - //野鳥//
     2.6 -;;; yatex.el rev. 1.74.4
     2.7 +;;; yatex.el rev. 1.74.5
     2.8  ;;; (c)1991-2011 by HIROSE Yuuji.[yuuji@yatex.org]
     2.9 -;;; Last modified Wed Nov 30 14:20:13 2011 on duke
    2.10 +;;; Last modified Wed Nov 30 14:22:06 2011 on duke
    2.11  ;;; $Id$
    2.12  ;;; The latest version of this software is always available at;
    2.13  ;;; http://www.yatex.org/
    2.14  
    2.15  (require 'comment)
    2.16  (require 'yatexlib)
    2.17 -(defconst YaTeX-revision-number "1.74.4"
    2.18 +(defconst YaTeX-revision-number "1.74.5"
    2.19    "Revision number of running yatex.el")
    2.20  
    2.21  ;---------- Local variables ----------
    2.22 @@ -510,7 +510,7 @@
    2.23    (if YaTeX-dos
    2.24        (define-key YaTeX-prefix-map "\C-r"
    2.25  	'(lambda () (interactive)
    2.26 -	   (set-screen-height YaTeX-saved-screen-height) (recenter)))))
    2.27 +	   (YaTeX-set-screen-height YaTeX-saved-screen-height) (recenter)))))
    2.28  
    2.29  (defvar YaTeX-section-completion-map nil
    2.30    "*Key map used at YaTeX completion in the minibuffer.")
    2.31 @@ -692,7 +692,7 @@
    2.32  	))
    2.33    (use-local-map YaTeX-mode-map)
    2.34    (set-syntax-table YaTeX-mode-syntax-table)
    2.35 -  (if YaTeX-dos (setq YaTeX-saved-screen-height (screen-height)))
    2.36 +  (if YaTeX-dos (setq YaTeX-saved-screen-height (YaTeX-screen-height)))
    2.37    (YaTeX-read-user-completion-table)
    2.38    (and (fboundp 'YaTeX-hilit-setup-alist) (YaTeX-hilit-setup-alist))
    2.39    (makunbound 'inenv)
     3.1 --- a/yatexlib.el	Wed Nov 30 14:21:28 2011 +0900
     3.2 +++ b/yatexlib.el	Wed Nov 30 14:22:46 2011 +0900
     3.3 @@ -2,7 +2,7 @@
     3.4  ;;; YaTeX and yahtml common libraries, general functions and definitions
     3.5  ;;; yatexlib.el
     3.6  ;;; (c)1994-2009 by HIROSE Yuuji.[yuuji@yatex.org]
     3.7 -;;; Last modified Fri Feb 18 15:05:08 2011 on firestorm
     3.8 +;;; Last modified Thu Oct 13 09:36:20 2011 on firestorm
     3.9  ;;; $Id$
    3.10  
    3.11  ;; General variables
    3.12 @@ -530,11 +530,15 @@
    3.13  (cond
    3.14   ((fboundp 'screen-height)
    3.15    (fset 'YaTeX-screen-height 'screen-height)
    3.16 -  (fset 'YaTeX-screen-width 'screen-width))
    3.17 +  (fset 'YaTeX-screen-width 'screen-width)
    3.18 +  (fset 'YaTeX-set-screen-height 'set-screen-height)
    3.19 +  (fset 'YaTeX-set-screen-width 'set-screen-width))
    3.20   ((fboundp 'frame-height)
    3.21    (fset 'YaTeX-screen-height 'frame-height)
    3.22 -  (fset 'YaTeX-screen-width 'frame-width))
    3.23 - (t (error "I don't know how to run windows.el on this Emacs...")))
    3.24 +  (fset 'YaTeX-screen-width 'frame-width)
    3.25 +  (fset 'YaTeX-set-screen-height 'set-frame-height)
    3.26 +  (fset 'YaTeX-set-screen-width 'set-frame-width))
    3.27 + (t (error "I don't know how to run YaTeX on this Emacs...")))
    3.28  
    3.29  ;;;###autoload
    3.30  (defun split-window-calculate-height (height)
     4.1 --- a/yatexmth.el	Wed Nov 30 14:21:28 2011 +0900
     4.2 +++ b/yatexmth.el	Wed Nov 30 14:22:46 2011 +0900
     4.3 @@ -2,7 +2,7 @@
     4.4  ;;; YaTeX math-mode-specific functions.
     4.5  ;;; yatexmth.el
     4.6  ;;; (c)1993-2010 by HIROSE Yuuji [yuuji@yatex.org]
     4.7 -;;; Last modified Thu Mar 24 10:30:18 2011 on firestorm
     4.8 +;;; Last modified Fri Oct  7 15:53:34 2011 on firestorm
     4.9  ;;; $Id$
    4.10  
    4.11  ;;; [Customization guide]