yatex

diff yatexmth.el @ 70:44e3a5e1e883

Fix makefile for Windows Brush up label completion \cite completion Support much more about LaTeX2e --- [yahtml] English Info (By Jun Ohya) Automatic pixel size detection for <img src="..."> Aware global-class of css definition & for char-entity reference
author yuuji
date Sun, 09 Apr 2000 03:37:47 +0000
parents 807c1e7e68b7
children 0aaebd07dad0
line diff
     1.1 --- a/yatexmth.el	Thu Jul 15 04:58:26 1999 +0000
     1.2 +++ b/yatexmth.el	Sun Apr 09 03:37:47 2000 +0000
     1.3 @@ -1,8 +1,8 @@
     1.4  ;;; -*- Emacs-Lisp -*-
     1.5  ;;; YaTeX math-mode-specific functions.
     1.6  ;;; yatexmth.el
     1.7 -;;; (c )1993-1999 by HIROSE Yuuji [yuuji@gentei.org]
     1.8 -;;; Last modified Thu Apr 29 17:39:10 1999 on firestorm
     1.9 +;;; (c )1993-1999 by HIROSE Yuuji [yuuji@yatex.org]
    1.10 +;;; Last modified Thu Sep 23 16:39:40 1999 on firestorm
    1.11  ;;; $Id$
    1.12  
    1.13  ;;; [Customization guide]
    1.14 @@ -551,7 +551,7 @@
    1.15  (defun YaTeX-math-show-menu (match-str)
    1.16    (save-window-excursion
    1.17      (YaTeX-showup-buffer YaTeX-math-menu-buffer nil t)
    1.18 -    (let ((maxcols (max 1 (/ (screen-width) YaTeX-math-sign-width)))
    1.19 +    (let ((maxcols (max 1 (/ (YaTeX-screen-width) YaTeX-math-sign-width)))
    1.20  	  (case-fold-search nil)
    1.21  	  (cols 0) (list alist) command)
    1.22        (erase-buffer)
    1.23 @@ -560,7 +560,7 @@
    1.24        (insert YaTeX-math-indicator "\t")
    1.25        (insert YaTeX-math-indicator)
    1.26        (newline 1)
    1.27 -      (insert-char ?- (1- (screen-width)))
    1.28 +      (insert-char ?- (1- (YaTeX-screen-width)))
    1.29        (newline 1)
    1.30        (while list
    1.31  	(if (string-match match-str (car (car list)))