Function: customize-apropos-options

customize-apropos-options is an autoloaded, interactive and byte-compiled function defined in cus-edit.el.gz.

Signature

(customize-apropos-options REGEXP &optional IGNORED)

Documentation

Customize all loaded customizable options matching REGEXP.

Probably introduced at or before Emacs version 24.3.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cus-edit.el.gz
;;;###autoload
(defun customize-apropos-options (regexp &optional _ignored)
  "Customize all loaded customizable options matching REGEXP."
  (interactive (list (apropos-read-pattern "options")))
  (customize-apropos regexp 'options))