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

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

[elpa] externals/auctex c332551 7/8: Add choices for the values of La/Te


From: Stefan Monnier
Subject: [elpa] externals/auctex c332551 7/8: Add choices for the values of La/TeX-Omega-command.
Date: Fri, 05 Dec 2014 20:00:53 +0000

branch: externals/auctex
commit c332551d2e1e3b796a1748b892708ec13829cab8
Author: Mosè Giordano <address@hidden>
Date:   Thu Dec 4 23:06:18 2014 +0100

    Add choices for the values of La/TeX-Omega-command.
    
    * tex.el (TeX-Omega-command): Add aleph and omega choices.
    (LaTeX-Omega-command): Add lamed and lambda choices.  (Bug#19260)
---
 ChangeLog |    5 +++++
 tex.el    |    8 ++++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index b8d2696..5171a72 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-12-04  Mos� Giordano  <address@hidden>
+
+       * tex.el (TeX-Omega-command): Add aleph and omega choices.
+       (LaTeX-Omega-command): Add lamed and lambda choices.  (Bug#19260)
+
 2014-12-03  Mos� Giordano  <address@hidden>
 
        * README.GIT: Describe branches of the repository.
diff --git a/tex.el b/tex.el
index 7dfba89..a81b7d0 100644
--- a/tex.el
+++ b/tex.el
@@ -67,7 +67,9 @@
 (defcustom TeX-Omega-command "omega"
   "Command to run plain TeX on Omega."
   :group 'TeX-command
-  :type 'string)
+  :type '(choice (const :tag "Aleph" "aleph")
+                (const :tag "Omega" "omega")
+                (string :tag "Other command")))
 
 (defcustom LaTeX-command "latex"
   "Command to run LaTeX."
@@ -77,7 +79,9 @@
 (defcustom LaTeX-Omega-command "lambda"
   "Command to run LaTeX on Omega."
   :group 'TeX-command
-  :type 'string)
+  :type '(choice (const :tag "Lamed" "lamed")
+                (const :tag "Lambda" "lambda")
+                (string :tag "Other command")))
 
 (defcustom TeX-file-line-error t
   "Whether to have TeX produce file:line:error style error messages."



reply via email to

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