comparison lisp/emacs-lisp/lisp.el @ 90197:b7da78284d4c

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-65 Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 425-445) - Remove "-face" suffix from gnus faces - Update from CVS - Remove "-face" suffix from MH-E faces - Remove "-face" suffix from cc-mode faces - Remove "-face" suffix from eshell faces - Remove "-face" suffix from ediff faces - Implement tty vertical-divider face - Rename vertical-divider face to vertical-border - Change escape-glyph color on dark backgrounds back to cyan - Update reference to renamed Buffer-menu-buffer face
author Miles Bader <miles@gnu.org>
date Fri, 24 Jun 2005 01:59:52 +0000
parents f042e7c0fe20 f8e5c41bb4b8
children f9a65d7ebd29
comparison
equal deleted inserted replaced
90196:82d495f87e7b 90197:b7da78284d4c
487 "Check for unbalanced parentheses in the current buffer. 487 "Check for unbalanced parentheses in the current buffer.
488 More accurately, check the narrowed part of the buffer for unbalanced 488 More accurately, check the narrowed part of the buffer for unbalanced
489 expressions (\"sexps\") in general. This is done according to the 489 expressions (\"sexps\") in general. This is done according to the
490 current syntax table and will find unbalanced brackets or quotes as 490 current syntax table and will find unbalanced brackets or quotes as
491 appropriate. (See Info node `(emacs)Parentheses'.) If imbalance is 491 appropriate. (See Info node `(emacs)Parentheses'.) If imbalance is
492 found, an error is signalled and point is left at the first unbalanced 492 found, an error is signaled and point is left at the first unbalanced
493 character." 493 character."
494 (interactive) 494 (interactive)
495 (condition-case data 495 (condition-case data
496 ;; Buffer can't have more than (point-max) sexps. 496 ;; Buffer can't have more than (point-max) sexps.
497 (scan-sexps (point-min) (point-max)) 497 (scan-sexps (point-min) (point-max))