Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
650afd94
Commit
650afd94
authored
Sep 13, 1999
by
Gerd Moellmann
Browse files
(SELECTED_FRAME): New.
parent
8d2666fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
src/frame.h
src/frame.h
+12
-1
No files found.
src/frame.h
View file @
650afd94
...
@@ -615,7 +615,6 @@ typedef struct frame *FRAME_PTR;
...
@@ -615,7 +615,6 @@ typedef struct frame *FRAME_PTR;
extern
Lisp_Object
Qframep
,
Qframe_live_p
,
Qicon
;
extern
Lisp_Object
Qframep
,
Qframe_live_p
,
Qicon
;
extern
struct
frame
*
selected_frame
;
extern
struct
frame
*
last_nonminibuf_frame
;
extern
struct
frame
*
last_nonminibuf_frame
;
extern
struct
frame
*
make_terminal_frame
P_
((
void
));
extern
struct
frame
*
make_terminal_frame
P_
((
void
));
...
@@ -655,6 +654,18 @@ extern Lisp_Object Vterminal_frame;
...
@@ -655,6 +654,18 @@ extern Lisp_Object Vterminal_frame;
#define WINDOW_VERTICAL_SCROLL_BAR_HEIGHT(w) (window_internal_height (w))
#define WINDOW_VERTICAL_SCROLL_BAR_HEIGHT(w) (window_internal_height (w))
/* The currently selected frame. */
extern
Lisp_Object
selected_frame
;
/* Value is a pointer to the selected frame. If the selected frame
isn't life, abort. */
#define SELECTED_FRAME() \
((FRAMEP (selected_frame) \
&& FRAME_LIVE_P (XFRAME (selected_frame))) \
? XFRAME (selected_frame) \
: (struct frame *) (abort (), 0))
/***********************************************************************
/***********************************************************************
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment