mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-17 03:10:58 -08:00
(defun-prompt-regexp, parens-require-spaces, buffer-end, end-of-defun)
(insert-parentheses): Doc fixes.
This commit is contained in:
parent
e790a4a3f1
commit
a64dc1a44c
1 changed files with 10 additions and 10 deletions
|
|
@ -31,18 +31,16 @@
|
||||||
|
|
||||||
;; Note that this variable is used by non-lisp modes too.
|
;; Note that this variable is used by non-lisp modes too.
|
||||||
(defcustom defun-prompt-regexp nil
|
(defcustom defun-prompt-regexp nil
|
||||||
"*If non-nil, a regexp to ignore before the character that starts a defun.
|
"*If non-nil, a regexp to ignore before a defun.
|
||||||
This is only necessary if the opening paren or brace is not in column 0.
|
This is only necessary if the opening paren or brace is not in column 0.
|
||||||
See function `beginning-of-defun'.
|
See function `beginning-of-defun'."
|
||||||
|
|
||||||
Setting this variable automatically makes it local to the current buffer."
|
|
||||||
:type '(choice (const nil)
|
:type '(choice (const nil)
|
||||||
regexp)
|
regexp)
|
||||||
:group 'lisp)
|
:group 'lisp)
|
||||||
(make-variable-buffer-local 'defun-prompt-regexp)
|
(make-variable-buffer-local 'defun-prompt-regexp)
|
||||||
|
|
||||||
(defcustom parens-require-spaces t
|
(defcustom parens-require-spaces t
|
||||||
"Non-nil means `insert-parentheses' should insert whitespace as needed."
|
"If non-nil, `insert-parentheses' inserts whitespace as needed."
|
||||||
:type 'boolean
|
:type 'boolean
|
||||||
:group 'lisp)
|
:group 'lisp)
|
||||||
|
|
||||||
|
|
@ -233,13 +231,14 @@ recipe (see `end-of-defun'). Major modes can define this if the
|
||||||
normal method is not appropriate.")
|
normal method is not appropriate.")
|
||||||
|
|
||||||
(defun buffer-end (arg)
|
(defun buffer-end (arg)
|
||||||
"Return the \"far end\" position of the buffer, moving in direction ARG.
|
"Return the \"far end\" position of the buffer, in direction ARG.
|
||||||
If ARG is positive, that's the end of the buffer.
|
If ARG is positive, that's the end of the buffer.
|
||||||
Otherwise, that's the beginning of the buffer."
|
Otherwise, that's the beginning of the buffer."
|
||||||
(if (> arg 0) (point-max) (point-min)))
|
(if (> arg 0) (point-max) (point-min)))
|
||||||
|
|
||||||
(defun end-of-defun (&optional arg)
|
(defun end-of-defun (&optional arg)
|
||||||
"Move forward to next end of defun. With argument, do it that many times.
|
"Move forward to next end of defun.
|
||||||
|
With argument, do it that many times.
|
||||||
Negative argument -N means move back to Nth preceding end of defun.
|
Negative argument -N means move back to Nth preceding end of defun.
|
||||||
|
|
||||||
An end of a defun occurs right after the close-parenthesis that
|
An end of a defun occurs right after the close-parenthesis that
|
||||||
|
|
@ -424,7 +423,8 @@ character is inserted ARG times."
|
||||||
(prefix-numeric-value arg))))
|
(prefix-numeric-value arg))))
|
||||||
|
|
||||||
(defun insert-parentheses (&optional arg)
|
(defun insert-parentheses (&optional arg)
|
||||||
"Enclose following ARG sexps in parentheses. Leave point after open-paren.
|
"Enclose following ARG sexps in parentheses.
|
||||||
|
Leave point after open-paren.
|
||||||
A negative ARG encloses the preceding ARG sexps instead.
|
A negative ARG encloses the preceding ARG sexps instead.
|
||||||
No argument is equivalent to zero: just insert `()' and leave point between.
|
No argument is equivalent to zero: just insert `()' and leave point between.
|
||||||
If `parens-require-spaces' is non-nil, this command also inserts a space
|
If `parens-require-spaces' is non-nil, this command also inserts a space
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue