Mercurial > emacs
changeset 5838:1f201e9b48ff
(insert-parentheses): Doc mod.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Mon, 07 Feb 1994 22:57:35 +0000 |
parents | fd1e2c6f7bf5 |
children | 14c24d764568 |
files | lisp/emacs-lisp/lisp.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/lisp.el Mon Feb 07 22:19:05 1994 +0000 +++ b/lisp/emacs-lisp/lisp.el Mon Feb 07 22:57:35 1994 +0000 @@ -199,8 +199,8 @@ (defun insert-parentheses (arg) "Put parentheses around next ARG sexps. Leave point after open-paren. No argument is equivalent to zero: just insert `()' and leave point between. -This command also sometimes inserts a space before and after, -depending on the surrounding characters." +If `parens-require-spaces' is non-nil, this command also inserts a space +before and after, depending on the surrounding characters." (interactive "P") (if arg (setq arg (prefix-numeric-value arg)) (setq arg 0))