yatex
changeset 231:d329bbed72cd dev
MAKEINDEX's short-cut should be `i'.
author | yuuji@gentei.org |
---|---|
date | Tue, 24 Jan 2012 09:45:23 +0900 |
parents | 7f4a5db88fbb |
children | b46b927914c8 |
files | yatex.el |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line diff
1.1 --- a/yatex.el Tue Jan 24 09:44:42 2012 +0900 1.2 +++ b/yatex.el Tue Jan 24 09:45:23 2012 +0900 1.3 @@ -2,7 +2,7 @@ 1.4 ;;; Yet Another tex-mode for emacs - //–ì’¹// 1.5 ;;; yatex.el rev. 1.75.2 1.6 ;;; (c)1991-2012 by HIROSE Yuuji.[yuuji@yatex.org] 1.7 -;;; Last modified Mon Jan 23 01:19:32 2012 on firestorm 1.8 +;;; Last modified Mon Jan 23 07:58:11 2012 on firestorm 1.9 ;;; $Id$ 1.10 ;;; The latest version of this software is always available at; 1.11 ;;; http://www.yatex.org/ 1.12 @@ -1639,16 +1639,16 @@ 1.13 "Operate %# notation." 1.14 ;;Do not use interactive"r" for the functions which require no mark 1.15 (interactive) 1.16 - (message "!)Edit-%%#! B)EGIN-END-region P)review L)Edit-%%#LPR M)akeindex B)ibtex") 1.17 + (message "!)Edit-%%#! B)EGIN-END-region P)review L)Edit-%%#LPR make(I)ndex B)ibtex") 1.18 (let ((c (or char (read-char))) (string "") key 1.19 (b (make-marker)) (e (make-marker))) 1.20 (save-excursion 1.21 (cond 1.22 - ((rindex "!plmb" c) ;Edit %#xxx 1.23 + ((rindex "!plib" c) ;Edit %#xxx 1.24 (setq key (cdr (assq c '((?! . "!") 1.25 (?p . "PREVIEW") 1.26 (?l . "LPR") 1.27 - (?m . "MAKEINDEX") 1.28 + (?i . "MAKEINDEX") 1.29 (?b . "BIBTEX"))))) 1.30 (YaTeX-getset-builtin key t)) 1.31