Function: customize-option-other-window

customize-option-other-window is an autoloaded, interactive and byte-compiled function defined in cus-edit.el.gz.

Signature

(customize-option-other-window SYMBOL)

Documentation

Customize SYMBOL, which must be a user option.

Show the buffer in another window, but don't select it.

Key Bindings

Aliases

customize-variable-other-window

Source Code

;; Defined in /usr/src/emacs/lisp/cus-edit.el.gz
;;;###autoload
(defun customize-option-other-window (symbol)
  "Customize SYMBOL, which must be a user option.
Show the buffer in another window, but don't select it."
  (interactive (custom-variable-prompt))
  (unless symbol
    (error "No variable specified"))
  (let ((basevar (indirect-variable symbol)))
    (custom-buffer-create-other-window
     (list (list basevar 'custom-variable))
     (format "*Customize Option: %s*" (custom-unlispify-tag-name basevar)))
    (unless (eq symbol basevar)
      (message "`%s' is an alias for `%s'" symbol basevar))))