# HG changeset patch # User Karl Heuer # Date 760661855 0 # Node ID 1f201e9b48ffb601b2e1d233a97bd9db3ec2db1b # Parent fd1e2c6f7bf54cbf7f29f8162f2ea23e5425a593 (insert-parentheses): Doc mod. diff -r fd1e2c6f7bf5 -r 1f201e9b48ff lisp/emacs-lisp/lisp.el --- 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))