diff options
| author | Karl Heuer | 1994-02-07 22:57:35 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-02-07 22:57:35 +0000 |
| commit | d5bfe0767bb16de433437b68529af1f312d2be70 (patch) | |
| tree | cf8e4ce98b68cbdc5c23b17870357454a080424f | |
| parent | 72c19d97c1f5802878c9cfdc049407141101d6e2 (diff) | |
| download | emacs-d5bfe0767bb16de433437b68529af1f312d2be70.tar.gz emacs-d5bfe0767bb16de433437b68529af1f312d2be70.zip | |
(insert-parentheses): Doc mod.
| -rw-r--r-- | lisp/emacs-lisp/lisp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el index 12da5f2adb5..0d8b6436a4b 100644 --- a/lisp/emacs-lisp/lisp.el +++ b/lisp/emacs-lisp/lisp.el | |||
| @@ -199,8 +199,8 @@ The defun marked is the one that contains point or follows point." | |||
| 199 | (defun insert-parentheses (arg) | 199 | (defun insert-parentheses (arg) |
| 200 | "Put parentheses around next ARG sexps. Leave point after open-paren. | 200 | "Put parentheses around next ARG sexps. Leave point after open-paren. |
| 201 | No argument is equivalent to zero: just insert `()' and leave point between. | 201 | No argument is equivalent to zero: just insert `()' and leave point between. |
| 202 | This command also sometimes inserts a space before and after, | 202 | If `parens-require-spaces' is non-nil, this command also inserts a space |
| 203 | depending on the surrounding characters." | 203 | before and after, depending on the surrounding characters." |
| 204 | (interactive "P") | 204 | (interactive "P") |
| 205 | (if arg (setq arg (prefix-numeric-value arg)) | 205 | (if arg (setq arg (prefix-numeric-value arg)) |
| 206 | (setq arg 0)) | 206 | (setq arg 0)) |