From unknown Sun Jun 15 13:02:16 2025 X-Loop: help-debbugs@gnu.org Subject: bug#73854: 29.4; tex-mode: unexpected and inconsistent behaviour of `tex-compile`, `tex-file`, and `tex-view` Resent-From: Thalis Charakas Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 17 Oct 2024 18:38:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 73854 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 73854@debbugs.gnu.org X-Debbugs-Original-To: "bug-gnu-emacs@gnu.org" Received: via spool by submit@debbugs.gnu.org id=B.172919023622797 (code B ref -1); Thu, 17 Oct 2024 18:38:02 +0000 Received: (at submit) by debbugs.gnu.org; 17 Oct 2024 18:37:16 +0000 Received: from localhost ([127.0.0.1]:35605 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t1VN5-0005vc-7U for submit@debbugs.gnu.org; Thu, 17 Oct 2024 14:37:15 -0400 Received: from lists.gnu.org ([209.51.188.17]:45980) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t1VMz-0005vR-Aw for submit@debbugs.gnu.org; Thu, 17 Oct 2024 14:37:13 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t1VMd-0005Wj-Bn for bug-gnu-emacs@gnu.org; Thu, 17 Oct 2024 14:36:47 -0400 Received: from mail-0201.mail-europe.com ([51.77.79.158]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t1VMY-0001pX-QG for bug-gnu-emacs@gnu.org; Thu, 17 Oct 2024 14:36:46 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1729190182; x=1729449382; bh=wuzK5Qwe5nEfECic7/L8SoyaZW9uESORF/f46CXDYYE=; h=Date:To:From:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=SmKA3tweYYYXY8MqAz1fJUl6CXwJNH47Rlf7nxVv1opJ547ZkNWig5ZzXzdw9KH9Z hr/lZ19Y3fXG0797WizV9kieQrUG0vhbHPnsKhGIqCCSsYaCQt5kNLKifiy/V3GwKH uIJqmwoFeEyrJQ3dotKsPWhxjomQNHsTU66h0vkTVbPmWyDNhL9aST0Sv/QZj5T0Ul IAjJeO6n9U5Bc6yD8U+Z47NwbEaEzdMyg5nFc+T+DIIZAARzxWr2Ba8QguPN09ox32 FQ71Z1MYRgJgD5dH2HqSPPhZMXtWyIaw7oFsyLN04uGlDRTgajn023pbarS4h5ctrr Qn0o6Ydtddb5g== Date: Thu, 17 Oct 2024 18:36:19 +0000 From: Thalis Charakas Message-ID: Feedback-ID: 840084:user:proton X-Pm-Message-ID: 9cc6bdffea48d9b202ae103708e18f1a23b153bf MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=51.77.79.158; envelope-from=thales1@protonmail.com; helo=mail-0201.mail-europe.com X-Spam_score_int: -24 X-Spam_score: -2.5 X-Spam_bar: -- X-Spam_report: (-2.5 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_ENVFROM_END_DIGIT=0.25, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.1 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.1 (--) Basically, `tex-view` works, opening Evince, on a compiled .pdf only after a .dvi is created. Running 'emacs -Q' I evaluate the following in the scratch buffer, to make it so that latex is compiled to pdf: ``` (setq tex-print-file-extension ".pdf" tex-dvi-view-command "evince" tex-dvi-print-command "lpr") ``` the last two lines are following the instructions on the description of `tex-print-file-extension`. I navigate to a simple .tex in an empty directory and press `C-c C-c` which is bound by default to `tex-compile`, I press enter, as the default is `pdflatex`, and the file compiles, creating a .pdf in the directory. After that I press `C-c C-v`, which is bound to `tex-view` but Evince does not open, instead I get the message "tex-print: No appropriate =E2=80=98.dvi=E2=80=99 file could be found. If I press `C-c C-f= ` (`tex-file`) after that, a .dvi file is created, and now `tex-view` works, meaning it opens the .pdf with Evince. The fact that `tex-view` works on the .pdf only when a .dvi is first created seems like a bug. In GNU Emacs 29.4 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.38, cairo version 1.16.0) of 2024-07-22, modified by Debian built on x86-ubc-01 Windowing system distributor 'The X.Org Foundation', version 11.0.12201009 System Description: Debian GNU/Linux 12 (bookworm) Configured using: 'configure --build x86_64-linux-gnu --prefix=3D/usr --sharedstatedir=3D/var/lib --libexecdir=3D/usr/libexec --localstatedir=3D/var/lib --infodir=3D/usr/share/info --mandir=3D/usr/share/man --with-libsystemd --with-pop=3Dyes --enable-locallisppath=3D/etc/emacs:/usr/local/share/emacs/29.4/site-lisp:= /usr/local/share/emacs/site-lisp:/usr/share/emacs/29.4/site-lisp:/usr/share= /emacs/site-lisp --with-sound=3Dalsa --without-gconf --with-mailutils --with-native-compilation --build x86_64-linux-gnu --prefix=3D/usr --sharedstatedir=3D/var/lib --libexecdir=3D/usr/libexec --localstatedir=3D/var/lib --infodir=3D/usr/share/info --mandir=3D/usr/share/man --with-libsystemd --with-pop=3Dyes --enable-locallisppath=3D/etc/emacs:/usr/local/share/emacs/29.4/site-lisp:= /usr/local/share/emacs/site-lisp:/usr/share/emacs/29.4/site-lisp:/usr/share= /emacs/site-lisp --with-sound=3Dalsa --without-gconf --with-mailutils --with-native-compilation --with-cairo --with-x=3Dyes --with-x-toolkit=3Dgtk3 --with-toolkit-scroll-bars 'CFLAGS=3D-g -O2 -ffile-prefix-map=3D/build/reproducible-path/emacs-29.4+1=3D. -fstack-prot= ector-strong -Wformat -Werror=3Dformat-security -Wall' 'CPPFLAGS=3D-Wdate-time -D_FORTIFY_SOURCE=3D2' LDFLAGS=3D-Wl,-z,relro' Configured features: ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GPM GSETTINGS HARFBUZZ JPEG JSON LCMS2 LIBOTF LIBSELINUX LIBSYSTEMD LIBXML2 M17N_FLT MODULES NATIVE_COMP NOTIFY INOTIFY PDUMPER PNG RSVG SECCOMP SOUND SQLITE3 THREADS TIFF TOOLKIT_SCROLL_BARS TREE_SITTER WEBP X11 XDBE XIM XINPUT2 XPM GTK3 ZLIB Important settings: value of $LC_MONETARY: el_GR.UTF-8 value of $LC_NUMERIC: el_GR.UTF-8 value of $LC_TIME: el_GR.UTF-8 value of $LANG: en_US.UTF-8 value of $XMODIFIERS: @im=3Dibus locale-coding-system: utf-8-unix Major mode: LaTeX Minor modes in effect: shell-dirtrack-mode: t tooltip-mode: t global-eldoc-mode: t show-paren-mode: t electric-indent-mode: t mouse-wheel-mode: t tool-bar-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t line-number-mode: t transient-mark-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t Load-path shadows: None found. Features: (shadow sort mail-extr emacsbug message mailcap yank-media puny dired dired-loaddefs rfc822 mml mml-sec password-cache epa derived epg rfc6068 epg-config gnus-util mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils sh-script smie treesit executable files-x format-spec tex-mode compile text-property-search shell pcomplete comint ansi-osc ansi-color ring latexenc time-date cl-loaddefs comp comp-cstr warnings icons subr-x rx cl-seq cl-macs gv cl-extra help-mode bytecomp byte-compile cl-lib rmc iso-transl tooltip cconv eldoc paren electric uniquify ediff-hook vc-hooks lisp-float-type elisp-mode mwheel term/x-win x-win term/common-win x-dnd tool-bar dnd fontset image regexp-opt fringe tabulated-list replace newcomment text-mode lisp-mode prog-mode register page tab-bar menu-bar rfn-eshadow isearch easymenu timer select scroll-bar mouse jit-lock font-lock syntax font-core term/tty-colors frame minibuffer nadvice seq simple cl-generic indonesian philippine cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932 hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese composite emoji-zwj charscript charprop case-table epa-hook jka-cmpr-hook help abbrev obarray oclosure cl-preloaded button loaddefs theme-loaddefs faces cus-face macroexp files window text-properties overlay sha1 md5 base64 format env code-pages mule custom widget keymap hashtable-print-readable backquote threads dbusbind inotify lcms2 dynamic-setting system-font-setting font-render-setting cairo move-toolbar gtk x-toolkit xinput2 x multi-tty make-network-process native-compile emacs) Memory information: ((conses 16 104929 9925) (symbols 48 8831 0) (strings 32 26957 1346) (string-bytes 1 823130) (vectors 16 18588) (vector-slots 8 380866 9613) (floats 8 55 42) (intervals 56 359 0) (buffers 984 14)) From unknown Sun Jun 15 13:02:16 2025 X-Loop: help-debbugs@gnu.org Subject: bug#73854: 29.4; tex-mode: unexpected and inconsistent behaviour of `tex-compile`, `tex-file`, and `tex-view` Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 19 Oct 2024 09:56:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 73854 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Thalis Charakas Cc: 73854@debbugs.gnu.org Received: via spool by 73854-submit@debbugs.gnu.org id=B73854.172933172625245 (code B ref 73854); Sat, 19 Oct 2024 09:56:02 +0000 Received: (at 73854) by debbugs.gnu.org; 19 Oct 2024 09:55:26 +0000 Received: from localhost ([127.0.0.1]:41499 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t26BB-0006Z6-Nq for submit@debbugs.gnu.org; Sat, 19 Oct 2024 05:55:26 -0400 Received: from eggs.gnu.org ([209.51.188.92]:56452) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t26B9-0006Yr-CK for 73854@debbugs.gnu.org; Sat, 19 Oct 2024 05:55:23 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t26Af-0006Nq-Sy; Sat, 19 Oct 2024 05:54:54 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:References:Subject:In-Reply-To:To:From: Date; bh=W2Og/jzW0GVttl8fwGEbyk1pnKuUxfe67s8+n0UdEug=; b=nbRQFqNvzmgjQIMx+Rsc gEGT/A+NYUzpgBZyO0hIe1asfX3+A/r/YL+9VML/6yEsUBa4N7n0JBJo8BuYfI3R+BEvcm96uEZHp w4TaanGV0zX2on2rp6gr01D2PZUZqWsHhGIAtBV524dnyqS7I7ujgaehfNJqsN81JKHDKx0HYU3vY qo3oZDpWw+lFDR6PUbqfVHTYzibW1rbg7JpuCMHlactsYSeftKQbHWXCAgr19nFwvuN68lB77Gd2T 6+RTI7A9gC860QOQYD4juau4deIzMNBaM3JoYIjws6bFSpgdX3uWfGw4ubLj852caCnvXwll7ozcq 6UgrP673mat3OQ==; Date: Sat, 19 Oct 2024 12:54:51 +0300 Message-Id: <86ed4cl8no.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: (bug-gnu-emacs@gnu.org) References: MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > Date: Thu, 17 Oct 2024 18:36:19 +0000 > From: Thalis Charakas via "Bug reports for GNU Emacs, > the Swiss army knife of text editors" > > Basically, `tex-view` works, opening Evince, on a compiled .pdf only > after a .dvi is created. > > Running 'emacs -Q' I evaluate the following in the scratch buffer, to > make it so that latex is compiled to pdf: > ``` > (setq tex-print-file-extension ".pdf" > tex-dvi-view-command "evince" > tex-dvi-print-command "lpr") > ``` > the last two lines are following the instructions on the description of > `tex-print-file-extension`. > > I navigate to a simple .tex in an empty directory and press `C-c C-c` > which is bound by default to `tex-compile`, I press enter, as the > default is `pdflatex`, and the file compiles, creating a .pdf in the > directory. After that I press `C-c C-v`, which is bound to `tex-view` > but Evince does not open, instead I get the message "tex-print: No > appropriate ‘.dvi’ file could be found. If I press `C-c C-f` > (`tex-file`) after that, a .dvi file is created, and now `tex-view` > works, meaning it opens the .pdf with Evince. > > The fact that `tex-view` works on the .pdf only when a .dvi is first > created seems like a bug. Thanks. Can you step with Edebug through tex-print in your case and try to figure out what happens there that causes the error message? There's some logic there which is supposed to verify that the current buffer's print file is up-to-date: (if (and (not (equal (current-buffer) tex-last-buffer-texed)) (buffer-file-name) ;; Check that this buffer's printed file is up to date. (file-newer-than-file-p (setq test-name (tex-append (buffer-file-name) tex-print-file-extension)) (buffer-file-name))) (setq print-file-name-dvi test-name)) Maybe something goes wrong there in your case? (I don't have the requisite tools installed to try this myself, sorry.) From unknown Sun Jun 15 13:02:16 2025 X-Loop: help-debbugs@gnu.org Subject: bug#73854: 29.4; tex-mode: unexpected and inconsistent behaviour of `tex-compile`, `tex-file`, and `tex-view` Resent-From: Stephen Berman Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 19 Oct 2024 11:35:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 73854 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Eli Zaretskii Cc: Thalis Charakas , 73854@debbugs.gnu.org Received: via spool by 73854-submit@debbugs.gnu.org id=B73854.172933765711202 (code B ref 73854); Sat, 19 Oct 2024 11:35:01 +0000 Received: (at 73854) by debbugs.gnu.org; 19 Oct 2024 11:34:17 +0000 Received: from localhost ([127.0.0.1]:41681 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t27iq-0002uc-Mg for submit@debbugs.gnu.org; Sat, 19 Oct 2024 07:34:17 -0400 Received: from mout.gmx.net ([212.227.17.20]:34501) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t27im-0002uK-Kr for 73854@debbugs.gnu.org; Sat, 19 Oct 2024 07:34:15 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmx.net; s=s31663417; t=1729337467; x=1729942267; i=stephen.berman@gmx.net; bh=ISyLYH3OyLD/RZJe//Y6jeDAKSEXFvZv2ydrfcZf4v8=; h=X-UI-Sender-Class:From:To:Cc:Subject:In-Reply-To:References:Date: Message-ID:MIME-Version:Content-Type:cc:content-transfer-encoding: content-type:date:from:message-id:mime-version:reply-to:subject: to; b=nyvEy5y/lWmQIklcLrw9QZguOME5AdfijbNvAhH1IwYwT2zpSihXnRJFML2R62VQ ESCi4LGs7+0F9OwmJQ+PaL2GAccg8psH/SEom4TJWSTbKN4xwrqL34W/+jvQXuC36 i6yNgg/1W6fXsDoeByNz6H+WwxInCnrpUqSz6NDkLAUIabTnqisHJzipEmeWWDrm5 a4JqkWZ10XO05MnnqRMRiAAO/Hq37g5w4W8jOPj+bNmNezu/ioBVev4HDGkaOkIeI jZZqrVk/PSFq4IsLj8A9+wA9qgADHTSFmCSYPnwg4T31frkiM/iW3gn4ffVYI301J 3R9uvKE+VR+HPSkn2A== X-UI-Sender-Class: 724b4f7f-cbec-4199-ad4e-598c01a50d3a Received: from strobelfssd ([94.134.95.160]) by mail.gmx.net (mrgmx104 [212.227.17.168]) with ESMTPSA (Nemesis) id 1MhU9j-1tVwds2krL-00eZjY; Sat, 19 Oct 2024 13:31:07 +0200 From: Stephen Berman In-Reply-To: <86ed4cl8no.fsf@gnu.org> (Eli Zaretskii's message of "Sat, 19 Oct 2024 12:54:51 +0300") References: <86ed4cl8no.fsf@gnu.org> Date: Sat, 19 Oct 2024 13:31:05 +0200 Message-ID: <87ldykxrba.fsf@gmx.net> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Provags-ID: V03:K1:tV4YNfQMoNo3Pmyewz/YXfV7i/Jr72VAnrXKMHguWH27C/pn9Ew hCDB/ptmf4Z8N0/c9wOkslkQHne/YgJQytDNj1gXnsnyOA6kP2Ys/mS2OQ9fVEEMzk6pGkI wDz40qAqCI2rWwmaEuMEvKzFRWykAJTxjf8RPLtTsgWxjj9NPYnxhJFhRBzZKH71uUd/9ze eBvS68M6i97JD26tJIyhQ== X-Spam-Flag: NO UI-OutboundReport: notjunk:1;M01:P0:vodcWgjolGE=;Iwud6luHxFUdmoADRpUHVi5/6Fc ZQQrhRV29osgOuRkiyuRHeKKJ9Y/P3zJJdwfZ6J8Gwbd7YNT79DP85lFB8sALEzpa6xBx4VlO 5/7AjJv5v4voHiUNYHc6MQDTT2RL7Jvf1QeQi7tuBMuEQvTOcB01ztc9RvKZe6Xeh7I15MLml arpZxl8KqMnJe4fQByGwv33/YGxYbAlsgGXRnqGN0n5gKBPrXeEkYVnu+aRhBVAGWwgqT3bXM UTkzD3JKDziGMQz1+3Ci2tdkNLUBkJM6sClpjK/et3CMk1GcnD22/bRCLg0f95v7ch81wnnG7 p6BRah410Ed2+dZXKe28ngsIDhKHDZpyFX4+QHqPWhp0k2ADGk33CnzamWXeU/3qdSoOfPIzi rtwVNUcqNpmbO7j7bFl86kWLBbRPk5ki+lVPyvdyz1e/5Wycb8CovamP0POnI7ttZRgrLT2HA vzGNhdAn6Wspg7t9RIblRaM+/Pbi5n6ad6c/dKZc1qrtnEvvlh6KQBY7I1UJangIh/AHTDLzV IEY0QgNcYfpMHTcc+U7qAG/pawCRYBM+D1yD8s45cYKYql5fXfgAdq3AiouKoiR/WHGvIkrP2 avg7yN/tVmYKgwHxLsSP0MRx0O7SkOiEV37gZ1+OQXW4kswZaNfjr6w1ti0rWjHdZoKwJgrFj aMOXzfdngRMB/o3j2Glbf93klUFAdqO5+zpp7wEKABlAjPJzzTTCUQKmyefjIegi6106S0Adh I317G/eOnmVARtrSLTaNjgNO5tO8YZgvSyql/RKl84Lpa/ITZHRHjDSt3QsjajNTycm8HxVnr q4viyuHL3+Xw7DYBmCEfkMTQ== X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On Sat, 19 Oct 2024 12:54:51 +0300 Eli Zaretskii wrote: >> Date: Thu, 17 Oct 2024 18:36:19 +0000 >> From: Thalis Charakas via "Bug reports for GNU Emacs, >> the Swiss army knife of text editors" >>=20 >> Basically, `tex-view` works, opening Evince, on a compiled .pdf only >> after a .dvi is created. >>=20 >> Running 'emacs -Q' I evaluate the following in the scratch buffer, to >> make it so that latex is compiled to pdf: >> ``` >> (setq tex-print-file-extension ".pdf" >> tex-dvi-view-command "evince" >> tex-dvi-print-command "lpr") >> ``` >> the last two lines are following the instructions on the description of >> `tex-print-file-extension`. >>=20 >> I navigate to a simple .tex in an empty directory and press `C-c C-c` >> which is bound by default to `tex-compile`, I press enter, as the >> default is `pdflatex`, and the file compiles, creating a .pdf in the >> directory. After that I press `C-c C-v`, which is bound to `tex-view` >> but Evince does not open, instead I get the message "tex-print: No >> appropriate =E2=80=98.dvi=E2=80=99 file could be found. If I press `C-c = C-f` >> (`tex-file`) after that, a .dvi file is created, and now `tex-view` >> works, meaning it opens the .pdf with Evince. >>=20 >> The fact that `tex-view` works on the .pdf only when a .dvi is first >> created seems like a bug. > > Thanks. Can you step with Edebug through tex-print in your case and > try to figure out what happens there that causes the error message? > There's some logic there which is supposed to verify that the current > buffer's print file is up-to-date: > > (if (and (not (equal (current-buffer) tex-last-buffer-texed)) > (buffer-file-name) > ;; Check that this buffer's printed file is up to date. > (file-newer-than-file-p > (setq test-name (tex-append (buffer-file-name) > tex-print-file-extension)) > (buffer-file-name))) > (setq print-file-name-dvi test-name)) > > Maybe something goes wrong there in your case? I debugged this and the problem is that tex-print expects the variable tex-print-file to be set, but (as its doc string says) it is set by tex-region, tex-buffer and tex-file, which are all not commands run by tex-compile, which is meant to run external programs (listed by tex-compile-commands). A simple fix is the following patch: --=-=-= Content-Type: text/x-patch Content-Disposition: inline Content-Description: tex-compile patch Content-Transfer-Encoding: quoted-printable diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el index 6fc49800018..acb5bb4b860 100644 =2D-- a/lisp/textmodes/tex-mode.el +++ b/lisp/textmodes/tex-mode.el @@ -2530,6 +2530,7 @@ tex-compile (if (tex-shell-running) (tex-kill-job) (tex-start-shell)) + (setq tex-print-file (expand-file-name (tex-main-file))) (tex-send-tex-command cmd dir)))) (defun tex-start-tex (command file &optional dir) --=-=-= Content-Type: text/plain But I'm not familiar with the tex-mode.el code and don't know if this change might have unwanted consequences (though it seems prima facie safe). Steve Berman --=-=-=-- From unknown Sun Jun 15 13:02:16 2025 X-Loop: help-debbugs@gnu.org Subject: bug#73854: 29.4; tex-mode: unexpected and inconsistent behaviour of `tex-compile`, `tex-file`, and `tex-view` Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 19 Oct 2024 11:56:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 73854 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Stephen Berman , Stefan Monnier Cc: thales1@protonmail.com, 73854@debbugs.gnu.org Received: via spool by 73854-submit@debbugs.gnu.org id=B73854.172933890514796 (code B ref 73854); Sat, 19 Oct 2024 11:56:02 +0000 Received: (at 73854) by debbugs.gnu.org; 19 Oct 2024 11:55:05 +0000 Received: from localhost ([127.0.0.1]:41715 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t282y-0003qa-Uj for submit@debbugs.gnu.org; Sat, 19 Oct 2024 07:55:05 -0400 Received: from eggs.gnu.org ([209.51.188.92]:50180) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t282w-0003py-BN for 73854@debbugs.gnu.org; Sat, 19 Oct 2024 07:55:03 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t282S-0003QJ-G7; Sat, 19 Oct 2024 07:54:32 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=h+wLivzpmOGB/JPvUwth2OEcwwassL4iJ0tsFsKy+pk=; b=rYop2JMjO2Z0 LV5+T/qw3PuB2DgEg9zvExtgthJU1qyq8JpUNJ/EsI+t2dc1h/HVSx7K6ui4ePWeUi3MrTaH7OCdZ S1RhtkWxxLQNhpxjyaRhfvc36WumdpL2kHMVT0N6hN1SuGHxi9jxB4PwLO3erltEdA0znaMU4yB1S EC0EOMm42ZsY5F7nsPSP1tgmWPPMoCuQXBwvDNOJiQl0P9IowbuP4DxN0M622v8w+KLflieqL2DlU ylsA8iQBrk1/IFwupLEQJpMnSPj6BWdWVaWDbWmTJMBOmKSHMDavZUAlQO+NfdzJ3wbTfdcEMOJlY 9hkUzu6U4a08V/O41eCO8Q==; Date: Sat, 19 Oct 2024 14:54:29 +0300 Message-Id: <8634ksl34a.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: <87ldykxrba.fsf@gmx.net> (message from Stephen Berman on Sat, 19 Oct 2024 13:31:05 +0200) References: <86ed4cl8no.fsf@gnu.org> <87ldykxrba.fsf@gmx.net> X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Stephen Berman > Cc: Thalis Charakas , 73854@debbugs.gnu.org > Date: Sat, 19 Oct 2024 13:31:05 +0200 > > diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el > index 6fc49800018..acb5bb4b860 100644 > --- a/lisp/textmodes/tex-mode.el > +++ b/lisp/textmodes/tex-mode.el > @@ -2530,6 +2530,7 @@ tex-compile > (if (tex-shell-running) > (tex-kill-job) > (tex-start-shell)) > + (setq tex-print-file (expand-file-name (tex-main-file))) > (tex-send-tex-command cmd dir)))) > > (defun tex-start-tex (command file &optional dir) > > But I'm not familiar with the tex-mode.el code and don't know if this > change might have unwanted consequences (though it seems prima facie > safe). Thanks. Stefan, do you agree with this fix? From unknown Sun Jun 15 13:02:16 2025 X-Loop: help-debbugs@gnu.org Subject: bug#73854: 29.4; tex-mode: unexpected and inconsistent behaviour of `tex-compile`, `tex-file`, and `tex-view` Resent-From: Stefan Monnier Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 19 Oct 2024 14:30:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 73854 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Eli Zaretskii Cc: thales1@protonmail.com, Stephen Berman , 73854@debbugs.gnu.org Received: via spool by 73854-submit@debbugs.gnu.org id=B73854.172934817212098 (code B ref 73854); Sat, 19 Oct 2024 14:30:01 +0000 Received: (at 73854) by debbugs.gnu.org; 19 Oct 2024 14:29:32 +0000 Received: from localhost ([127.0.0.1]:44241 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2ASR-000393-P7 for submit@debbugs.gnu.org; Sat, 19 Oct 2024 10:29:32 -0400 Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:49589) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2ASO-00038n-02 for 73854@debbugs.gnu.org; Sat, 19 Oct 2024 10:29:29 -0400 Received: from pmg2.iro.umontreal.ca (localhost.localdomain [127.0.0.1]) by pmg2.iro.umontreal.ca (Proxmox) with ESMTP id F2F068093D; Sat, 19 Oct 2024 10:28:57 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1729348133; bh=gDdwHSqJT8UTtVCHGC6iClkD3twoAznHdNAvBFgPSlE=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=Kx4mSzkm49Wgxbuor9WDH8rIva1mUtv6l2vJ7+d1fqwvVah22422LkfdEhzS9SpVU ju9g/mvfDf742Ml99HxYLRRMyzzdZaSy7+Pq0z6v2NA+9O3Oa4a4ApIiovJryrQehZ jEuaD7KOAd11q4V9aJhhBahaHXdNwnqZISt31mR39gSgj/sz66NqrBBdvI1j6mR40r o39RxWvn9+G8B5Sixb0EjE+c8pVMJsGunXuHsNuNCFghaQRoZoB7doAAhm0OOUYDUI z8Vb5c/Ph1sT6J9zV4F33EGGmdRVJY+O/Nmcusy4e+Q2CCx+ptWZ6BCAj6KTKx5h0r pUrWFcWCLFcvQ== Received: from mail01.iro.umontreal.ca (unknown [172.31.2.1]) by pmg2.iro.umontreal.ca (Proxmox) with ESMTP id 0515280904; Sat, 19 Oct 2024 10:28:53 -0400 (EDT) Received: from pastel (69-196-161-60.dsl.teksavvy.com [69.196.161.60]) by mail01.iro.umontreal.ca (Postfix) with ESMTPSA id C65E512077C; Sat, 19 Oct 2024 10:28:52 -0400 (EDT) From: Stefan Monnier In-Reply-To: <8634ksl34a.fsf@gnu.org> (Eli Zaretskii's message of "Sat, 19 Oct 2024 14:54:29 +0300") Message-ID: References: <86ed4cl8no.fsf@gnu.org> <87ldykxrba.fsf@gmx.net> <8634ksl34a.fsf@gnu.org> Date: Sat, 19 Oct 2024 10:28:52 -0400 User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-SPAM-INFO: Spam detection results: 0 ALL_TRUSTED -1 Passed through trusted hosts only via SMTP BAYES_00 -1.9 Bayes spam probability is 0 to 1% DKIM_SIGNED 0.1 Message has a DKIM or DK signature, not necessarily valid DKIM_VALID -0.1 Message has at least one valid DKIM or DK signature DKIM_VALID_AU -0.1 Message has a valid DKIM or DK signature from author's domain DKIM_VALID_EF -0.1 Message has a valid DKIM or DK signature from envelope-from domain X-SPAM-LEVEL: X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) >> diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el >> index 6fc49800018..acb5bb4b860 100644 >> --- a/lisp/textmodes/tex-mode.el >> +++ b/lisp/textmodes/tex-mode.el >> @@ -2530,6 +2530,7 @@ tex-compile >> (if (tex-shell-running) >> (tex-kill-job) >> (tex-start-shell)) >> + (setq tex-print-file (expand-file-name (tex-main-file))) >> (tex-send-tex-command cmd dir)))) >> >> (defun tex-start-tex (command file &optional dir) >> >> But I'm not familiar with the tex-mode.el code and don't know if this >> change might have unwanted consequences (though it seems prima facie >> safe). > > Stefan, do you agree with this fix? No objections here. Personally, I use `C-c C-c` to view the PDF (i.e. `C-c C-c` first to compile the TeX file, then a second time to view the result). So, maybe the patch below would also help. Stefan diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el index 6fc49800018..f27bd1620e1 100644 --- a/lisp/textmodes/tex-mode.el +++ b/lisp/textmodes/tex-mode.el @@ -2212,6 +2212,7 @@ tex-compile-commands t "%r.dvi") ("xdvi %r &" "%r.dvi") ("\\doc-view \"%r.pdf\"" "%r.pdf") + ("evince %r.pdf &" "%r.pdf") ("xpdf %r.pdf &" "%r.pdf") ("gv %r.ps &" "%r.ps") ("yap %r &" "%r.dvi") From unknown Sun Jun 15 13:02:16 2025 X-Loop: help-debbugs@gnu.org Subject: bug#73854: 29.4; tex-mode: unexpected and inconsistent behaviour of `tex-compile`, `tex-file`, and `tex-view` Resent-From: Stephen Berman Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 21 Oct 2024 09:23:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 73854 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Stefan Monnier Cc: Eli Zaretskii , 73854@debbugs.gnu.org, thales1@protonmail.com Received: via spool by 73854-submit@debbugs.gnu.org id=B73854.172950257625884 (code B ref 73854); Mon, 21 Oct 2024 09:23:02 +0000 Received: (at 73854) by debbugs.gnu.org; 21 Oct 2024 09:22:56 +0000 Received: from localhost ([127.0.0.1]:50230 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2ocq-0006jP-2H for submit@debbugs.gnu.org; Mon, 21 Oct 2024 05:22:56 -0400 Received: from mout.gmx.net ([212.227.17.22]:39463) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2ocl-0006j8-Vm for 73854@debbugs.gnu.org; Mon, 21 Oct 2024 05:22:54 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmx.net; s=s31663417; t=1729502526; x=1730107326; i=stephen.berman@gmx.net; bh=OC8Md9rrfexKlQgzWRfWtN2rz8OeTjGORItLZbVLoUE=; h=X-UI-Sender-Class:From:To:Cc:Subject:In-Reply-To:References:Date: Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding:cc: content-transfer-encoding:content-type:date:from:message-id: mime-version:reply-to:subject:to; b=B+LFB8y+IApHvXV/7iYteq/KtlzqeZkglsCTGXpM8d7W6LJtcW524oFEsuyQM13+ Ulw4sbZaK+0w8PWOt32FFGiOeup/Plr1SyqCfBLMPUpqm303MDSMX9VqInlX15vQa JqnMYMJqiVACQBSpFA6i/iQDvV37Kctf/mgy7i05MH0crjBewg8lR5S8uFD0T8Evk jRhrjEp3UNTzVwWFphrRDgEy1SJ8d2+lG91suc9RFqjx2NJyP7r3LAQBDeogq+w/9 gLVH6GBIk2x+5kPD90RxY4Mbkz3qRkim1tFr83QsmSmvcCo1s8uqZKjOVKqOeyl0A up0OnyJFQl0n2UYGsQ== X-UI-Sender-Class: 724b4f7f-cbec-4199-ad4e-598c01a50d3a Received: from strobelfssd ([88.130.48.115]) by mail.gmx.net (mrgmx104 [212.227.17.168]) with ESMTPSA (Nemesis) id 1N6KYb-1u0hVs3dYv-016iWt; Mon, 21 Oct 2024 11:22:06 +0200 From: Stephen Berman In-Reply-To: (Stefan Monnier's message of "Sat, 19 Oct 2024 10:28:52 -0400") References: <86ed4cl8no.fsf@gnu.org> <87ldykxrba.fsf@gmx.net> <8634ksl34a.fsf@gnu.org> Date: Mon, 21 Oct 2024 11:22:02 +0200 Message-ID: <87o73dyfnp.fsf@gmx.net> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Provags-ID: V03:K1:UDEqzJz/3osWJx918uZbHv8HSHlhSd9fZa+7ZthU1T47ZuqZhGV eHaRM2RagyKEeD/a8vWedIBhJlhL5SgCcrZ9o7BWGHzv/72Yxqe3LaCzM6/7KjtJMlcy7ka SsB/J4Dd2ki9fvwh9/LVPqEF2Z4tq+3EBsBwbLgWjLfmK478EIvMhYVBEUW3HuyzYJqj41M TmvThLx0uyZUUUSNBezig== X-Spam-Flag: NO UI-OutboundReport: notjunk:1;M01:P0:/1PTZytjkjo=;NOxnQ+ZePDs0rzkrfxELVrF84dX YO7yLzvka8DYyEcNqWKFsb684ggRCQi79M2IEFS5AT9wN7SrD/YTitu9GdzmB56jdXfXWZq2c /riWK/H9K9AhKOhyd3T+GsO2AEwuHJtjPBCYtjWq+wb+E6q4J3SGKJu29VVycy+u/Aymw3NuV 6htTKH140gi1eicxBSLxPdmmU5wuWmNjjWGJs9bk660J7zotfbz6tvFB5p56UKV85FlQbnjd9 R2WO2jO0/ffPxwckzD0u/rkuc+GyTB+a0Y6a6llwqM6YJdzrf2LJCNKG3i++0D8vryv8aCACG TxADv9NMD2Xw2dcnmLPKJAkm6YQUzDhJp+5uCYKu9EOGFFjA6Y4I+3OKJ3AiAtqyRXrNUOttP cMM5CtGNPXT/H0ZAcalJtLSKa580dF8pvHmBvwJdIQF5nRVxGTX1rI4XRnj9PWnMFFMxG+2ZD 6blCojhXPJHN9XaCmBjyU39jAcXzmbhCJfzbrLvtHZQnKf4RbqtrZwhH3C5MVxLiUTLcEeOxJ 5EnmWJl6GrKJ5B4m9Wvs4Ha9xW576CsynOUe+EcLhEaIOpdPxuWPm+5sspIdP3zBWOB5GinYp tNUzAYhCv15HgRSjxc29+dTDE8Xegr0YK4TWojzypTGFWGoJXtdhyXJPcJI6xNjQ4vRQWRsbE 0LElrZV0lthNIu1KCmFKI85oVpMaojjOXJq3gW+FR6Z4wA0KcVP9dhMyzruEfFvmULGpHUWeT Z37CkBP0JWwgmBoUd//3yzBjO5xHl/3ltgP0x/5EHfVPnOXjw6H3uzYIvdSkTSqj4Wkvzws7A VqthF8gVC1BSsxzkHJhokeww== X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) On Sat, 19 Oct 2024 10:28:52 -0400 Stefan Monnier wrote: >>> diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el >>> index 6fc49800018..acb5bb4b860 100644 >>> --- a/lisp/textmodes/tex-mode.el >>> +++ b/lisp/textmodes/tex-mode.el >>> @@ -2530,6 +2530,7 @@ tex-compile >>> (if (tex-shell-running) >>> (tex-kill-job) >>> (tex-start-shell)) >>> + (setq tex-print-file (expand-file-name (tex-main-file))) >>> (tex-send-tex-command cmd dir)))) >>>=20 >>> (defun tex-start-tex (command file &optional dir) >>>=20 >>> But I'm not familiar with the tex-mode.el code and don't know if this >>> change might have unwanted consequences (though it seems prima facie >>> safe). >> >> Stefan, do you agree with this fix? > > No objections here. > Personally, I use `C-c C-c` to view the PDF (i.e. `C-c C-c` first to > compile the TeX file, then a second time to view the result). > > So, maybe the patch below would also help. > > > Stefan > > diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el > index 6fc49800018..f27bd1620e1 100644 > --- a/lisp/textmodes/tex-mode.el > +++ b/lisp/textmodes/tex-mode.el > @@ -2212,6 +2212,7 @@ tex-compile-commands > t "%r.dvi") > ("xdvi %r &" "%r.dvi") > ("\\doc-view \"%r.pdf\"" "%r.pdf") > + ("evince %r.pdf &" "%r.pdf") > ("xpdf %r.pdf &" "%r.pdf") > ("gv %r.ps &" "%r.ps") > ("yap %r &" "%r.dvi") Indeed, with a suitable entry for viewing a PDF, typing `C-c C-c' twice does the job. In my case, however, a suitable entry is not evince, since I don't have that program installed here, but I do have mupdf and with an entry for it, `C-c C-c' calls it and the PDF is displayed. So this raises the question of whether tex-compile-commands should be enhanced with all known free software PDF viewers, or, more maintainer-friendly, turned into a defcustom, so users can just added their preferred entries. But that's a complementary issue to the present bug report, since without my patch for tex-compile even with a suitable entry in tex-compile-commands, `C-c C-v' (tex-view) still complains "No appropriate =E2=80=98.dvi=E2=80=99 file could be found" and d= oes not call the program specified by tex-dvi-view-command to display the PDF. So should I just go ahead and install my patch? And if so, to master or to emacs-30 (which has the same issue)? Steve Berman From unknown Sun Jun 15 13:02:16 2025 X-Loop: help-debbugs@gnu.org Subject: bug#73854: 29.4; tex-mode: unexpected and inconsistent behaviour of `tex-compile`, `tex-file`, and `tex-view` Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 21 Oct 2024 09:56:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 73854 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Stephen Berman Cc: thales1@protonmail.com, 73854@debbugs.gnu.org, monnier@iro.umontreal.ca Received: via spool by 73854-submit@debbugs.gnu.org id=B73854.172950453931543 (code B ref 73854); Mon, 21 Oct 2024 09:56:01 +0000 Received: (at 73854) by debbugs.gnu.org; 21 Oct 2024 09:55:39 +0000 Received: from localhost ([127.0.0.1]:50273 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2p8U-0008CM-MZ for submit@debbugs.gnu.org; Mon, 21 Oct 2024 05:55:39 -0400 Received: from eggs.gnu.org ([209.51.188.92]:35946) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2p8S-0008Bs-Ia for 73854@debbugs.gnu.org; Mon, 21 Oct 2024 05:55:37 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t2p7v-0005LY-PI; Mon, 21 Oct 2024 05:55:03 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:References:Subject:In-Reply-To:To:From: Date; bh=zrwjAsdoft3LwBv/n7VAxwDBNahvQT9E32m1291GF08=; b=q5opc9KBp5VQM8uoqdNJ q9EonrIlXqBlkURIAmgs7BoCVHab2S3s3j4zY6aFqU1GcSlkTgsEIVW4uTsXFEQXhou2qneeO2bjD rH9AtU5igRkQcTGC0Y28I8syitSj3AXOKisXxTiur7FZAWp9gMTALTHqiCh/Ovv1VV0Qo7Hd/fWzt pCX6ApZGDZpvNcREm5k9QRUtQ0dfIlHyydvlsadT9Lj9oEY3dT88n2NCzVLMbLnKPoznAZSqtK4e4 vIK0trNl9YCOsSBpLRRvsgXH2YDMFnLyN/1B61OhHLSlDhpuLuiz6HcsfM3hHsonVVPd1KWn31oPg zCM7moOgmSgeNw==; Date: Mon, 21 Oct 2024 12:55:01 +0300 Message-Id: <86o73dhjbe.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: <87o73dyfnp.fsf@gmx.net> (message from Stephen Berman on Mon, 21 Oct 2024 11:22:02 +0200) References: <86ed4cl8no.fsf@gnu.org> <87ldykxrba.fsf@gmx.net> <8634ksl34a.fsf@gnu.org> <87o73dyfnp.fsf@gmx.net> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Stephen Berman > Cc: Eli Zaretskii , thales1@protonmail.com, > 73854@debbugs.gnu.org > Date: Mon, 21 Oct 2024 11:22:02 +0200 > > > diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el > > index 6fc49800018..f27bd1620e1 100644 > > --- a/lisp/textmodes/tex-mode.el > > +++ b/lisp/textmodes/tex-mode.el > > @@ -2212,6 +2212,7 @@ tex-compile-commands > > t "%r.dvi") > > ("xdvi %r &" "%r.dvi") > > ("\\doc-view \"%r.pdf\"" "%r.pdf") > > + ("evince %r.pdf &" "%r.pdf") > > ("xpdf %r.pdf &" "%r.pdf") > > ("gv %r.ps &" "%r.ps") > > ("yap %r &" "%r.dvi") > > Indeed, with a suitable entry for viewing a PDF, typing `C-c C-c' twice > does the job. In my case, however, a suitable entry is not evince, > since I don't have that program installed here, but I do have mupdf and > with an entry for it, `C-c C-c' calls it and the PDF is displayed. So > this raises the question of whether tex-compile-commands should be > enhanced with all known free software PDF viewers, or, more > maintainer-friendly, turned into a defcustom, so users can just added > their preferred entries. But that's a complementary issue to the > present bug report, since without my patch for tex-compile even with a > suitable entry in tex-compile-commands, `C-c C-v' (tex-view) still > complains "No appropriate ‘.dvi’ file could be found" and does not call > the program specified by tex-dvi-view-command to display the PDF. So > should I just go ahead and install my patch? And if so, to master or to > emacs-30 (which has the same issue)? Please install on master, and thanks. As for the patch to tex-compile-commands, I think both evince and mupdf entries should be added to it. Whether to make it a defcustom is a separate issue, with much wider consequences, and I wouldn't do that at this time. From unknown Sun Jun 15 13:02:16 2025 X-Loop: help-debbugs@gnu.org Subject: bug#73854: 29.4; tex-mode: unexpected and inconsistent behaviour of `tex-compile`, `tex-file`, and `tex-view` Resent-From: Stephen Berman Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 21 Oct 2024 10:55:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 73854 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Eli Zaretskii Cc: thales1@protonmail.com, 73854@debbugs.gnu.org, monnier@iro.umontreal.ca Received: via spool by 73854-submit@debbugs.gnu.org id=B73854.17295080669519 (code B ref 73854); Mon, 21 Oct 2024 10:55:01 +0000 Received: (at 73854) by debbugs.gnu.org; 21 Oct 2024 10:54:26 +0000 Received: from localhost ([127.0.0.1]:50389 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2q3N-0002TR-VF for submit@debbugs.gnu.org; Mon, 21 Oct 2024 06:54:26 -0400 Received: from mout.gmx.net ([212.227.17.20]:35051) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2q3K-0002TB-9H for 73854@debbugs.gnu.org; Mon, 21 Oct 2024 06:54:23 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmx.net; s=s31663417; t=1729508021; x=1730112821; i=stephen.berman@gmx.net; bh=4+gKPE6/Q/edjwduylJ14zWxw8E0PT0+5Rgohk9E2z4=; h=X-UI-Sender-Class:From:To:Cc:Subject:In-Reply-To:References:Date: Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding:cc: content-transfer-encoding:content-type:date:from:message-id: mime-version:reply-to:subject:to; b=FZIFUuF6LnIxm5fcbs2oY+FaVxu7QyhhfDafw83gQWBeOKrBhjvfYpNojQVFs761 T2Jk7aJka2CwvHSSA/5k37Ka6iKrfIejdpTKpN551ZZy++yJcL6AAozck1rjzSun+ qrkcbM5bw/lTW2bLx8p8aolkykMkuHs/K0HNR5+LT4/M8XTzravO9/aNcEtbqpbp4 w1oq7f4LUlyxawybcaWgk2XV42IiO+ZH2MlRV0cGIjJ2Q/7ZMMOaJ4lHjoPebHnt4 l8rp7MF0DrgxYEr0DPJ1XSjbw7C+r9avtsl2Vje5ZaTbFv1P6byyM3qw1EgYbSsgF eL/FPGtkYgiDDwgwng== X-UI-Sender-Class: 724b4f7f-cbec-4199-ad4e-598c01a50d3a Received: from strobelfssd ([88.130.48.115]) by mail.gmx.net (mrgmx105 [212.227.17.168]) with ESMTPSA (Nemesis) id 1N7iCg-1txdXq47CE-014nOP; Mon, 21 Oct 2024 12:53:41 +0200 From: Stephen Berman In-Reply-To: <86o73dhjbe.fsf@gnu.org> (Eli Zaretskii's message of "Mon, 21 Oct 2024 12:55:01 +0300") References: <86ed4cl8no.fsf@gnu.org> <87ldykxrba.fsf@gmx.net> <8634ksl34a.fsf@gnu.org> <87o73dyfnp.fsf@gmx.net> <86o73dhjbe.fsf@gnu.org> Date: Mon, 21 Oct 2024 12:53:39 +0200 Message-ID: <87jze1ybf0.fsf@gmx.net> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Provags-ID: V03:K1:ckZ+sMWsya0gUDD/GMaZ3lmKbDoiwBCRKse1KXrxTU55Bmc7Yuu V3Wj22xioxAbvelR9iznerwfvWYdQfghgUYJyjm6FFcn6Iecta7MwmKizeeTLvmc/kT/C6Q KIbiwTyjSzAXj15P4AFqFLaxfyFybb0C8TP9z8PPV6Z9JOKPHsJoEGm+LmpQuuHWtW7oAH2 /GpubwCQJIu+d3CdWq/cA== X-Spam-Flag: NO UI-OutboundReport: notjunk:1;M01:P0:To78n8Uliag=;2QiGHFtyDyw2XgkXfCkgEbTLMx4 OR2q6bGGdLRqcgut7k3JrlvghauKw9ia3FV8DylMRnUtmgo6RwUe43YNmiy/MjCUSYDQXVJOM SVMDwURI1tDDM6N1pJmiswqbnIEquJzTptY1cCm2+qJowZEjb5Bckk/wrYw6b/QPzSXkh8eL2 YTZBs7741QNOK0CYiqSzleqtv+ktp9z738gsgYh4nN3CMvBZcbj29leYvQgb2pOEGtDGoGlFi /Lzd+a+7HUi/gf8xHnr18d37C0e6YGa8r06Uk9qffnRuC8yN3Se6D0FwZd5cZ7Cual4Wafe+B rZJExclJDPEQWyV5mpTVoixU6wfK6VMFrJrhi1oPtAt3Nyl/Mm1PV/S7jQ1VBy4GuGskVNNdW DrkJe7twhP2SC/apRpPHbW8yrZPUwOwjtJTv0SOF4r6EMaVTp7rJSajeEjF+6M2KpxWrQ1Mag oBI8XmWrYXO/iiWLojaaO+04K56Q5KJ0GxoGhLA52gxixq/+sy5ufMgcxHw9eXIv3QsxHAE3i KrtRNny6pqCX3GMxpD0UMuKUWMZhor1kyA0mLMxVQJJVMy5v47nFWr46uFKAxWkcb984VmeDX eZDOGaF2vO9tN4LdftcythG12aKp/Zpz68NOLwNuWhmElM5rzOigNy/e5HOElGy/uBva0aKhR iNYrMPZU3x/arg57GiQ92vZbry3glAhexcaxX5aEQgC0/oUjdRUhKVvqCNiYTI14dgG3WGcXM aSQ7KU94kr2aoyR0F9gH9afkKCcHQ/G09+wehQhYAxkdXccjRoBgCAap7fFADyhlUDkvkvEtF bsISzlV/CBPZaf4cr8KdR6vw== X-Spam-Score: 0.3 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) On Mon, 21 Oct 2024 12:55:01 +0300 Eli Zaretskii wrote: >> From: Stephen Berman >> Cc: Eli Zaretskii , thales1@protonmail.com, >> 73854@debbugs.gnu.org >> Date: Mon, 21 Oct 2024 11:22:02 +0200 >>=20 >> > diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el >> > index 6fc49800018..f27bd1620e1 100644 >> > --- a/lisp/textmodes/tex-mode.el >> > +++ b/lisp/textmodes/tex-mode.el >> > @@ -2212,6 +2212,7 @@ tex-compile-commands >> > t "%r.dvi") >> > ("xdvi %r &" "%r.dvi") >> > ("\\doc-view \"%r.pdf\"" "%r.pdf") >> > + ("evince %r.pdf &" "%r.pdf") >> > ("xpdf %r.pdf &" "%r.pdf") >> > ("gv %r.ps &" "%r.ps") >> > ("yap %r &" "%r.dvi") >>=20 >> Indeed, with a suitable entry for viewing a PDF, typing `C-c C-c' twice >> does the job. In my case, however, a suitable entry is not evince, >> since I don't have that program installed here, but I do have mupdf and >> with an entry for it, `C-c C-c' calls it and the PDF is displayed. So >> this raises the question of whether tex-compile-commands should be >> enhanced with all known free software PDF viewers, or, more >> maintainer-friendly, turned into a defcustom, so users can just added >> their preferred entries. But that's a complementary issue to the >> present bug report, since without my patch for tex-compile even with a >> suitable entry in tex-compile-commands, `C-c C-v' (tex-view) still >> complains "No appropriate =E2=80=98.dvi=E2=80=99 file could be found" an= d does not call >> the program specified by tex-dvi-view-command to display the PDF. So >> should I just go ahead and install my patch? And if so, to master or to >> emacs-30 (which has the same issue)? > > Please install on master, and thanks. Done in commit 1f8fbae8df7. I also updated the doc string of tex-print-file to mention tex-compile. > As for the patch to tex-compile-commands, I think both evince and > mupdf entries should be added to it. I added these in the commit as well. > Whether to make it a defcustom > is a separate issue, with much wider consequences, and I wouldn't do > that at this time. Ok. Should the OP confirm the fix before we close the bug? Steve Berman From unknown Sun Jun 15 13:02:16 2025 X-Loop: help-debbugs@gnu.org Subject: bug#73854: 29.4; tex-mode: unexpected and inconsistent behaviour of `tex-compile`, `tex-file`, and `tex-view` Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 21 Oct 2024 12:03:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 73854 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Stephen Berman Cc: thales1@protonmail.com, 73854@debbugs.gnu.org, monnier@iro.umontreal.ca Received: via spool by 73854-submit@debbugs.gnu.org id=B73854.172951215521652 (code B ref 73854); Mon, 21 Oct 2024 12:03:01 +0000 Received: (at 73854) by debbugs.gnu.org; 21 Oct 2024 12:02:35 +0000 Received: from localhost ([127.0.0.1]:50481 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2r7K-0005d9-Hj for submit@debbugs.gnu.org; Mon, 21 Oct 2024 08:02:34 -0400 Received: from eggs.gnu.org ([209.51.188.92]:40992) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2r7I-0005cX-3P for 73854@debbugs.gnu.org; Mon, 21 Oct 2024 08:02:33 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t2r4d-0003wC-O2; Mon, 21 Oct 2024 07:59:48 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=T3A511jNZC1pL8y0ENrSoKmcjEglkDXztxhQYn0aKEg=; b=XhOxBwGeZ8wl FyLW6bi+v8nccFWBsrYRMGjS48eyQhqSYsQubFQxE/uRFWR22S2hlN2YachGeNilflANk/u4Ne0CJ QN0uGbaccGdpNCYkTnTtWLEkWm+8LxkwnwWFRh+/ZJEudtX/4xLRmueuK6LSKrYP/B6e/s+M+63bl /EQYoMiHZE2PCvP2MNTsPAmNV0lSEZ4OfTz6rxJXrsgqUWNuBV7dM9lUhEMfvd7WaRmglvkEhKrB6 eLLVSL+wvj3ZBPOTKL8UnIUMu62t+ltKbdNx40ldDww/Ewt8TjpCAO65AtTR4s7mlNUH9F2GGR791 IsDJXFEXdCRt9HVuyxmDPg==; Date: Mon, 21 Oct 2024 14:59:27 +0300 Message-Id: <86bjzdhdk0.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: <87jze1ybf0.fsf@gmx.net> (message from Stephen Berman on Mon, 21 Oct 2024 12:53:39 +0200) References: <86ed4cl8no.fsf@gnu.org> <87ldykxrba.fsf@gmx.net> <8634ksl34a.fsf@gnu.org> <87o73dyfnp.fsf@gmx.net> <86o73dhjbe.fsf@gnu.org> <87jze1ybf0.fsf@gmx.net> X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Stephen Berman > Cc: monnier@iro.umontreal.ca, thales1@protonmail.com, 73854@debbugs.gnu.org > Date: Mon, 21 Oct 2024 12:53:39 +0200 > > On Mon, 21 Oct 2024 12:55:01 +0300 Eli Zaretskii wrote: > > > Please install on master, and thanks. > > Done in commit 1f8fbae8df7. I also updated the doc string of > tex-print-file to mention tex-compile. > > > As for the patch to tex-compile-commands, I think both evince and > > mupdf entries should be added to it. > > I added these in the commit as well. Thanks. > > Whether to make it a defcustom > > is a separate issue, with much wider consequences, and I wouldn't do > > that at this time. > > Ok. Should the OP confirm the fix before we close the bug? Yeah, let's wait for a while. From unknown Sun Jun 15 13:02:16 2025 X-Loop: help-debbugs@gnu.org Subject: bug#73854: 29.4; tex-mode: unexpected and inconsistent behaviour of `tex-compile`, `tex-file`, and `tex-view` Resent-From: Stefan Monnier Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 21 Oct 2024 13:24:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 73854 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Stephen Berman Cc: Eli Zaretskii , 73854@debbugs.gnu.org, thales1@protonmail.com Received: via spool by 73854-submit@debbugs.gnu.org id=B73854.17295170133483 (code B ref 73854); Mon, 21 Oct 2024 13:24:02 +0000 Received: (at 73854) by debbugs.gnu.org; 21 Oct 2024 13:23:33 +0000 Received: from localhost ([127.0.0.1]:50643 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2sNg-0000u5-JB for submit@debbugs.gnu.org; Mon, 21 Oct 2024 09:23:32 -0400 Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:38494) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2sNe-0000tc-11 for 73854@debbugs.gnu.org; Mon, 21 Oct 2024 09:23:31 -0400 Received: from pmg3.iro.umontreal.ca (localhost [127.0.0.1]) by pmg3.iro.umontreal.ca (Proxmox) with ESMTP id 11F06441B3D; Mon, 21 Oct 2024 09:22:58 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1729516977; bh=MplLT7x+CFZummdSqd/8PpZ4yF8q83BD+8JPFUfj618=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=jOfHpa25sXJ4Y2fDImYQZ8u8Yyy+NKFvJFpSCNLgGBaUnqzQBbWA1+BVxj8lBJHLr GMnDTQ0XLWIlYlFw2ZVOu8WB9KWPKNxJW0TdeYMlHe26oDDbVtuEsy+945NSfJ/5lR 7fvI3F4ZzUnTpUk19NvKpo5ZlkAgEBYubiKbVaUuXH4PMbPL9tWASqzkcE7Bu37+Z3 xzrWrbeLVSigkTD3/qxdVyJTWe5OW7VhqoV1Dez/gdFmzJDP2v3JySOGo1AukalOHm sSudki3Ux8U67jmoiRQbgezMlDrVLFUtv047f3oAKGGtVO/UlcNz+c/P+PvIpLE6pZ HropkkCpvkK3w== Received: from mail01.iro.umontreal.ca (unknown [172.31.2.1]) by pmg3.iro.umontreal.ca (Proxmox) with ESMTP id 0AC1C441AF3; Mon, 21 Oct 2024 09:22:57 -0400 (EDT) Received: from pastel (69-196-161-60.dsl.teksavvy.com [69.196.161.60]) by mail01.iro.umontreal.ca (Postfix) with ESMTPSA id CF1A5120896; Mon, 21 Oct 2024 09:22:56 -0400 (EDT) From: Stefan Monnier In-Reply-To: <87o73dyfnp.fsf@gmx.net> (Stephen Berman's message of "Mon, 21 Oct 2024 11:22:02 +0200") Message-ID: References: <86ed4cl8no.fsf@gnu.org> <87ldykxrba.fsf@gmx.net> <8634ksl34a.fsf@gnu.org> <87o73dyfnp.fsf@gmx.net> Date: Mon, 21 Oct 2024 09:22:55 -0400 User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-SPAM-INFO: Spam detection results: 0 ALL_TRUSTED -1 Passed through trusted hosts only via SMTP BAYES_00 -1.9 Bayes spam probability is 0 to 1% DKIM_SIGNED 0.1 Message has a DKIM or DK signature, not necessarily valid DKIM_VALID -0.1 Message has at least one valid DKIM or DK signature DKIM_VALID_AU -0.1 Message has a valid DKIM or DK signature from author's domain DKIM_VALID_EF -0.1 Message has a valid DKIM or DK signature from envelope-from domain X-SPAM-LEVEL: X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > Indeed, with a suitable entry for viewing a PDF, typing `C-c C-c' twice > does the job. In my case, however, a suitable entry is not evince, > since I don't have that program installed here, but I do have mupdf and > with an entry for it, `C-c C-c' calls it and the PDF is displayed. So > this raises the question of whether tex-compile-commands should be > enhanced with all known free software PDF viewers, or, more > maintainer-friendly, turned into a defcustom, so users can just added > their preferred entries. That's a problem, indeed, and I'm not sure how best to address it. Just making it a `defcustom` might be OK, but the UI would be a bit complex for the users who just want to add their favorite PDF viewer. > But that's a complementary issue to the present bug report, Agreed, sorry. > So should I just go ahead and install my patch? Yes, please. > And if so, to master or to emacs-30 (which has the same issue)? OT1H, it looks safe to me, but OTOH it's a long standing issue so there's no hurry either. Eli? Stefan From unknown Sun Jun 15 13:02:16 2025 X-Loop: help-debbugs@gnu.org Subject: bug#73854: 29.4; tex-mode: unexpected and inconsistent behaviour of `tex-compile`, `tex-file`, and `tex-view` Resent-From: Stefan Monnier Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 21 Oct 2024 13:34:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 73854 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Stephen Berman Cc: Eli Zaretskii , 73854@debbugs.gnu.org, thales1@protonmail.com Received: via spool by 73854-submit@debbugs.gnu.org id=B73854.17295176276152 (code B ref 73854); Mon, 21 Oct 2024 13:34:02 +0000 Received: (at 73854) by debbugs.gnu.org; 21 Oct 2024 13:33:47 +0000 Received: from localhost ([127.0.0.1]:50668 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2sXa-0001b9-MY for submit@debbugs.gnu.org; Mon, 21 Oct 2024 09:33:47 -0400 Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:13374) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2sXY-0001at-DJ for 73854@debbugs.gnu.org; Mon, 21 Oct 2024 09:33:45 -0400 Received: from pmg1.iro.umontreal.ca (localhost.localdomain [127.0.0.1]) by pmg1.iro.umontreal.ca (Proxmox) with ESMTP id 6C5BE1000C3; Mon, 21 Oct 2024 09:33:12 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1729517591; bh=oa0PoyVHkIoIOjxWZRcgFYXhLpEgZuXOD9XDAPSH2uk=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=W2NG6XpEovFnfV3HtczhECBcm+fdmKInimSMd678qoJgY+M+GHWY1qDX1LMxqT4ZF yBeMPTHUlvPsAZux4ibQAeSL0Jk2hyuLzpcxOKB/CldHHw9d+WCRwWIy9VLl2dai5K 5Yh/aDMaKi5zGaElRG1fwDYAvq2EMTHFxxgofjYIKFJfkF4ccIAG6bgrAVFyKPJCsT I53Qk/dZdwZCK9EodPK/brNzI3Sd9NC/qol1Kqr5JyvjW1O57HnqWiWPj4D8TYdqp8 CO4LCtqPFk2bxvveWDfNIgNgGTchIGjpTMgJ0WHX9Qiu2j4eOR4iv1gHKivyBJZ2Wf TgEf+thzaVMtA== Received: from mail01.iro.umontreal.ca (unknown [172.31.2.1]) by pmg1.iro.umontreal.ca (Proxmox) with ESMTP id 8FA23100042; Mon, 21 Oct 2024 09:33:11 -0400 (EDT) Received: from pastel (69-196-161-60.dsl.teksavvy.com [69.196.161.60]) by mail01.iro.umontreal.ca (Postfix) with ESMTPSA id 5DF2812026C; Mon, 21 Oct 2024 09:33:11 -0400 (EDT) From: Stefan Monnier In-Reply-To: (Stefan Monnier's message of "Mon, 21 Oct 2024 09:22:55 -0400") Message-ID: References: <86ed4cl8no.fsf@gnu.org> <87ldykxrba.fsf@gmx.net> <8634ksl34a.fsf@gnu.org> <87o73dyfnp.fsf@gmx.net> Date: Mon, 21 Oct 2024 09:33:10 -0400 User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-SPAM-INFO: Spam detection results: 0 ALL_TRUSTED -1 Passed through trusted hosts only via SMTP AWL 0.023 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DKIM_SIGNED 0.1 Message has a DKIM or DK signature, not necessarily valid DKIM_VALID -0.1 Message has at least one valid DKIM or DK signature DKIM_VALID_AU -0.1 Message has a valid DKIM or DK signature from author's domain DKIM_VALID_EF -0.1 Message has a valid DKIM or DK signature from envelope-from domain X-SPAM-LEVEL: X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > OT1H, it looks safe to me, but OTOH it's a long standing issue so > there's no hurry either. Eli? Scratch that question: I see I was late to the party and it's already been answered. Thanks! Stefan From unknown Sun Jun 15 13:02:16 2025 X-Loop: help-debbugs@gnu.org Subject: bug#73854: 29.4; tex-mode: unexpected and inconsistent behaviour of `tex-compile`, `tex-file`, and `tex-view` Resent-From: Stephen Berman Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 21 Oct 2024 13:39:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 73854 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Stefan Monnier Cc: Eli Zaretskii , 73854@debbugs.gnu.org, thales1@protonmail.com Received: via spool by 73854-submit@debbugs.gnu.org id=B73854.17295179377048 (code B ref 73854); Mon, 21 Oct 2024 13:39:02 +0000 Received: (at 73854) by debbugs.gnu.org; 21 Oct 2024 13:38:57 +0000 Received: from localhost ([127.0.0.1]:50678 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2sca-0001pb-TJ for submit@debbugs.gnu.org; Mon, 21 Oct 2024 09:38:57 -0400 Received: from mout.gmx.net ([212.227.15.15]:51939) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2scY-0001pJ-Jw for 73854@debbugs.gnu.org; Mon, 21 Oct 2024 09:38:55 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmx.net; s=s31663417; t=1729517894; x=1730122694; i=stephen.berman@gmx.net; bh=L9M0Jea1xezw/ygo7zAllW1BUKxEr+/tKlriYyOGd2A=; h=X-UI-Sender-Class:From:To:Cc:Subject:In-Reply-To:References:Date: Message-ID:MIME-Version:Content-Type:cc:content-transfer-encoding: content-type:date:from:message-id:mime-version:reply-to:subject: to; b=WhE0vpUEcQRi52sUJkn+Tm6Y6Dgfj2OrDsz0WLJPsn7fINL1eZ0fJ+TOrcAl1E4P 65rjDO1DpTdG5FR6DgFzDVs4pqBefjmiKP1vOVPB9K1Z56G9EhqsTatwDzxlzyKTH R2v7oL9fD0FLJMWNfRfm3EsLgH6ocUbrQ9SFBdpTBuI90aTAv6MDWh4/LmEDLS2Y3 JxqflK/QN54DD5iBDLFAsZs+BT5/apjwFrqXzw8LJHi1i6GKAEoVkqATrYJuNP+Wx aOlWguJdpJ43e3esDY9OUxY74LD30Q1OEv/gge15pP6GnogArrGYbHJhCOX4pR22h rQW1tvOTO/Znj/YXGQ== X-UI-Sender-Class: 724b4f7f-cbec-4199-ad4e-598c01a50d3a Received: from strobelfssd ([88.130.48.115]) by mail.gmx.net (mrgmx005 [212.227.17.190]) with ESMTPSA (Nemesis) id 1MsYqv-1tvf9p1c9D-00xnla; Mon, 21 Oct 2024 15:38:14 +0200 From: Stephen Berman In-Reply-To: (Stefan Monnier's message of "Mon, 21 Oct 2024 09:33:10 -0400") References: <86ed4cl8no.fsf@gnu.org> <87ldykxrba.fsf@gmx.net> <8634ksl34a.fsf@gnu.org> <87o73dyfnp.fsf@gmx.net> Date: Mon, 21 Oct 2024 15:38:10 +0200 Message-ID: <87msixtw3h.fsf@gmx.net> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Provags-ID: V03:K1:6ArDrQllFjwMqKXa9MOlXYiGEvFTUHpih4UgIb+0VrSFMBXxabm /fLT6NOmW9STXfmOxQkS4LXdTOrPgUlr9FJy6/EYMHrT3MSrpA2K6YwJApIjwnqn++V7Gcz qWCs1mi9RuYSK77lEik6/nHIRQR/f7rlGDcKNhAav+Axhi1IStfyS6v5e5aedFMmpEBvOY+ GGeaGfpGgK4jcVQHxj6rw== X-Spam-Flag: NO UI-OutboundReport: notjunk:1;M01:P0:OfSb7d72GX0=;2rVej524HHKs8+HFr++cCrk0err c1DTPiUFGdaoHQ79BOnNe1OCUihBRZl7/kRLa8neArOTnSWgJgrfSPFYYIhWLWp7spcwHrfu2 hjpBmj3zbqc0OSmCFaMKXWVIDvQYI9iioYKEj5B1hDMmgHVao+rnfeALW70ud7do78UhzZtni NoevguOCtfVkxwasjJbaoVbI3Ykf/6MJKGEV0IBPugdzvqd2F9TJOOwzj0aKaRTv1u8IzStmM 3RD3nNyM8JzMyUOgR3k4JVhNGbqnpw2BgzJ4gGoMtueOTyObtqgnxI/clr7craVIyFW9l45Y9 uwczgEpkIBMiFS0V/8bA+ntpG8NFai786OUfAVvcPNyKCpwZX6WGbIE+ajkO4ZJ7lKrzbV4XU NZitAz7lrcasdZfy+Nz3hzVQwyh9AZzG9W0Tu3ycFE8c3qrcHkLSo/p9Zair8lAcr2bdk8G9F W2/kcHdS1FyWCMm35EuJpPn67sBTiW+sSoCrlIF7y0igk6fVUi8HSe65uqybNYO/IKmVfb8jL DCmitJOt1rYFn46IzJ8nG+8tqAfvI+/xQ4ADjW/OdONUfTI6XuQ5zi0wXddmv3WcwqwrFwC/k UrfxP0zQ+d6QWX9uI39wFG7ZNV8O3nIYWNvDoWe3oxFHiJlNc/Bp7fwVvDQLF3kQ+YFEDe2bn PhenES1HjR4awu68g5sKU3dOYfl+vMRIC+Txp9cRa/8xaTmoo6/IXgd3g914OsJEXIqrGDvfC HwV84ynuoGOaaz9NzRjL/2sygVbqR/2a56FA6fIHIH9Zy9IKwxpzYM1xIEg0K/rrPZrUYbNlg V4VpqHJUnum779ovdMybgCQQ== X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) On Mon, 21 Oct 2024 09:33:10 -0400 Stefan Monnier wrote: >> OT1H, it looks safe to me, but OTOH it's a long standing issue so >> there's no hurry either. Eli? > > Scratch that question: I see I was late to the party No problem, drinks are still available at the bar ;-) > and it's already > been answered. Thanks! > > > Stefan From unknown Sun Jun 15 13:02:16 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Thalis Charakas Subject: bug#73854: closed (Re: bug#73854: 29.4; tex-mode: unexpected and inconsistent behaviour of `tex-compile`, `tex-file`, and `tex-view`) Message-ID: References: <867c9cok1f.fsf@gnu.org> X-Gnu-PR-Message: they-closed 73854 X-Gnu-PR-Package: emacs Reply-To: 73854@debbugs.gnu.org Date: Sat, 09 Nov 2024 09:05:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1731143102-3746-1" This is a multi-part message in MIME format... ------------=_1731143102-3746-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #73854: 29.4; tex-mode: unexpected and inconsistent behaviour of `tex-compi= le`, `tex-file`, and `tex-view` which was filed against the emacs package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 73854@debbugs.gnu.org. --=20 73854: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D73854 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1731143102-3746-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 73854-done) by debbugs.gnu.org; 9 Nov 2024 09:04:24 +0000 Received: from localhost ([127.0.0.1]:53371 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t9hOJ-0000xT-Ps for submit@debbugs.gnu.org; Sat, 09 Nov 2024 04:04:24 -0500 Received: from eggs.gnu.org ([209.51.188.92]:37260) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t9hOH-0000xB-6V for 73854-done@debbugs.gnu.org; Sat, 09 Nov 2024 04:04:21 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t9hOB-0000eP-KZ; Sat, 09 Nov 2024 04:04:15 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=+1kCbo3CAyz4SVgmzfN/7aJbAzEvRLic6mKb1SZLcAo=; b=Qwk69V7/yso/ KVZGOdYA1//fJclPEbnYu4nfmqo5bmAomgBdemd+1CEAAw2FhzAV/w03OL1/FMEnYKchK4ejxLK3v gbXZUw8b9y+UMeIZQl8Yuf9giTh9lorR3xmDPo65Mq4MZHUmxk28RIyObT5aJEgfbZfPNQzDm0dx+ 4sZTZhdSI6D4LMCEMxCPkUXtZGGxygX5mdDAoGUtd1wQfMy8k0XIZNYtijhJ47o5J8FkPa6YGNMwU G4h7UgUjbw7TRgyKNI0AFBygf7zKFJeQy6MsF9KTRze6s1ZkXVTYfAJLAhUhNzQjGwT98RVTl8r9Y lpad8rdAQqC5Lq8b98ZguQ==; Date: Sat, 09 Nov 2024 11:04:12 +0200 Message-Id: <867c9cok1f.fsf@gnu.org> From: Eli Zaretskii To: stephen.berman@gmx.net, thales1@protonmail.com In-Reply-To: <86bjzdhdk0.fsf@gnu.org> (message from Eli Zaretskii on Mon, 21 Oct 2024 14:59:27 +0300) Subject: Re: bug#73854: 29.4; tex-mode: unexpected and inconsistent behaviour of `tex-compile`, `tex-file`, and `tex-view` References: <86ed4cl8no.fsf@gnu.org> <87ldykxrba.fsf@gmx.net> <8634ksl34a.fsf@gnu.org> <87o73dyfnp.fsf@gmx.net> <86o73dhjbe.fsf@gnu.org> <87jze1ybf0.fsf@gmx.net> <86bjzdhdk0.fsf@gnu.org> X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 73854-done Cc: 73854-done@debbugs.gnu.org, monnier@iro.umontreal.ca X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > Cc: thales1@protonmail.com, 73854@debbugs.gnu.org, monnier@iro.umontreal.ca > Date: Mon, 21 Oct 2024 14:59:27 +0300 > From: Eli Zaretskii > > > Ok. Should the OP confirm the fix before we close the bug? > > Yeah, let's wait for a while. No further comments within 2 weeks, so I'm now closing this bug. ------------=_1731143102-3746-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 17 Oct 2024 18:37:16 +0000 Received: from localhost ([127.0.0.1]:35605 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t1VN5-0005vc-7U for submit@debbugs.gnu.org; Thu, 17 Oct 2024 14:37:15 -0400 Received: from lists.gnu.org ([209.51.188.17]:45980) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t1VMz-0005vR-Aw for submit@debbugs.gnu.org; Thu, 17 Oct 2024 14:37:13 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t1VMd-0005Wj-Bn for bug-gnu-emacs@gnu.org; Thu, 17 Oct 2024 14:36:47 -0400 Received: from mail-0201.mail-europe.com ([51.77.79.158]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t1VMY-0001pX-QG for bug-gnu-emacs@gnu.org; Thu, 17 Oct 2024 14:36:46 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1729190182; x=1729449382; bh=wuzK5Qwe5nEfECic7/L8SoyaZW9uESORF/f46CXDYYE=; h=Date:To:From:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=SmKA3tweYYYXY8MqAz1fJUl6CXwJNH47Rlf7nxVv1opJ547ZkNWig5ZzXzdw9KH9Z hr/lZ19Y3fXG0797WizV9kieQrUG0vhbHPnsKhGIqCCSsYaCQt5kNLKifiy/V3GwKH uIJqmwoFeEyrJQ3dotKsPWhxjomQNHsTU66h0vkTVbPmWyDNhL9aST0Sv/QZj5T0Ul IAjJeO6n9U5Bc6yD8U+Z47NwbEaEzdMyg5nFc+T+DIIZAARzxWr2Ba8QguPN09ox32 FQ71Z1MYRgJgD5dH2HqSPPhZMXtWyIaw7oFsyLN04uGlDRTgajn023pbarS4h5ctrr Qn0o6Ydtddb5g== Date: Thu, 17 Oct 2024 18:36:19 +0000 To: "bug-gnu-emacs@gnu.org" From: Thalis Charakas Subject: 29.4; tex-mode: unexpected and inconsistent behaviour of `tex-compile`, `tex-file`, and `tex-view` Message-ID: Feedback-ID: 840084:user:proton X-Pm-Message-ID: 9cc6bdffea48d9b202ae103708e18f1a23b153bf MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=51.77.79.158; envelope-from=thales1@protonmail.com; helo=mail-0201.mail-europe.com X-Spam_score_int: -24 X-Spam_score: -2.5 X-Spam_bar: -- X-Spam_report: (-2.5 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_ENVFROM_END_DIGIT=0.25, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.1 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.1 (--) Basically, `tex-view` works, opening Evince, on a compiled .pdf only after a .dvi is created. Running 'emacs -Q' I evaluate the following in the scratch buffer, to make it so that latex is compiled to pdf: ``` (setq tex-print-file-extension ".pdf" tex-dvi-view-command "evince" tex-dvi-print-command "lpr") ``` the last two lines are following the instructions on the description of `tex-print-file-extension`. I navigate to a simple .tex in an empty directory and press `C-c C-c` which is bound by default to `tex-compile`, I press enter, as the default is `pdflatex`, and the file compiles, creating a .pdf in the directory. After that I press `C-c C-v`, which is bound to `tex-view` but Evince does not open, instead I get the message "tex-print: No appropriate =E2=80=98.dvi=E2=80=99 file could be found. If I press `C-c C-f= ` (`tex-file`) after that, a .dvi file is created, and now `tex-view` works, meaning it opens the .pdf with Evince. The fact that `tex-view` works on the .pdf only when a .dvi is first created seems like a bug. In GNU Emacs 29.4 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.38, cairo version 1.16.0) of 2024-07-22, modified by Debian built on x86-ubc-01 Windowing system distributor 'The X.Org Foundation', version 11.0.12201009 System Description: Debian GNU/Linux 12 (bookworm) Configured using: 'configure --build x86_64-linux-gnu --prefix=3D/usr --sharedstatedir=3D/var/lib --libexecdir=3D/usr/libexec --localstatedir=3D/var/lib --infodir=3D/usr/share/info --mandir=3D/usr/share/man --with-libsystemd --with-pop=3Dyes --enable-locallisppath=3D/etc/emacs:/usr/local/share/emacs/29.4/site-lisp:= /usr/local/share/emacs/site-lisp:/usr/share/emacs/29.4/site-lisp:/usr/share= /emacs/site-lisp --with-sound=3Dalsa --without-gconf --with-mailutils --with-native-compilation --build x86_64-linux-gnu --prefix=3D/usr --sharedstatedir=3D/var/lib --libexecdir=3D/usr/libexec --localstatedir=3D/var/lib --infodir=3D/usr/share/info --mandir=3D/usr/share/man --with-libsystemd --with-pop=3Dyes --enable-locallisppath=3D/etc/emacs:/usr/local/share/emacs/29.4/site-lisp:= /usr/local/share/emacs/site-lisp:/usr/share/emacs/29.4/site-lisp:/usr/share= /emacs/site-lisp --with-sound=3Dalsa --without-gconf --with-mailutils --with-native-compilation --with-cairo --with-x=3Dyes --with-x-toolkit=3Dgtk3 --with-toolkit-scroll-bars 'CFLAGS=3D-g -O2 -ffile-prefix-map=3D/build/reproducible-path/emacs-29.4+1=3D. -fstack-prot= ector-strong -Wformat -Werror=3Dformat-security -Wall' 'CPPFLAGS=3D-Wdate-time -D_FORTIFY_SOURCE=3D2' LDFLAGS=3D-Wl,-z,relro' Configured features: ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GPM GSETTINGS HARFBUZZ JPEG JSON LCMS2 LIBOTF LIBSELINUX LIBSYSTEMD LIBXML2 M17N_FLT MODULES NATIVE_COMP NOTIFY INOTIFY PDUMPER PNG RSVG SECCOMP SOUND SQLITE3 THREADS TIFF TOOLKIT_SCROLL_BARS TREE_SITTER WEBP X11 XDBE XIM XINPUT2 XPM GTK3 ZLIB Important settings: value of $LC_MONETARY: el_GR.UTF-8 value of $LC_NUMERIC: el_GR.UTF-8 value of $LC_TIME: el_GR.UTF-8 value of $LANG: en_US.UTF-8 value of $XMODIFIERS: @im=3Dibus locale-coding-system: utf-8-unix Major mode: LaTeX Minor modes in effect: shell-dirtrack-mode: t tooltip-mode: t global-eldoc-mode: t show-paren-mode: t electric-indent-mode: t mouse-wheel-mode: t tool-bar-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t line-number-mode: t transient-mark-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t Load-path shadows: None found. Features: (shadow sort mail-extr emacsbug message mailcap yank-media puny dired dired-loaddefs rfc822 mml mml-sec password-cache epa derived epg rfc6068 epg-config gnus-util mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils sh-script smie treesit executable files-x format-spec tex-mode compile text-property-search shell pcomplete comint ansi-osc ansi-color ring latexenc time-date cl-loaddefs comp comp-cstr warnings icons subr-x rx cl-seq cl-macs gv cl-extra help-mode bytecomp byte-compile cl-lib rmc iso-transl tooltip cconv eldoc paren electric uniquify ediff-hook vc-hooks lisp-float-type elisp-mode mwheel term/x-win x-win term/common-win x-dnd tool-bar dnd fontset image regexp-opt fringe tabulated-list replace newcomment text-mode lisp-mode prog-mode register page tab-bar menu-bar rfn-eshadow isearch easymenu timer select scroll-bar mouse jit-lock font-lock syntax font-core term/tty-colors frame minibuffer nadvice seq simple cl-generic indonesian philippine cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932 hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese composite emoji-zwj charscript charprop case-table epa-hook jka-cmpr-hook help abbrev obarray oclosure cl-preloaded button loaddefs theme-loaddefs faces cus-face macroexp files window text-properties overlay sha1 md5 base64 format env code-pages mule custom widget keymap hashtable-print-readable backquote threads dbusbind inotify lcms2 dynamic-setting system-font-setting font-render-setting cairo move-toolbar gtk x-toolkit xinput2 x multi-tty make-network-process native-compile emacs) Memory information: ((conses 16 104929 9925) (symbols 48 8831 0) (strings 32 26957 1346) (string-bytes 1 823130) (vectors 16 18588) (vector-slots 8 380866 9613) (floats 8 55 42) (intervals 56 359 0) (buffers 984 14)) ------------=_1731143102-3746-1--