programatically constructing message.
+2004-08-30 John Paul Wallington <jpw@gnu.org>
+
+ * textmodes/tex-mode.el (tex-validate-buffer): Use distinct
+ strings rather than programatically constructing message.
+
2004-08-30 Richard M. Stallman <rms@gnu.org>
* emacs-lisp/lisp-mode.el (prin1-char): Don't turn S-a into A.
(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" ""))))))))
+ (message (cond (no-matches "No mismatches found")
+ ((= num-matches 1) "1 mismatch found")
+ (t "%d mismatches found"))
+ num-matches)))))))
(defun tex-validate-region (start end)
"Check for mismatched braces or $'s in region.