[AUCTeX-commit] GNU AUCTeX branch, master, updated. b6765929b0bd5614975470774ab2864a32885acf

2014-03-12 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, master has been updated via b6765929b0bd5614975470774ab2864a32885acf (commit) from

Re: [AUCTeX-devel] GNU AUCTeX branch, master, updated. fa1daf8cf4c624dc17f584d821f774527579cc97

2014-03-12 Thread Tassilo Horn
Mosè Giordano giordano.m...@libero.it writes: Why this change? My `completing-read-multiple' never returns nil, if no input is inserted it returns `()' which isn't nil. Am I missing something? I'm running GNU Emacs 24.3, if that helps. Ok, the behavior of `completing-read-multiple' has

Re: [AUCTeX] emaxima environments ($, language-specific indentation)

2014-03-12 Thread Tamas Papp
On Fri, Mar 07 2014, Tassilo Horn t...@gnu.org wrote: Tamas Papp tkp...@gmail.com writes: 1. in Maxima code can be terminated with $ instead of ;, in which case the result is not displayed in the output. This confuses AUCTeX (code highlighting etc), because it thinks math mode has been

[AUCTeX] running auctex from git directory without installing

2014-03-12 Thread Tamas Papp
Hi, I would like to try the version of AUCTeX from the git repo. Is it possible not to install it --- ie do --8---cut here---start-8--- git clone git://git.savannah.gnu.org/auctex.git cd auctex ./autogen.sh ./configure make --8---cut

Re: [AUCTeX] running auctex from git directory without installing

2014-03-12 Thread Marcus Frings
* Tamas Papp tkp...@gmail.com wrote: I would like to try the version of AUCTeX from the git repo. Is it possible not to install it --- ie do git clone git://git.savannah.gnu.org/auctex.git cd auctex ./autogen.sh ./configure make but *not* make install? What else should I do in Emacs,

Re: [AUCTeX] emaxima environments ($, language-specific indentation)

2014-03-12 Thread Tassilo Horn
Tamas Papp tkp...@gmail.com writes: Hi Tamas, I have now managed to fix the indentation, Could you please share what you've done so that others can benefit from it? but dealing with the $ still eludes me. I tried your recipe and got the same problem. What works however is setting

Re: [AUCTeX] emaxima environments ($, language-specific indentation)

2014-03-12 Thread Tamas Papp
On Wed, Mar 12 2014, Tassilo Horn t...@gnu.org wrote: Tamas Papp tkp...@gmail.com writes: Hi Tamas, I have now managed to fix the indentation, Could you please share what you've done so that others can benefit from it? This is my setup now, comes rather close to the functionality of

Re: [AUCTeX] emaxima environments ($, language-specific indentation)

2014-03-12 Thread Tassilo Horn
Tamas Papp tkp...@gmail.com writes: I guess the reason is that the value is already needed when initializing font-lock. And the setting of `font-lock-set-defaults' and calling `font-latex-set-syntactic-keywords' is also important. Thanks, this works fine. Out of curiosity, is there a way to

Re: [AUCTeX] emaxima environments ($, language-specific indentation)

2014-03-12 Thread Tamas Papp
On Wed, Mar 12 2014, Tassilo Horn t...@gnu.org wrote: Tamas Papp tkp...@gmail.com writes: I guess the reason is that the value is already needed when initializing font-lock. And the setting of `font-lock-set-defaults' and calling `font-latex-set-syntactic-keywords' is also important.

Re: [AUCTeX] emaxima environments ($, language-specific indentation)

2014-03-12 Thread Joost Kremers
On Wed, Mar 12 2014, Tassilo Horn t...@gnu.org wrote: This seems to work for me: --8---cut here---start-8--- (defun th/LaTeX-maxima-support () (setq LaTeX-verbatim-environments-local '(maxima maxima*)) (setq font-lock-set-defaults nil)

Re: [AUCTeX] emaxima environments ($, language-specific indentation)

2014-03-12 Thread Tassilo Horn
Joost Kremers joostkrem...@fastmail.fm writes: This seems to work for me: --8---cut here---start-8--- (defun th/LaTeX-maxima-support () (setq LaTeX-verbatim-environments-local '(maxima maxima*)) (setq font-lock-set-defaults nil)