diff options
| author | Karl Heuer | 1995-04-19 20:54:09 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-04-19 20:54:09 +0000 |
| commit | bd601e2a98e95382aed8bca5620dadc1784a9726 (patch) | |
| tree | 0dce549e34db2337dbc606b4abb8c4a044307bd2 /src | |
| parent | dfc4f59b16b55639d8737c504ca1dfec5aaffabe (diff) | |
| download | emacs-bd601e2a98e95382aed8bca5620dadc1784a9726.tar.gz emacs-bd601e2a98e95382aed8bca5620dadc1784a9726.zip | |
(struct frame): New member namebuf.
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/frame.h b/src/frame.h index 0cde7162bd1..9e41ad34262 100644 --- a/src/frame.h +++ b/src/frame.h | |||
| @@ -48,7 +48,8 @@ struct frame | |||
| 48 | Only EMACS_INT values can be intermixed with them. | 48 | Only EMACS_INT values can be intermixed with them. |
| 49 | That ensures they are all aligned normally. */ | 49 | That ensures they are all aligned normally. */ |
| 50 | 50 | ||
| 51 | /* Name of this frame: a Lisp string. See also `explicit_name'. */ | 51 | /* Name of this frame: a Lisp string. See also `explicit_name' |
| 52 | and `namebuf'. */ | ||
| 52 | Lisp_Object name; | 53 | Lisp_Object name; |
| 53 | 54 | ||
| 54 | /* The frame which should receive keystrokes that occur in this | 55 | /* The frame which should receive keystrokes that occur in this |
| @@ -117,6 +118,10 @@ struct frame | |||
| 117 | /* Beyond here, there should be no more Lisp_Object components. */ | 118 | /* Beyond here, there should be no more Lisp_Object components. */ |
| 118 | 119 | ||
| 119 | 120 | ||
| 121 | /* A buffer to hold the frame's name. We can't use the Lisp string's | ||
| 122 | pointer (`name', above) because it might get relocated. */ | ||
| 123 | char *namebuf; | ||
| 124 | |||
| 120 | /* glyphs as they appear on the frame */ | 125 | /* glyphs as they appear on the frame */ |
| 121 | struct frame_glyphs *current_glyphs; | 126 | struct frame_glyphs *current_glyphs; |
| 122 | 127 | ||