emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] 97/299: Replace completing-read-multiple with TeX-completing-read


From: Stefan Monnier
Subject: [elpa] 97/299: Replace completing-read-multiple with TeX-completing-read-multiple.
Date: Sun, 02 Nov 2014 03:10:35 +0000

monnier pushed a commit to branch externals/auctex
in repository elpa.

commit f75775dbf83b78916654da030fb1e30dfa5b3ed4
Author: Mosè Giordano <address@hidden>
Date:   Mon Apr 15 14:56:58 2013 +0200

    Replace completing-read-multiple with TeX-completing-read-multiple.
    
    * style/pst-node.el (LaTeX-pstnode-env-psmatrix): Replace
    `completing-read-multiple' with `TeX-completing-read-multiple'.
    
    * style/pstricks.el (LaTeX-package-parameters): Ditto.
    
    * style/siunitx.el (LaTeX-arg-siunitx-unit): Ditto.
---
 ChangeLog         |   10 ++++++++++
 style/pst-node.el |    6 +++---
 style/pstricks.el |    4 ++--
 style/siunitx.el  |    2 +-
 4 files changed, 16 insertions(+), 6 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 739010c..ad3f06d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2013-04-15  Mos� Giordano  <address@hidden>
+
+       * style/pst-node.el (LaTeX-pstnode-env-psmatrix): Replace
+       `completing-read-multiple' with `TeX-completing-read-multiple'.
+
+       * style/pstricks.el (LaTeX-package-parameters): Ditto.
+
+       * style/siunitx.el (LaTeX-arg-siunitx-unit): Replace
+       `completing-read-multiple' with `TeX-completing-read-multiple'.
+
 2013-04-15  Tassilo Horn  <address@hidden>
 
        * tex.el (TeX-source-correlate-sync-source): Raise frame when
diff --git a/style/pst-node.el b/style/pst-node.el
index d5ff274..6475e7b 100644
--- a/style/pst-node.el
+++ b/style/pst-node.el
@@ -1,6 +1,6 @@
 ;;; pst-node.el --- AUCTeX style for `pst-node.sty'
 
-;; Copyright (C) 2007 Free Software Foundation, Inc.
+;; Copyright (C) 2007, 2013 Free Software Foundation, Inc.
 
 ;; Author: Holger Sparr <address@hidden>
 ;; Created: 21 Jun 2007
@@ -119,8 +119,8 @@
 ;;; Environments
 (defun LaTeX-pstnode-env-psmatrix (env)
   "Return psmatrix environment with arguments."
-  (let ((opt (completing-read-multiple "Options: "
-                                       LaTeX-pstnode-psmatrix-list)))
+  (let ((opt (TeX-completing-read-multiple "Options: "
+                                          LaTeX-pstnode-psmatrix-list)))
     (LaTeX-insert-environment env opt)))
 
 (TeX-add-style-hook
diff --git a/style/pstricks.el b/style/pstricks.el
index 33a1abd..20dd19c 100644
--- a/style/pstricks.el
+++ b/style/pstricks.el
@@ -1,6 +1,6 @@
 ;;; pstricks.el --- AUCTeX style for the `pstricks' package.
 
-;; Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+;; Copyright (C) 2007, 2009, 2013 Free Software Foundation, Inc.
 
 ;; Author: Holger Sparr <address@hidden>
 ;; Maintainer: address@hidden
@@ -199,7 +199,7 @@ package PNAME"
       (setq preparam (funcall fask preparam)))
     ;;
     (setq param
-          (completing-read-multiple
+          (TeX-completing-read-multiple
            (concat
             "Params (use <Up,Down> for history or RET for choices): ")
            nlist nil nil nil hlist))
diff --git a/style/siunitx.el b/style/siunitx.el
index c21f3ca..81981fb 100644
--- a/style/siunitx.el
+++ b/style/siunitx.el
@@ -72,7 +72,7 @@ non-nil, add the chosen unit to the list of defined units."
     (define-key minibuffer-local-completion-map " " nil)
     (define-key minibuffer-local-must-match-map " " nil)
     (let ((unit (mapconcat 'identity
-                          (completing-read-multiple
+                          (TeX-completing-read-multiple
                            (TeX-argument-prompt optional prompt "Unit")
                            (LaTeX-siunitx-unit-list) nil nil initial-input)
                           crm-separator)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]