[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[AUCTeX-commit] Changes to auctex/tex.el,v
From: |
David Kastrup |
Subject: |
[AUCTeX-commit] Changes to auctex/tex.el,v |
Date: |
Sun, 25 Feb 2007 15:32:30 +0000 |
CVSROOT: /sources/auctex
Module name: auctex
Changes by: David Kastrup <dak> 07/02/25 15:32:30
Index: tex.el
===================================================================
RCS file: /sources/auctex/auctex/tex.el,v
retrieving revision 5.603
retrieving revision 5.604
diff -u -b -r5.603 -r5.604
--- tex.el 15 Feb 2007 07:01:49 -0000 5.603
+++ tex.el 25 Feb 2007 15:32:30 -0000 5.604
@@ -681,6 +681,13 @@
(when (featurep 'xemacs)
+ (defun TeX-read-string
+ (prompt &optional initial-input history default-value)
+ (condition-case nil
+ (read-string prompt initial-input history default-value t)
+ (wrong-number-of-arguments
+ (read-string prompt initial-input history default-value))))
+
(defun TeX-mark-active ()
;; In Lucid (mark) returns nil when not active.
(if zmacs-regions
@@ -765,6 +772,9 @@
(unless (featurep 'xemacs)
+ (defun TeX-read-string (prompt &optional initial-input history default-value)
+ (read-string prompt initial-input history default-value t))
+
(defun TeX-mark-active ()
;; In FSF 19 mark-active indicates if mark is active.
mark-active)
- [AUCTeX-commit] Changes to auctex/tex.el,v, Ralf Angeli, 2007/02/04
- [AUCTeX-commit] Changes to auctex/tex.el,v, Ralf Angeli, 2007/02/10
- [AUCTeX-commit] Changes to auctex/tex.el,v, Ralf Angeli, 2007/02/13
- [AUCTeX-commit] Changes to auctex/tex.el,v, Masayuki Ataka, 2007/02/15
- [AUCTeX-commit] Changes to auctex/tex.el,v,
David Kastrup <=