diff options
| author | Lute Kamstra | 2005-05-18 08:29:38 +0000 |
|---|---|---|
| committer | Lute Kamstra | 2005-05-18 08:29:38 +0000 |
| commit | 7bc108869d53d6f1b06eed4aeb9f32c70fb082c0 (patch) | |
| tree | 298be39ae5b260beaa02e76b16017eae2bde280b | |
| parent | 0fa5d10ef8f77ccdd04479cb4fb58694d7f7779e (diff) | |
| download | emacs-7bc108869d53d6f1b06eed4aeb9f32c70fb082c0.tar.gz emacs-7bc108869d53d6f1b06eed4aeb9f32c70fb082c0.zip | |
(check-parens): Fix docstring.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/lisp.el | 9 |
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 @@ | |||
| 1 | 2005-05-18 Lute Kamstra <lute@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/lisp.el (check-parens): Fix docstring. | ||
| 4 | |||
| 1 | 2005-05-18 Juanma Barranquero <lekktu@gmail.com> | 5 | 2005-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." | |||
| 487 | More accurately, check the narrowed part of the buffer for unbalanced | 488 | More accurately, check the narrowed part of the buffer for unbalanced |
| 488 | expressions (\"sexps\") in general. This is done according to the | 489 | expressions (\"sexps\") in general. This is done according to the |
| 489 | current syntax table and will find unbalanced brackets or quotes as | 490 | current syntax table and will find unbalanced brackets or quotes as |
| 490 | appropriate. (See Info node `(emacs)Lists and Sexps'.) If imbalance | 491 | appropriate. (See Info node `(emacs)Parentheses'.) If imbalance is |
| 491 | is found, an error is signalled and point is left at the first | 492 | found, an error is signalled and point is left at the first unbalanced |
| 492 | unbalanced character." | 493 | character." |
| 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. |