aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLute Kamstra2005-05-18 08:29:38 +0000
committerLute Kamstra2005-05-18 08:29:38 +0000
commit7bc108869d53d6f1b06eed4aeb9f32c70fb082c0 (patch)
tree298be39ae5b260beaa02e76b16017eae2bde280b
parent0fa5d10ef8f77ccdd04479cb4fb58694d7f7779e (diff)
downloademacs-7bc108869d53d6f1b06eed4aeb9f32c70fb082c0.tar.gz
emacs-7bc108869d53d6f1b06eed4aeb9f32c70fb082c0.zip
(check-parens): Fix docstring.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/lisp.el9
2 files changed, 9 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 68640c451c2..e7eab37b4ef 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12005-05-18 Lute Kamstra <lute@gnu.org>
2
3 * emacs-lisp/lisp.el (check-parens): Fix docstring.
4
12005-05-18 Juanma Barranquero <lekktu@gmail.com> 52005-05-18 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * subr.el (window-dot, set-window-dot, read-input, send-string) 7 * 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 @@
1;;; lisp.el --- Lisp editing commands for Emacs 1;;; lisp.el --- Lisp editing commands for Emacs
2 2
3;; Copyright (C) 1985, 86, 1994, 2000, 2004 Free Software Foundation, Inc. 3;; Copyright (C) 1985, 1986, 1994, 2000, 2004, 2005
4;; Free Software Foundation, Inc.
4 5
5;; Maintainer: FSF 6;; Maintainer: FSF
6;; Keywords: lisp, languages 7;; Keywords: lisp, languages
@@ -487,9 +488,9 @@ If region is active, insert enclosing characters at region boundaries."
487More accurately, check the narrowed part of the buffer for unbalanced 488More accurately, check the narrowed part of the buffer for unbalanced
488expressions (\"sexps\") in general. This is done according to the 489expressions (\"sexps\") in general. This is done according to the
489current syntax table and will find unbalanced brackets or quotes as 490current syntax table and will find unbalanced brackets or quotes as
490appropriate. (See Info node `(emacs)Lists and Sexps'.) If imbalance 491appropriate. (See Info node `(emacs)Parentheses'.) If imbalance is
491is found, an error is signalled and point is left at the first 492found, an error is signalled and point is left at the first unbalanced
492unbalanced character." 493character."
493 (interactive) 494 (interactive)
494 (condition-case data 495 (condition-case data
495 ;; Buffer can't have more than (point-max) sexps. 496 ;; Buffer can't have more than (point-max) sexps.