From: Lute Kamstra Date: Wed, 18 May 2005 08:29:38 +0000 (+0000) Subject: (check-parens): Fix docstring. X-Git-Tag: ttn-vms-21-2-B4~201 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7bc108869d53d6f1b06eed4aeb9f32c70fb082c0;p=emacs.git (check-parens): Fix docstring. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 68640c451c2..e7eab37b4ef 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2005-05-18 Lute Kamstra + + * emacs-lisp/lisp.el (check-parens): Fix docstring. + 2005-05-18 Juanma Barranquero * subr.el (window-dot, set-window-dot, read-input, send-string) diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el index f9442bc0084..955bc4499bc 100644 --- a/lisp/emacs-lisp/lisp.el +++ b/lisp/emacs-lisp/lisp.el @@ -1,6 +1,7 @@ ;;; lisp.el --- Lisp editing commands for Emacs -;; Copyright (C) 1985, 86, 1994, 2000, 2004 Free Software Foundation, Inc. +;; Copyright (C) 1985, 1986, 1994, 2000, 2004, 2005 +;; Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: lisp, languages @@ -487,9 +488,9 @@ If region is active, insert enclosing characters at region boundaries." More accurately, check the narrowed part of the buffer for unbalanced expressions (\"sexps\") in general. This is done according to the current syntax table and will find unbalanced brackets or quotes as -appropriate. (See Info node `(emacs)Lists and Sexps'.) If imbalance -is found, an error is signalled and point is left at the first -unbalanced character." +appropriate. (See Info node `(emacs)Parentheses'.) If imbalance is +found, an error is signalled and point is left at the first unbalanced +character." (interactive) (condition-case data ;; Buffer can't have more than (point-max) sexps.