mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 12:31:25 +00:00
(tex-main-file): Add forgotten safety predicate (bug#81099)
That variable is commonly set file-locally. * lisp/textmodes/tex-mode.el (tex-main-file): Add safety predicate.
This commit is contained in:
parent
35a82765bf
commit
30df8657fb
1 changed files with 1 additions and 0 deletions
|
|
@ -89,6 +89,7 @@ The command `tex-file' runs TeX on the file specified by `tex-main-file'
|
|||
if the variable is non-nil."
|
||||
:type '(choice (const :tag "None" nil)
|
||||
file)
|
||||
:safe (lambda (x) (or (stringp x) (null x)))
|
||||
:group 'tex-file)
|
||||
|
||||
;;;###autoload
|
||||
|
|
|
|||
Loading…
Reference in a new issue