Re: [AUCTeX] GNU AUCTeX 11.88.3 released via ELPA

2015-03-22 Thread Denis Bitouzé
Hi Mosè,

Le 22/03/15 à 22h38, Mosè Giordano m...@gnu.org a écrit :

 Many thanks for this! Is there some change log somewhere?

 You can see the list of changes between 11.88.2 and 11.88.3 in this diff:

 [...]

Thanks!

Nice to see `tcolorbox' supported.

Bye.
-- 
Denis

___
auctex mailing list
auctex@gnu.org
https://lists.gnu.org/mailman/listinfo/auctex


[AUCTeX] GNU AUCTeX 11.88.3 released via ELPA

2015-03-22 Thread Tassilo Horn
Hi all,

I've just released GNU AUCTeX 11.88.3 via ELPA with the latest and
greatest changes from our Git master.  It should be available for
install/upgrade using M-x list-packages within the next 24 hours.

Happy TeX-ing,
Tassilo


___
auctex mailing list
auctex@gnu.org
https://lists.gnu.org/mailman/listinfo/auctex


Re: [AUCTeX] Listing and not listing regions inverted if `\begin{lstlisting}' not followed by what is expected

2015-03-22 Thread Tassilo Horn
Denis Bitouzé dbito...@wanadoo.fr writes:

Hi Denis,

 \newenvironment{latexcode}
 {%
   \VerbatimOut{tmp.tex}%
 }{%
   \endVerbatimOut%
   \lstinputlisting{tmp.tex}%
 }

 \begin{document}
 \begin{frame}[fragile]
 \begin{latexcode}
 \begin{lstlisting}+\only2-{+[+\emph{options}+]+}+
 +\emph{listing}+
 \end{lstlisting}
 \end{latexcode}

The problem is that AUCTeX has no clue that latexcode is a verbatim
environment, and therefore its complete content should be displayed with
the verbatim face.  Just add it as such ino your local variables
section:

--8---cut here---start-8---
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% eval: (add-to-list 'LaTeX-verbatim-environments-local latexcode)
%%% End:
--8---cut here---end---8---

Bye,
Tassilo


___
auctex mailing list
auctex@gnu.org
https://lists.gnu.org/mailman/listinfo/auctex


[AUCTeX-diffs] GNU AUCTeX branch, simplify-TeX-parse-error, updated. 53623fd4484f21820287e45a8a96f801c5a5c5be

2015-03-22 Thread Tassilo Horn
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project GNU AUCTeX.

The branch, simplify-TeX-parse-error has been updated
   via  53623fd4484f21820287e45a8a96f801c5a5c5be (commit)
   via  ca40c6a986bbc664c89ae49c7c658fad94c9d270 (commit)
   via  6896a4c35e20f39197fb2cae53c49b24893f90a2 (commit)
   via  f16c051513f26d6780d089c49d272e01dcf7e3cb (commit)
   via  b1e9217c26d81380cbeaea772f551f0cbcf420a8 (commit)
  from  e7dcdf3a10a7a09695f0b6c675ed2c9e74eed6b5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 53623fd4484f21820287e45a8a96f801c5a5c5be
Merge: e7dcdf3 ca40c6a
Author: Tassilo Horn t...@gnu.org
Date:   Sun Mar 22 10:13:43 2015 +0100

Merge branch 'master' into simplify-TeX-parse-error


---

Summary of changes:
 ChangeLog   |8 +++
 Makefile.in |3 +-
 doc/wininstall.texi |2 +-
 style/mn2e.el   |  175 +++
 4 files changed, 186 insertions(+), 2 deletions(-)
 create mode 100644 style/mn2e.el


hooks/post-receive
-- 
GNU AUCTeX

___
auctex-diffs mailing list
auctex-di...@gnu.org
https://lists.gnu.org/mailman/listinfo/auctex-diffs


Re: [AUCTeX] Listing and not listing regions inverted if `\begin{lstlisting}' not followed by what is expected

2015-03-22 Thread Denis Bitouzé
Le 22/03/15 à 10h02, Tassilo Horn t...@gnu.org a écrit :

 Denis Bitouzé dbito...@wanadoo.fr writes:

 Hi Denis,

Hi Tassilo,

 \newenvironment{latexcode}
 {%
   \VerbatimOut{tmp.tex}%
 }{%
   \endVerbatimOut%
   \lstinputlisting{tmp.tex}%
 }

 \begin{document}
 \begin{frame}[fragile]
 \begin{latexcode}
 \begin{lstlisting}+\only2-{+[+\emph{options}+]+}+
 +\emph{listing}+
 \end{lstlisting}
 \end{latexcode}

 The problem is that AUCTeX has no clue that latexcode is a verbatim
 environment, and therefore its complete content should be displayed with
 the verbatim face.  Just add it as such ino your local variables
 section:

 %%% Local Variables:
 %%% mode: latex
 %%% TeX-master: t
 %%% eval: (add-to-list 'LaTeX-verbatim-environments-local latexcode)
 %%% End:

Thanks for your answer. Anyway, the following:

--8---cut here---start-8---
\documentclass{beamer}
\usepackage{lmodern}
\usepackage{fancyvrb}
\usepackage{listings}

\lstset{%
  escapechar=+,%
  basicstyle=\ttfamily,%
  language=[LaTeX]TeX%
}%

\newenvironment{latexcode}
{%
  \VerbatimOut{tmp.tex}%
}{%
  \endVerbatimOut%
  \lstinputlisting{tmp.tex}%
}

\begin{document}
\begin{frame}[fragile]
\begin{latexcode}
\begin{lstlisting}+\only2-{+[+\emph{options}+]+}+
+\emph{listing}+
\end{lstlisting}
\end{latexcode}
\end{frame}

\begin{frame}[fragile]
\begin{latexcode}
\begin{lstlisting}
+Foo bar+
\end{lstlisting}
\end{latexcode}
\end{frame}
\end{document}

%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% eval: (add-to-list 'LaTeX-verbatim-environments-local latexcode)
%%% End:
--8---cut here---end---8---

does work either though the (not) listing region is highlighted
differently (I must admit what I need is a kind of torture test from
a syntax highlight point of view :)
-- 
Denis

___
auctex mailing list
auctex@gnu.org
https://lists.gnu.org/mailman/listinfo/auctex


Re: [AUCTeX] GNU AUCTeX 11.88.3 released via ELPA

2015-03-22 Thread Denis Bitouzé
Le 22/03/15 à 10h30, Tassilo Horn t...@gnu.org a écrit :

 I've just released GNU AUCTeX 11.88.3 via ELPA with the latest and
 greatest changes from our Git master.

Many thanks for this! Is there some change log somewhere?
-- 
Denis

___
auctex mailing list
auctex@gnu.org
https://lists.gnu.org/mailman/listinfo/auctex


Re: [AUCTeX] GNU AUCTeX 11.88.3 released via ELPA

2015-03-22 Thread Mosè Giordano
Hi Denis,

2015-03-22 16:34 GMT+01:00 Denis Bitouzé dbito...@wanadoo.fr:
 Le 22/03/15 à 10h30, Tassilo Horn t...@gnu.org a écrit :

 I've just released GNU AUCTeX 11.88.3 via ELPA with the latest and
 greatest changes from our Git master.

 Many thanks for this! Is there some change log somewhere?

You can see the list of changes between 11.88.2 and 11.88.3 in this diff:

http://git.savannah.gnu.org/gitweb/?p=emacs/elpa.git;a=blobdiff;f=ChangeLog;h=4b64c907e03ea247dee644e68724faa425582856;hp=7d47bcdf66712c6bed11033969c02f622dde7f75;hb=17f588897feb284a072a4c2be929f6adadbd3490;hpb=8c89edf0b882697ac276260acc62b481a4350ee0

Bye,
Mosè

___
auctex mailing list
auctex@gnu.org
https://lists.gnu.org/mailman/listinfo/auctex