From: Eli Zaretskii Date: Tue, 13 Jun 2023 11:11:41 +0000 (+0300) Subject: ; Fix last change in tex-mode.el X-Git-Tag: emacs-29.0.92~28 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1f0527a312a;p=emacs.git ; Fix last change in tex-mode.el * lisp/textmodes/tex-mode.el (tex-cmd-doc-view): Remove the second argument. (Bug#63956) --- diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el index 44984697e70..294c9792f39 100644 --- a/lisp/textmodes/tex-mode.el +++ b/lisp/textmodes/tex-mode.el @@ -2426,7 +2426,7 @@ Only applies the FSPEC to the args part of FORMAT." (if cmds (tex-format-cmd (caar cmds) fspec)))))) (defun tex-cmd-doc-view (file) - (pop-to-buffer (find-file-noselect file) display-tex-shell-buffer-action)) + (pop-to-buffer (find-file-noselect file))) (defun tex-compile (dir cmd) "Run a command CMD on current TeX buffer's file in DIR."