[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[AUCTeX-diffs] Changes to auctex/tex.el
From: |
Arne Jørgensen |
Subject: |
[AUCTeX-diffs] Changes to auctex/tex.el |
Date: |
Wed, 12 Oct 2005 09:04:03 -0400 |
Index: auctex/tex.el
diff -u auctex/tex.el:5.539 auctex/tex.el:5.540
--- auctex/tex.el:5.539 Thu Oct 6 20:35:39 2005
+++ auctex/tex.el Wed Oct 12 13:03:58 2005
@@ -693,6 +693,15 @@
(+ (/ (- outer-priority inner-priority) 2) inner-priority))
(t TeX-overlay-priority-step)))) )
+
+(if (fboundp 'completing-read-multiple)
+ (defalias 'TeX-completing-read-multiple 'completing-read-multiple)
+ (defun TeX-completing-read-multiple
+ (prompt table &optional predicate require-match initial-input
+ hist def inherit-input-method)
+ "Poor mans implementation of Emacs' `completing-read-multiple' for XEmacs."
+ (multi-prompt "," nil prompt table predicate require-match initial-input
hist)))
+
;;; Special support for GNU Emacs
(unless (featurep 'xemacs)