]> git.eshelyaron.com Git - emacs.git/commitdiff
(check-parens): Fix docstring.
authorLute Kamstra <lute@gnu.org>
Wed, 18 May 2005 08:29:38 +0000 (08:29 +0000)
committerLute Kamstra <lute@gnu.org>
Wed, 18 May 2005 08:29:38 +0000 (08:29 +0000)
lisp/ChangeLog
lisp/emacs-lisp/lisp.el

index 68640c451c287b0e3a04ebaa90379dd5740aff4c..e7eab37b4efbc3b827c8ca811d4dca4d7b5a95b7 100644 (file)
@@ -1,3 +1,7 @@
+2005-05-18  Lute Kamstra  <lute@gnu.org>
+
+       * emacs-lisp/lisp.el (check-parens): Fix docstring.
+
 2005-05-18  Juanma Barranquero  <lekktu@gmail.com>
 
        * subr.el (window-dot, set-window-dot, read-input, send-string)
index f9442bc00841491a6fcacf63c9f0d05ade250af3..955bc4499bc5df1e7662768365804ab6c55d14cd 100644 (file)
@@ -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.