aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2008-12-24 22:24:24 +0000
committerStefan Monnier2008-12-24 22:24:24 +0000
commit78796feb48acdbe6b7e61818a2a0a80c779234a4 (patch)
tree9909251358ed99ad4ada1be1b16d227a0beda68c
parente69790672013aebe2fefdf9f59411877728cd098 (diff)
downloademacs-78796feb48acdbe6b7e61818a2a0a80c779234a4.tar.gz
emacs-78796feb48acdbe6b7e61818a2a0a80c779234a4.zip
(tex-bibtex-file): Use tex-main-file.
-rw-r--r--lisp/ChangeLog17
-rw-r--r--lisp/textmodes/tex-mode.el9
2 files changed, 16 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0a6627eaec6..e9568488df6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,19 +1,23 @@
12008-12-24 Francois Fleuret <francois.fleuret@idiap.ch> (tiny change)
2
3 * textmodes/tex-mode.el (tex-bibtex-file): Use tex-main-file.
4
12008-12-24 Dan Nicolaescu <dann@ics.uci.edu> 52008-12-24 Dan Nicolaescu <dann@ics.uci.edu>
2 6
3 * subr.el (chmod): New defalias for set-file-modes. 7 * subr.el (chmod): New defalias for set-file-modes.
4 8
52008-12-23 Juri Linkov <juri@jurta.org> 92008-12-23 Juri Linkov <juri@jurta.org>
6 10
7 * isearch.el (isearch-filter-predicate, isearch-search): Replace 11 * isearch.el (isearch-filter-predicate, isearch-search):
8 `isearch-filter-invisible' with `isearch-filter-visible'. 12 Replace `isearch-filter-invisible' with `isearch-filter-visible'.
9 (isearch-filter-visible): Renamed from 13 (isearch-filter-visible): Rename from
10 `isearch-filter-invisible'. Doc fix. 14 `isearch-filter-invisible'. Doc fix.
11 15
12 * dired-aux.el (dired-isearch-filenames-toggle): Use the original 16 * dired-aux.el (dired-isearch-filenames-toggle): Use the original
13 value from `dired-isearch-filter-predicate-orig' instead of the 17 value from `dired-isearch-filter-predicate-orig' instead of the
14 symbol `isearch-filter-invisible'. Doc fix. 18 symbol `isearch-filter-invisible'. Doc fix.
15 (dired-isearch-filter-filenames): Replace 19 (dired-isearch-filter-filenames): Doc fix.
16 `isearch-filter-invisible' with `isearch-filter-visible'. Doc fix. 20 Replace `isearch-filter-invisible' with `isearch-filter-visible'.
17 21
18 * info.el (Info-find-node-2): Use negative offset 2 instead of 1 22 * info.el (Info-find-node-2): Use negative offset 2 instead of 1
19 for Info-point-loc since it is more correct in all cases. 23 for Info-point-loc since it is more correct in all cases.
@@ -38,7 +42,8 @@
38 42
392008-12-22 Ulf Jasper <ulf.jasper@web.de> 432008-12-22 Ulf Jasper <ulf.jasper@web.de>
40 44
41 * net/newst-backend.el (newst-backend): Removed wrong duplicate provide statement. 45 * net/newst-backend.el (newst-backend):
46 Remove wrong duplicate provide statement.
42 47
432008-12-22 Michael Albinus <michael.albinus@gmx.de> 482008-12-22 Michael Albinus <michael.albinus@gmx.de>
44 49
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el
index 7515e864fa5..20f861f0a3d 100644
--- a/lisp/textmodes/tex-mode.el
+++ b/lisp/textmodes/tex-mode.el
@@ -2536,10 +2536,11 @@ Runs the shell command defined by `tex-show-queue-command'."
2536 (if (tex-shell-running) 2536 (if (tex-shell-running)
2537 (tex-kill-job) 2537 (tex-kill-job)
2538 (tex-start-shell)) 2538 (tex-start-shell))
2539 (let (shell-dirtrack-verbose 2539 (let* (shell-dirtrack-verbose
2540 (tex-out-file 2540 (source-file (tex-main-file))
2541 (tex-append (file-name-nondirectory (buffer-file-name)) "")) 2541 (tex-out-file
2542 (file-dir (file-name-directory (buffer-file-name)))) 2542 (tex-append (file-name-nondirectory source-file) ""))
2543 (file-dir (file-name-directory source-file)))
2543 (tex-send-command tex-shell-cd-command file-dir) 2544 (tex-send-command tex-shell-cd-command file-dir)
2544 (tex-send-command tex-bibtex-command tex-out-file)) 2545 (tex-send-command tex-bibtex-command tex-out-file))
2545 (tex-display-shell)) 2546 (tex-display-shell))