diff options
| author | Stefan Kangas | 2023-09-01 22:17:48 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2023-09-01 22:18:35 +0200 |
| commit | 60dcea7658a08761f059c3ce7265e873ae6076db (patch) | |
| tree | 3b26d874a8fdffc6c44f50c6bcc75d203e35dfb3 | |
| parent | 890a4c209abe0a2e03d317051357308757b26543 (diff) | |
| download | emacs-60dcea7658a08761f059c3ce7265e873ae6076db.tar.gz emacs-60dcea7658a08761f059c3ce7265e873ae6076db.zip | |
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)
| -rw-r--r-- | lisp/frame.el | 2 | ||||
| -rw-r--r-- | lisp/url/url-vars.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index bf984da0d62..884c2427c0d 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -2851,7 +2851,7 @@ Values smaller than 0.2 sec are treated as 0.2 sec." | |||
| 2851 | "How many times to blink before using a solid cursor on NS, X, and MS-Windows. | 2851 | "How many times to blink before using a solid cursor on NS, X, and MS-Windows. |
| 2852 | Use 0 or negative value to blink forever." | 2852 | Use 0 or negative value to blink forever." |
| 2853 | :version "24.4" | 2853 | :version "24.4" |
| 2854 | :type 'natnum | 2854 | :type 'integer |
| 2855 | :group 'cursor) | 2855 | :group 'cursor) |
| 2856 | 2856 | ||
| 2857 | (defvar blink-cursor-blinks-done 1 | 2857 | (defvar blink-cursor-blinks-done 1 |
diff --git a/lisp/url/url-vars.el b/lisp/url/url-vars.el index 7e2290217d0..ef4b8b2841b 100644 --- a/lisp/url/url-vars.el +++ b/lisp/url/url-vars.el | |||
| @@ -331,7 +331,7 @@ undefined." | |||
| 331 | (defcustom url-max-redirections 30 | 331 | (defcustom url-max-redirections 30 |
| 332 | "The maximum number of redirection requests to honor in a HTTP connection. | 332 | "The maximum number of redirection requests to honor in a HTTP connection. |
| 333 | A negative number means to honor an unlimited number of redirection requests." | 333 | A negative number means to honor an unlimited number of redirection requests." |
| 334 | :type 'natnum | 334 | :type 'integer |
| 335 | :group 'url) | 335 | :group 'url) |
| 336 | 336 | ||
| 337 | (defcustom url-confirmation-func 'y-or-n-p | 337 | (defcustom url-confirmation-func 'y-or-n-p |