Function: org-set-frame-title

org-set-frame-title is a byte-compiled function defined in org.el.gz.

Signature

(org-set-frame-title TITLE)

Documentation

Set the title of the current frame to the string TITLE.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-set-frame-title (title)
  "Set the title of the current frame to the string TITLE."
  (modify-frame-parameters (selected-frame) (list (cons 'name title))))