1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-29 07:58:28 +00:00

(next-error-recenter): Accept `(4)' as well;

also, specify `integer' instead of `number'.
This commit is contained in:
Thien-Thi Nguyen 2007-06-23 12:19:38 +00:00
parent 56fbb895ad
commit 28adf31caa
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2007-06-23 Thien-Thi Nguyen <ttn@gnuvola.org>
* simple.el (next-error-recenter): Accept `(4)' as well;
also, specify `integer' instead of `number'.
2007-06-23 Eli Zaretskii <eliz@gnu.org>
* ls-lisp.el (insert-directory): If an invalid regexp error is

View File

@ -157,9 +157,10 @@ If `fringe-arrow', indicate the locus by the fringe arrow."
:version "22.1")
(defcustom next-error-recenter nil
"*Display the line in the visited source file recentered to this number.
If nil, don't do any recentering. See `recenter'."
:type '(choice (number :tag "Argument for `recenter'")
"*Display the line in the visited source file recentered as specified.
If non-nil, the value is passed directly to `recenter'."
:type '(choice (integer :tag "Line to recenter to")
(const :tag "Center of window" (4))
(const :tag "No recentering" nil))
:group 'next-error
:version "23.1")