diff options
| -rw-r--r-- | src/frame.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/frame.h b/src/frame.h index 2008064e8d5..ed853205b3c 100644 --- a/src/frame.h +++ b/src/frame.h | |||
| @@ -49,14 +49,18 @@ struct frame | |||
| 49 | Only EMACS_INT values can be intermixed with them. | 49 | Only EMACS_INT values can be intermixed with them. |
| 50 | That ensures they are all aligned normally. */ | 50 | That ensures they are all aligned normally. */ |
| 51 | 51 | ||
| 52 | /* Name of this frame: a Lisp string. See also `explicit_name' | 52 | /* Name of this frame: a Lisp string. It is used for looking up resources, |
| 53 | and `namebuf'. */ | 53 | as well as for the title in some cases. */ |
| 54 | Lisp_Object name; | 54 | Lisp_Object name; |
| 55 | 55 | ||
| 56 | /* The name to use for the icon, the last time | 56 | /* The name to use for the icon, the last time |
| 57 | it was refreshed. nil means not explicitly specified. */ | 57 | it was refreshed. nil means not explicitly specified. */ |
| 58 | Lisp_Object icon_name; | 58 | Lisp_Object icon_name; |
| 59 | 59 | ||
| 60 | /* This is the frame title specified explicitly, if any. | ||
| 61 | Usually it is nil. */ | ||
| 62 | Lisp_Object title; | ||
| 63 | |||
| 60 | /* The frame which should receive keystrokes that occur in this | 64 | /* The frame which should receive keystrokes that occur in this |
| 61 | frame, or nil if they should go to the frame itself. This is | 65 | frame, or nil if they should go to the frame itself. This is |
| 62 | usually nil, but if the frame is minibufferless, we can use this | 66 | usually nil, but if the frame is minibufferless, we can use this |