diff options
Diffstat (limited to 'lisp/frame.el')
-rw-r--r-- | lisp/frame.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 5e380cd8fc6..43704d3f20d 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -1227,8 +1227,8 @@ often have their own features for raising or lowering frames." (defun set-frame-name (name) "Set the name of the selected frame to NAME. When called interactively, prompt for the name of the frame. -The frame name is displayed on the modeline if the terminal displays only -one frame, otherwise the name is displayed on the frame's caption bar." +On text terminals, the frame name is displayed on the mode line. +On graphical displays, it is displayed on the frame's title bar." (interactive "sFrame name: ") (modify-frame-parameters (selected-frame) (list (cons 'name name)))) |