Fix two defcustom :types
* lisp/frame.el (blink-cursor-blinks): * lisp/url/url-vars.el (url-max-redirections): Revert defcustom :types back to integer. (Bug#65655)
This commit is contained in:
parent
890a4c209a
commit
60dcea7658
2 changed files with 2 additions and 2 deletions
|
@ -2851,7 +2851,7 @@ Values smaller than 0.2 sec are treated as 0.2 sec."
|
||||||
"How many times to blink before using a solid cursor on NS, X, and MS-Windows.
|
"How many times to blink before using a solid cursor on NS, X, and MS-Windows.
|
||||||
Use 0 or negative value to blink forever."
|
Use 0 or negative value to blink forever."
|
||||||
:version "24.4"
|
:version "24.4"
|
||||||
:type 'natnum
|
:type 'integer
|
||||||
:group 'cursor)
|
:group 'cursor)
|
||||||
|
|
||||||
(defvar blink-cursor-blinks-done 1
|
(defvar blink-cursor-blinks-done 1
|
||||||
|
|
|
@ -331,7 +331,7 @@ undefined."
|
||||||
(defcustom url-max-redirections 30
|
(defcustom url-max-redirections 30
|
||||||
"The maximum number of redirection requests to honor in a HTTP connection.
|
"The maximum number of redirection requests to honor in a HTTP connection.
|
||||||
A negative number means to honor an unlimited number of redirection requests."
|
A negative number means to honor an unlimited number of redirection requests."
|
||||||
:type 'natnum
|
:type 'integer
|
||||||
:group 'url)
|
:group 'url)
|
||||||
|
|
||||||
(defcustom url-confirmation-func 'y-or-n-p
|
(defcustom url-confirmation-func 'y-or-n-p
|
||||||
|
|
Loading…
Add table
Reference in a new issue