Function: help-fns--editable-variable
help-fns--editable-variable is a byte-compiled function defined in
help-fns.el.gz.
Signature
(help-fns--editable-variable START END VARIABLE VALUE BUFFER)
Source Code
;; Defined in /usr/src/emacs/lisp/help-fns.el.gz
(defun help-fns--editable-variable (start end variable value buffer)
(when (and (readablep value)
help-enable-variable-value-editing)
(add-text-properties
start end
(list 'help-echo "`e' to edit the value"
'help-fns--edit-variable (list variable value buffer
(current-buffer))
'keymap (define-keymap
:parent button-map
"e" #'help-fns-edit-variable)))))