yatex

changeset 407:b423cf9b35ee dev

Revision number changed
author HIROSE Yuuji <yuuji@gentei.org>
date Sun, 18 Jan 2015 23:42:31 +0900
parents acfa7d11b5c3
children 2857cac50a67
files yatex.el
diffstat 1 files changed, 9 insertions(+), 5 deletions(-) [+]
line diff
     1.1 --- a/yatex.el	Sun Jan 18 23:24:41 2015 +0900
     1.2 +++ b/yatex.el	Sun Jan 18 23:42:31 2015 +0900
     1.3 @@ -1,6 +1,6 @@
     1.4  ;;; yatex.el --- Yet Another tex-mode for emacs //–ì’¹// -*- coding: sjis -*-
     1.5  ;;; (c)1991-2015 by HIROSE Yuuji.[yuuji@yatex.org]
     1.6 -;;; Last modified Sun Jan 18 22:22:42 2015 on firestorm
     1.7 +;;; Last modified Sun Jan 18 23:41:01 2015 on firestorm
     1.8  ;;; $Id$
     1.9  ;;; The latest version of this software is always available at;
    1.10  ;;; http://www.yatex.org/
    1.11 @@ -8,7 +8,7 @@
    1.12  ;;; Code:
    1.13  (require 'comment)
    1.14  (require 'yatexlib)
    1.15 -(defconst YaTeX-revision-number "1.78.7"
    1.16 +(defconst YaTeX-revision-number "1.78.8"
    1.17    "Revision number of running yatex.el")
    1.18  
    1.19  ;---------- Local variables ----------
    1.20 @@ -1670,17 +1670,18 @@
    1.21    "Operate %# notation."
    1.22    ;;Do not use interactive"r" for the functions which require no mark
    1.23    (interactive)
    1.24 -  (message "!)Edit-%%#! D)VIPDF B)EGIN-END-region P)review L)PR make(I)ndex b)ibtex")
    1.25 +  (message "!)Edit-%%#! D)VIPDF B)EGIN-END-region P)review L)PR M)akeidx b)ibtex dp(I)")
    1.26    (let ((c (or char (read-char))) (string "") key
    1.27  	(b (make-marker)) (e (make-marker)))
    1.28      (save-excursion
    1.29        (cond
    1.30 -       ((rindex "!plib" c)		;Edit %#xxx
    1.31 +       ((rindex "!plmibd" c)		;Edit %#xxx
    1.32  	(setq key (cdr (assq c '((?! . "!")
    1.33  				 (?p . "PREVIEW")
    1.34  				 (?l . "LPR")
    1.35 -				 (?i . "MAKEINDEX")
    1.36 +				 (?m . "MAKEINDEX")
    1.37  				 (?d . "DVIPDF")
    1.38 +				 (?i . "IMAGEDPI")
    1.39  				 (?b . "BIBTEX")))))
    1.40  	(YaTeX-getset-builtin key t))
    1.41  
    1.42 @@ -2604,6 +2605,9 @@
    1.43     ((YaTeX-on-section-command-p YaTeX-command-token-regexp);on any command
    1.44      (YaTeX-kill-section-command (match-beginning 0) arg))
    1.45     ((YaTeX-kill-paren arg))
    1.46 +   ((and (fboundp 'overlays-at)
    1.47 +	 (member YaTeX-on-the-fly-overlay (overlays-at (point))))
    1.48 +    (YaTeX-on-the-fly-cancel))
    1.49     (t (message "I don't know what to kill."))))
    1.50  
    1.51  (defun YaTeX-change-* ()