emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/auctex 11e234b 55/95: Remove spurious entries of view s


From: Tassilo Horn
Subject: [elpa] externals/auctex 11e234b 55/95: Remove spurious entries of view settings.
Date: Sun, 16 Apr 2017 01:26:54 -0400 (EDT)

branch: externals/auctex
commit 11e234b40e7deabb837a18213a2d0133051750b8
Author: Ikumi Keita <address@hidden>
Commit: Ikumi Keita <address@hidden>

    Remove spurious entries of view settings.
    
    * tex-jp.el (TeX-view-program-list):
    (TeX-view-program-selection): Remove spurious entries, most of which
    are related with other TeX IDEs.
    cf. http://lists.gnu.org/archive/html/auctex-devel/2016-04/msg00036.html
---
 tex-jp.el | 21 ++++-----------------
 1 file changed, 4 insertions(+), 17 deletions(-)

diff --git a/tex-jp.el b/tex-jp.el
index 2d66f85..cedcc2e 100644
--- a/tex-jp.el
+++ b/tex-jp.el
@@ -218,22 +218,12 @@ For detail, see `TeX-command-list', to which this list is 
appended."
 (unless (get 'TeX-view-program-list 'saved-value)
   (setq TeX-view-program-list
        (cond
-        ;; http://oku.edu.mie-u.ac.jp/~okumura/texwiki/?AUCTeX
-        ;; $B$r;29M$K$7$F$_$?!#(B
-        ((eq system-type 'windows-nt)
-         '(("TeXworks" "TeXworks %o" "texworks")
-           ("MuPDF" "mupdf %o" "mupdf")))
-        ;; $B$3$l$G$$$$$N$+$I$&$+$OIT0B!#(B
-        ((eq system-type 'darwin)
-         '(("TeXShop" "open -a TeXShop.app %o" "open")
-           ("TeXworks" "open -a TeXworks.app %o" "open")
-           ("PictPrinter" "open -a PictPrinter.app %d" "open")
-           ("Mxdvi" "open -a Mxdvi.app %d" "open")))
+        ((memq system-type '(windows-nt darwin))
+        nil)
         (t
          (setcar (cadr (assoc "xdvi" TeX-view-program-list-builtin))
                  "%(xdvi) -unique")
-         '(("TeXworks" "texworks %o" "texworks")
-           ("MuPDF" "mupdf %o" "mupdf"))))))
+         '(("MuPDF" "mupdf %o" "mupdf"))))))
 
 ;; $B$3$l$O(B tex.el $B$K<h$jF~$l$F$b$i$&$N$OFq$7$$$+!)(B
 ;; tex-jp.el $B$,address@hidden"(Bdvi viewer $B$N%G%U%)%k%H$,(B dviout 
$B$K(B
@@ -243,10 +233,7 @@ For detail, see `TeX-command-list', to which this list is 
appended."
        (append
         (cond
          ((eq system-type 'windows-nt)
-          '((output-dvi "dviout")
-            (output-pdf "TeXworks")))
-         ((eq system-type 'darwin)
-          '((output-pdf "Preview.app")))
+          '((output-dvi "dviout")))
          (t
           nil))
         TeX-view-program-selection)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]