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
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
021f2e1a
Commit
021f2e1a
authored
Oct 29, 2011
by
Andreas Schwab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/frame.h (MOUSE_HL_INFO): Remove excess parens.
parent
73c3f81d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
37 deletions
+41
-37
src/ChangeLog
src/ChangeLog
+4
-0
src/frame.h
src/frame.h
+37
-37
No files found.
src/ChangeLog
View file @
021f2e1a
2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
* frame.h (MOUSE_HL_INFO): Remove excess parens.
2011-10-29 Eli Zaretskii <eliz@gnu.org>
Fix the `xbytecode' command.
...
...
src/frame.h
View file @
021f2e1a
...
...
@@ -538,12 +538,12 @@ typedef struct frame *FRAME_PTR;
does not have FRAME_X_DISPLAY_INFO. */
#ifdef HAVE_WINDOW_SYSTEM
# define MOUSE_HL_INFO(F) \
(FRAME_WINDOW_P(F) \
? &(FRAME_X_DISPLAY_INFO(F)->mouse_highlight)
\
: &(((F)->output_data.tty->display_info)->mouse_highlight)
)
(FRAME_WINDOW_P(F) \
? &FRAME_X_DISPLAY_INFO(F)->mouse_highlight
\
: &(F)->output_data.tty->display_info->mouse_highlight
)
#else
# define MOUSE_HL_INFO(F) \
(&(((F)->output_data.tty->display_info)->mouse_highlight)
)
(&(F)->output_data.tty->display_info->mouse_highlight
)
#endif
/* Nonzero if frame F is still alive (not deleted). */
...
...
@@ -594,7 +594,7 @@ typedef struct frame *FRAME_PTR;
/* Lines above the top-most window in frame F. */
#define FRAME_TOP_MARGIN(F) \
(FRAME_MENU_BAR_LINES (F) + FRAME_TOOL_BAR_LINES (F))
(FRAME_MENU_BAR_LINES (F) + FRAME_TOOL_BAR_LINES (F))
/* Pixel height of the top margin above. */
...
...
@@ -659,11 +659,11 @@ typedef struct frame *FRAME_PTR;
and which side they are on. */
#define FRAME_VERTICAL_SCROLL_BAR_TYPE(f) ((f)->vertical_scroll_bar_type)
#define FRAME_HAS_VERTICAL_SCROLL_BARS(f) \
((f)->vertical_scroll_bar_type != vertical_scroll_bar_none)
((f)->vertical_scroll_bar_type != vertical_scroll_bar_none)
#define FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT(f) \
((f)->vertical_scroll_bar_type == vertical_scroll_bar_left)
((f)->vertical_scroll_bar_type == vertical_scroll_bar_left)
#define FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT(f) \
((f)->vertical_scroll_bar_type == vertical_scroll_bar_right)
((f)->vertical_scroll_bar_type == vertical_scroll_bar_right)
/* Width that a scroll bar in frame F should have, if there is one.
Measured in pixels.
...
...
@@ -680,13 +680,13 @@ typedef struct frame *FRAME_PTR;
the right in this frame, or there are no scroll bars, value is 0. */
#define FRAME_LEFT_SCROLL_BAR_COLS(f) \
(FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f)
\
? FRAME_CONFIG_SCROLL_BAR_COLS (f)
\
: 0)
(FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f)
\
? FRAME_CONFIG_SCROLL_BAR_COLS (f)
\
: 0)
/* Width of a left scroll bar in frame F, measured in pixels */
#define FRAME_LEFT_SCROLL_BAR_AREA_WIDTH(f)
\
#define FRAME_LEFT_SCROLL_BAR_AREA_WIDTH(f) \
(FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f) \
? (FRAME_CONFIG_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f)) \
: 0)
...
...
@@ -696,13 +696,13 @@ typedef struct frame *FRAME_PTR;
the left in this frame, or there are no scroll bars, value is 0. */
#define FRAME_RIGHT_SCROLL_BAR_COLS(f) \
(FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f)
\
? FRAME_CONFIG_SCROLL_BAR_COLS (f)
\
: 0)
(FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f)
\
? FRAME_CONFIG_SCROLL_BAR_COLS (f)
\
: 0)
/* Width of a right scroll bar area in frame F, measured in pixels */
#define FRAME_RIGHT_SCROLL_BAR_AREA_WIDTH(f)
\
#define FRAME_RIGHT_SCROLL_BAR_AREA_WIDTH(f) \
(FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f) \
? (FRAME_CONFIG_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f)) \
: 0)
...
...
@@ -710,9 +710,9 @@ typedef struct frame *FRAME_PTR;
/* Actual width of a scroll bar in frame F, measured in columns. */
#define FRAME_SCROLL_BAR_COLS(f) \
(FRAME_HAS_VERTICAL_SCROLL_BARS (f)
\
? FRAME_CONFIG_SCROLL_BAR_COLS (f)
\
: 0)
(FRAME_HAS_VERTICAL_SCROLL_BARS (f)
\
? FRAME_CONFIG_SCROLL_BAR_COLS (f)
\
: 0)
/* Actual width of a scroll bar area in frame F, measured in pixels. */
...
...
@@ -731,21 +731,21 @@ typedef struct frame *FRAME_PTR;
not including scroll bars and fringes. */
#define SET_FRAME_COLS(f, val) \
(FRAME_COLS (f) = (val), \
(f)->total_cols = FRAME_TOTAL_COLS_ARG (f, FRAME_COLS (f)))
(FRAME_COLS (f) = (val), \
(f)->total_cols = FRAME_TOTAL_COLS_ARG (f, FRAME_COLS (f)))
/* Given a value WIDTH for frame F's nominal width,
return the value that FRAME_TOTAL_COLS should have. */
#define FRAME_TOTAL_COLS_ARG(f, width) \
((width) \
+ FRAME_SCROLL_BAR_COLS (f)
\
+ FRAME_FRINGE_COLS (f))
((width) \
+ FRAME_SCROLL_BAR_COLS (f)
\
+ FRAME_FRINGE_COLS (f))
/* Maximum + 1 legitimate value for FRAME_CURSOR_X. */
#define FRAME_CURSOR_X_LIMIT(f) \
(FRAME_COLS (f) + FRAME_LEFT_SCROLL_BAR_COLS (f))
(FRAME_COLS (f) + FRAME_LEFT_SCROLL_BAR_COLS (f))
/* Nonzero if frame F has scroll bars. */
...
...
@@ -938,18 +938,18 @@ extern Lisp_Object selected_frame;
float. Value is a C integer. */
#define FRAME_PIXEL_X_FROM_CANON_X(F, X) \
(INTEGERP (X)
\
? XINT (X) * FRAME_COLUMN_WIDTH (F)
\
: (int) (XFLOAT_DATA (X) * FRAME_COLUMN_WIDTH (F)))
(INTEGERP (X)
\
? XINT (X) * FRAME_COLUMN_WIDTH (F)
\
: (int) (XFLOAT_DATA (X) * FRAME_COLUMN_WIDTH (F)))
/* Convert canonical value Y to pixels. F is the frame whose
canonical character height is to be used. X must be a Lisp integer
or float. Value is a C integer. */
#define FRAME_PIXEL_Y_FROM_CANON_Y(F, Y) \
(INTEGERP (Y)
\
? XINT (Y) * FRAME_LINE_HEIGHT (F)
\
: (int) (XFLOAT_DATA (Y) * FRAME_LINE_HEIGHT (F)))
(INTEGERP (Y)
\
? XINT (Y) * FRAME_LINE_HEIGHT (F)
\
: (int) (XFLOAT_DATA (Y) * FRAME_LINE_HEIGHT (F)))
/* Convert pixel-value X to canonical units. F is the frame whose
canonical character width is to be used. X is a C integer. Result
...
...
@@ -957,9 +957,9 @@ extern Lisp_Object selected_frame;
otherwise it's a Lisp integer. */
#define FRAME_CANON_X_FROM_PIXEL_X(F, X) \
((X) % FRAME_COLUMN_WIDTH (F) != 0 \
? make_float ((double) (X) / FRAME_COLUMN_WIDTH (F))
\
: make_number ((X) / FRAME_COLUMN_WIDTH (F)))
((X) % FRAME_COLUMN_WIDTH (F) != 0 \
? make_float ((double) (X) / FRAME_COLUMN_WIDTH (F))
\
: make_number ((X) / FRAME_COLUMN_WIDTH (F)))
/* Convert pixel-value Y to canonical units. F is the frame whose
canonical character height is to be used. Y is a C integer.
...
...
@@ -967,9 +967,9 @@ extern Lisp_Object selected_frame;
otherwise it's a Lisp integer. */
#define FRAME_CANON_Y_FROM_PIXEL_Y(F, Y) \
((Y) % FRAME_LINE_HEIGHT (F)
\
? make_float ((double) (Y) / FRAME_LINE_HEIGHT (F))
\
: make_number ((Y) / FRAME_LINE_HEIGHT (F)))
((Y) % FRAME_LINE_HEIGHT (F)
\
? make_float ((double) (Y) / FRAME_LINE_HEIGHT (F))
\
: make_number ((Y) / FRAME_LINE_HEIGHT (F)))
...
...
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