branch: externals/auctex commit c332551d2e1e3b796a1748b892708ec13829cab8 Author: Mosè Giordano <m...@gnu.org> 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 <m...@gnu.org> + + * 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 <m...@gnu.org> * 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."