emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/textmodes/tex-mode.el [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/textmodes/tex-mode.el [lexbind]
Date: Sat, 04 Sep 2004 05:51:50 -0400

Index: emacs/lisp/textmodes/tex-mode.el
diff -c emacs/lisp/textmodes/tex-mode.el:1.123.2.8 
emacs/lisp/textmodes/tex-mode.el:1.123.2.9
*** emacs/lisp/textmodes/tex-mode.el:1.123.2.8  Sat Sep  4 09:26:23 2004
--- emacs/lisp/textmodes/tex-mode.el    Sat Sep  4 09:28:13 2004
***************
*** 1145,1153 ****
          (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.
--- 1145,1154 ----
          (if no-matches
              (insert "None!\n"))
          (if (interactive-p)
!             (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.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]