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
003274a0
Commit
003274a0
authored
Aug 25, 2004
by
John Paul Wallington
Browse files
(tex-validate-buffer): Distinguish between 0, 1, and many mismatches.
(tex-start-shell): Use `set-process-query-on-exit-flag'.
parent
2eb43e13
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
6 deletions
+13
-6
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/textmodes/tex-mode.el
lisp/textmodes/tex-mode.el
+9
-6
No files found.
lisp/ChangeLog
View file @
003274a0
2004-08-25 John Paul Wallington <jpw@gnu.org>
* textmodes/tex-mode.el (tex-validate-buffer): Distinguish between
0, 1, and many mismatches in message.
(tex-start-shell): Use `set-process-query-on-exit-flag'.
* ielm.el (ielm-tab, ielm-complete-symbol): Doc fix.
(inferior-emacs-lisp-mode): Use `set-process-query-on-exit-flag'.
...
...
lisp/textmodes/tex-mode.el
View file @
003274a0
...
...
@@ -1141,10 +1141,13 @@ on the line for the invalidity you want to see."
'occur-target tem)))))
(goto-char prev-end))))
(with-current-buffer standard-output
(if (eq num-matches 0)
(insert "None!\n"))
(if (interactive-p)
(message "%d mismatches found" num-matches))))))
(let ((no-matches (zerop num-matches)))
(if no-matches
(insert "None!\n"))
(if (interactive-p)
(message "%s mismatch%s found"
(if no-matches "No" num-matches)
(if (> num-matches 1) "es" ""))))))))
(defun tex-validate-region (start end)
"Check for mismatched braces or $'s in region.
...
...
@@ -1459,7 +1462,7 @@ Mark is left at original location."
nil)
(let ((proc (get-process "tex-shell")))
(set-process-sentinel proc 'tex-shell-sentinel)
(process-
kill-without-query
proc)
(
set-
process-
query-on-exit-flag
proc
nil
)
(tex-shell)
(while (zerop (buffer-size))
(sleep-for 1)))))
...
...
@@ -1928,7 +1931,7 @@ for the error messages."
(
re-search-forward
"^l\\.\\([0-9]+\\) \\(\\.\\.\\.\\)?\\(.*\\)$"
nil
'move
))
(
let*
((
this-error
(
copy-marker
begin-of-error
))
(
linenum
(
string-to-
int
(
match-string
1
)))
(
linenum
(
string-to-
number
(
match-string
1
)))
(
error-text
(
regexp-quote
(
match-string
3
)))
(
filename
(
save-excursion
...
...
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