GNU bug report logs - #64371
13.2.0; buffer-local value of TeX-error-overview-open-after-TeX-run is ignored (with fix)

Previous Next

Package: auctex;

Reported by: Johannes Beisswenger <johannes.beisswenger <at> student.kit.edu>

Date: Fri, 30 Jun 2023 16:45:02 UTC

Severity: normal

Tags: fixed

Found in version 13.2.0

Done: Arash Esbati <arash <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 64371 in the body.
You can then email your comments to 64371 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-auctex <at> gnu.org:
bug#64371; Package auctex. (Fri, 30 Jun 2023 16:45:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Johannes Beisswenger <johannes.beisswenger <at> student.kit.edu>:
New bug report received and forwarded. Copy sent to bug-auctex <at> gnu.org. (Fri, 30 Jun 2023 16:45:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Johannes Beisswenger <johannes.beisswenger <at> student.kit.edu>
To: <bug-auctex <at> gnu.org>
Subject: 13.2.0; buffer-local value of TeX-error-overview-open-after-TeX-run
 is ignored (with fix)
Date: Fri, 30 Jun 2023 13:16:06 +0200
Hello,

the buffer-local value of TeX-error-overview-open-after-TeX-run seems to 
be ignored.

Expected behavior:

Setting `TeX-error-overview-open-after-TeX-run' to a non-nil error via
e.g. .dir-locals.el should automatically open the error overview after
running LaTeX (or a similar command) if any error occurs.


Observed behavior:

Setting `TeX-error-overview-open-after-TeX-run' via .dir-locals.el has
no effect, only setting it globally e.g. via `customize-variable'
results in the expected behavior.


Cause and suggested fix:

The function responsible for opening the error overview
(`TeX-LaTeX-sentinel' in tex.el) runs with the current buffer being the
`TeX-process-buffer' and looks up the value of
`TeX-error-overview-open-after-TeX-run' while in this buffer which of
course only has the global value of the variable.

Ensuring that the variable is looked up in the buffer from which
the LaTeX command was issued fixes the issue for me and is probably the 
intended behavior:

Replace

        TeX-error-overview-open-after-TeX-run

with

        (with-current-buffer TeX-command-buffer
                             TeX-error-overview-open-after-TeX-run)

in `TeX-LaTeX-sentinel'. Using `buffer-local-value' works just as well
but `TeX-LaTeX-sentinel' already uses `with-current-buffer' for exactly
this purpose with other variables.

I am quite sure that `TeX-TeX-sentinel' requires the same fix as it's 
also not looking up `TeX-error-overview-open-after-TeX-run' in the
`TeX-command-buffer' but I haven't tested this.


I hope this bug report is helpful and thanks in advance!

Johannes


Emacs  : GNU Emacs 27.1 (build 1, x86_64-pc-linux-gnu, GTK+ Version 
3.24.30, cairo version 1.16.0)
 of 2022-01-24, modified by Debian
Package: 13.2.0

current state:
==============
(setq
 AUCTeX-date "2023-04-24"
 window-system 'x
 LaTeX-version "2e"
 TeX-style-path '("~/.emacs.d/auctex" 
"/home/jbeisswenger/.emacs.d/elpa/auctex-13.2.0/style" 
"/home/jbeisswenger/.emacs.d/auctex/auto"
                  "/home/jbeisswenger/.emacs.d/auctex/style" "auto" 
"style")
 TeX-auto-save t
 TeX-parse-self t
 TeX-master "ausarbeitung"
 TeX-command-list '(("LatexMk" "latexmk %(-PDF)%S%(mode) 
%(file-line-error) %(extraopts) %t" TeX-run-latexmk nil (plain-tex-mode 
latex-mode doctex-mode)
                     :help "Run LatexMk")
                    ("TeX" "%(PDF)%(tex) %(file-line-error) 
%`%(extraopts) %S%(PDFout)%(mode)%' %(output-dir) %t" TeX-run-TeX nil
                     (plain-tex-mode ams-tex-mode texinfo-mode) :help 
"Run plain TeX")
                    ("LaTeX" "%`%l%(mode)%' %T" TeX-run-TeX nil 
(latex-mode doctex-mode) :help "Run LaTeX")
                    ("Makeinfo" "makeinfo %(extraopts) %(o-dir) %t" 
TeX-run-compile nil (texinfo-mode) :help "Run Makeinfo with Info output")
                    ("Makeinfo HTML" "makeinfo %(extraopts) %(o-dir) 
--html %t" TeX-run-compile nil (texinfo-mode) :help "Run Makeinfo with 
HTML output")
                    ("AmSTeX" "amstex %(PDFout) %`%(extraopts) 
%S%(mode)%' %(output-dir) %t" TeX-run-TeX nil (ams-tex-mode) :help "Run 
AMSTeX")
                    ("ConTeXt" "%(cntxcom) --once --texutil 
%(extraopts) %(execopts)%t" TeX-run-TeX nil (context-mode) :help "Run 
ConTeXt once")
                    ("ConTeXt Full" "%(cntxcom) %(extraopts) 
%(execopts)%t" TeX-run-TeX nil (context-mode) :help "Run ConTeXt until 
completion")
                    ("BibTeX" "%(bibtex) %s" TeX-run-BibTeX nil 
(plain-tex-mode latex-mode doctex-mode ams-tex-mode texinfo-mode 
context-mode) :help
                     "Run BibTeX")
                    ("Biber" "biber %(output-dir) %s" TeX-run-Biber nil 
(plain-tex-mode latex-mode doctex-mode ams-tex-mode texinfo-mode) :help 
"Run Biber")
                    ("Texindex" "texindex %s.??" TeX-run-command nil 
(texinfo-mode) :help "Run Texindex")
                    ("Texi2dvi" "%(PDF)texi2dvi %t" TeX-run-command nil 
(texinfo-mode) :help "Run Texi2dvi or Texi2pdf")
                    ("View" "%V" TeX-run-discard-or-function t t :help 
"Run Viewer") ("Print" "%p" TeX-run-command t t :help "Print the file")
                    ("Queue" "%q" TeX-run-background nil t :help "View 
the printer queue" :visible TeX-queue-command)
                    ("File" "%(o?)dvips %d -o %f " TeX-run-dvips t 
(plain-tex-mode latex-mode doctex-mode ams-tex-mode texinfo-mode) :help
                     "Generate PostScript file")
                    ("Dvips" "%(o?)dvips %d -o %f " TeX-run-dvips nil 
(plain-tex-mode latex-mode doctex-mode ams-tex-mode texinfo-mode) :help
                     "Convert DVI file to PostScript")
                    ("Dvipdfmx" "dvipdfmx -o %(O?pdf) %d" 
TeX-run-dvipdfmx nil (plain-tex-mode latex-mode doctex-mode ams-tex-mode 
texinfo-mode) :help
                     "Convert DVI file to PDF with dvipdfmx")
                    ("Ps2pdf" "ps2pdf %f %(O?pdf)" TeX-run-ps2pdf nil 
(plain-tex-mode latex-mode doctex-mode ams-tex-mode texinfo-mode) :help
                     "Convert PostScript file to PDF")
                    ("Glossaries" "makeglossaries %(d-dir) %s" 
TeX-run-command nil (plain-tex-mode latex-mode doctex-mode ams-tex-mode 
texinfo-mode) :help
                     "Run makeglossaries to create glossary file")
                    ("Index" "%(makeindex) %s" TeX-run-index nil 
(plain-tex-mode latex-mode doctex-mode ams-tex-mode texinfo-mode) :help
                     "Run makeindex to create index file")
                    ("upMendex" "upmendex %(O?idx)" TeX-run-index t 
(plain-tex-mode latex-mode doctex-mode ams-tex-mode texinfo-mode) :help
                     "Run upmendex to create index file")
                    ("Xindy" "texindy %s" TeX-run-command nil 
(plain-tex-mode latex-mode doctex-mode ams-tex-mode texinfo-mode) :help
                     "Run xindy to create index file")
                    ("Check" "lacheck %s" TeX-run-compile nil 
(latex-mode) :help "Check LaTeX file for correctness")
                    ("ChkTeX" "chktex -v6 %s" TeX-run-compile nil 
(latex-mode) :help "Check LaTeX file for common mistakes")
                    ("Spell" "(TeX-ispell-document \"\")" 
TeX-run-function nil t :help "Spell-check the document")
                    ("Clean" "TeX-clean" TeX-run-function nil t :help 
"Delete generated intermediate files")
                    ("Clean All" "(TeX-clean t)" TeX-run-function nil t 
:help "Delete generated intermediate and output files")
                    ("Other" "" TeX-run-command t t :help "Run an 
arbitrary command"))
 )




Information forwarded to bug-auctex <at> gnu.org:
bug#64371; Package auctex. (Sat, 01 Jul 2023 10:53:01 GMT) Full text and rfc822 format available.

Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Tassilo Horn <tsdh <at> gnu.org>
To: Johannes Beisswenger <johannes.beisswenger <at> student.kit.edu>
Cc: bug-auctex <at> gnu.org, 64371 <at> debbugs.gnu.org
Subject: Re: bug#64371: 13.2.0; buffer-local value of
 TeX-error-overview-open-after-TeX-run is ignored (with fix)
Date: Sat, 01 Jul 2023 12:42:14 +0200
Johannes Beisswenger <johannes.beisswenger <at> student.kit.edu> writes:

Hi Johannes,

> Cause and suggested fix:

Your reasoning is valid and the fix is correct.  I've made a
corresponding change.

  http://git.savannah.gnu.org/cgit/auctex.git/commit/?id=fe42de7cf6447bfaf7032c8f2c65998f90aef64a

> I hope this bug report is helpful and thanks in advance!

Bug reports accompanied with a fix are most welcome.

You can still improve, though, by sending in a git patch next time.  In
addition to making it even more convenient for us, such a transaction
will create a record on our blockchain (called git) for others to see
and earn you reputation. :-)

Bye,
Tassilo




Information forwarded to bug-auctex <at> gnu.org:
bug#64371; Package auctex. (Sat, 01 Jul 2023 10:53:01 GMT) Full text and rfc822 format available.

Information forwarded to bug-auctex <at> gnu.org:
bug#64371; Package auctex. (Mon, 03 Jul 2023 07:30:03 GMT) Full text and rfc822 format available.

Message #14 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Johannes Beisswenger <johannes.beisswenger <at> student.kit.edu>
To: Tassilo Horn <tsdh <at> gnu.org>
Cc: bug-auctex <at> gnu.org, 64371 <at> debbugs.gnu.org
Subject: Re: bug#64371: 13.2.0; buffer-local value of
 TeX-error-overview-open-after-TeX-run is ignored (with fix)
Date: Mon, 3 Jul 2023 08:30:27 +0200
> Your reasoning is valid and the fix is correct.  I've made a
> corresponding change.

Thanks.

> You can still improve, though, by sending in a git patch next time.  In
> addition to making it even more convenient for us, such a transaction
> will create a record on our blockchain (called git) for others to see
> and earn you reputation. 😄

Will do next time!

Bye,
Johannes




Information forwarded to bug-auctex <at> gnu.org:
bug#64371; Package auctex. (Mon, 03 Jul 2023 07:30:03 GMT) Full text and rfc822 format available.

bug closed, send any further explanations to 64371 <at> debbugs.gnu.org and Johannes Beisswenger <johannes.beisswenger <at> student.kit.edu> Request was from Arash Esbati <arash <at> gnu.org> to control <at> debbugs.gnu.org. (Sat, 10 Feb 2024 20:51:02 GMT) Full text and rfc822 format available.

Added tag(s) fixed. Request was from Arash Esbati <arash <at> gnu.org> to control <at> debbugs.gnu.org. (Sat, 10 Feb 2024 21:26:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 10 Mar 2024 11:24:12 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 59 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.