Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
594bab65
Commit
594bab65
authored
Oct 23, 2007
by
Stefan Monnier
Browse files
(tex-uptodate-p): Don't signal an error if one
of the subdirs is unreadable.
parent
480bda51
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/textmodes/tex-mode.el
lisp/textmodes/tex-mode.el
+2
-1
No files found.
lisp/ChangeLog
View file @
594bab65
2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
* textmodes/tex-mode.el (tex-uptodate-p): Don't signal an error if one
of the subdirs is unreadable.
2007-10-22 Martin Rudalics <rudalics@gmx.at>
* progmodes/fortran.el (fortran-mode-map, fortran-window-create):
lisp/textmodes/tex-mode.el
View file @
594bab65
...
...
@@ -1829,7 +1829,8 @@ FILE is typically the output DVI or PDF file."
(not (file-symlink-p f)))
(unless (string-match ignored-dirs-re f)
(setq files (nconc
(directory-files f t tex-input-files-re)
(ignore-errors ;Not readable or something.
(directory-files f t tex-input-files-re))
files)))
(when (file-newer-than-file-p f file)
(setq uptodate nil)))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment