mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 09:14:18 +00:00
Change the type of 'python-eldoc-function-timeout' to number
* etc/NEWS: Announce the change. * lisp/progmodes/python.el (python-eldoc-function-timeout): Change the type. (Bug#80045)
This commit is contained in:
parent
482748592f
commit
3107c66c84
2 changed files with 7 additions and 1 deletions
6
etc/NEWS
6
etc/NEWS
|
|
@ -2508,6 +2508,12 @@ When point is between indentation, the command
|
|||
deletes the text in the region and deactivates the mark if Transient
|
||||
Mark mode is enabled, the mark is active, and prefix argument is 1.
|
||||
|
||||
---
|
||||
*** 'python-eldoc-function-timeout' now accepts floating-point numbers.
|
||||
To allow for finer-grained adjustment of timeout for
|
||||
'python-eldoc-function', 'python-eldoc-function-timeout' now accepts
|
||||
floating-point numbers as well as integers.
|
||||
|
||||
** Tmm Menubar
|
||||
|
||||
---
|
||||
|
|
|
|||
|
|
@ -5842,7 +5842,7 @@ Set to nil by `python-eldoc-function' if
|
|||
|
||||
(defcustom python-eldoc-function-timeout 1
|
||||
"Timeout for `python-eldoc-function' in seconds."
|
||||
:type 'integer
|
||||
:type 'number
|
||||
:version "25.1")
|
||||
|
||||
(defcustom python-eldoc-function-timeout-permanent t
|
||||
|
|
|
|||
Loading…
Reference in a new issue