Function: mode-local-read-function
mode-local-read-function is a byte-compiled function defined in
mode-local.el.gz.
This function is obsolete since 27.1.
Signature
(mode-local-read-function PROMPT &optional INITIAL HIST DEFAULT)
Documentation
Interactively read in the name of a mode-local function.
PROMPT, INITIAL, HIST, and DEFAULT are the same as for completing-read.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/mode-local.el.gz
;;; Read/Query Support
(defun mode-local-read-function (prompt &optional initial hist default)
"Interactively read in the name of a mode-local function.
PROMPT, INITIAL, HIST, and DEFAULT are the same as for `completing-read'."
(declare (obsolete nil "27.1"))
(completing-read prompt obarray #'mode-local--function-overload-p t initial hist default))