x_underline_minimum_display_offset.
(syms_of_xdisp): Declare it here rather than in xterm.c.
* dispextern.h (underline_minimum_offset): Declare it.
* w32term.c (x_draw_glyph_string): Use it.
* xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
(syms_of_xterm): Don't declare it any more.
(x_draw_glyph_string): Adjust to the new name.
* cus-start.el (underline-minimum-offset) Rename from
x-underline-minimum-display-offset.
+2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * cus-start.el (underline-minimum-offset) Rename from
+ x-underline-minimum-display-offset.
+
2008-06-10 David De La Harpe Golden <david@harpegolden.net> (tiny change)
* cus-start.el (x-underline-minimum-display-offset): Give it a type.
(unibyte-display-via-language-environment mule boolean)
(blink-cursor-alist cursor alist "22.1")
(overline-margin display integer "22.1")
+ (underline-minimum-offset display integer "23.1")
(mouse-autoselect-window
display (choice
(const :tag "Off (nil)" :value nil)
;; xterm.c
(x-use-underline-position-properties display boolean "22.1")
(x-underline-at-descent-line display boolean "22.1")
- (x-underline-minimum-display-offset display integer "23.1")
(x-stretch-cursor display boolean "21.1")))
this symbol group type standard version native-p
;; This function turns a value
+2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * xdisp.c (underline_minimum_offset): Rename from xterm.c's
+ x_underline_minimum_display_offset.
+ (syms_of_xdisp): Declare it here rather than in xterm.c.
+ * dispextern.h (underline_minimum_offset): Declare it.
+ * w32term.c (x_draw_glyph_string): Use it.
+ * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
+ (syms_of_xterm): Don't declare it any more.
+ (x_draw_glyph_string): Adjust to the new name.
+
2008-06-10 David De La Harpe Golden <david@harpegolden.net> (tiny change)
* xterm.c (x_underline_minimum_display_offset): New var.
extern int last_tool_bar_item;
extern Lisp_Object Vmouse_autoselect_window;
extern int unibyte_display_via_language_environment;
+extern EMACS_INT underline_minimum_offset;
extern void reseat_at_previous_visible_line_start P_ ((struct it *));
if (s->face->font)
y = s->ybase + (s->face->font->max_bounds.descent + 1) / 2;
}
-
+ /* FIXME: Obey underline_minimum_offset. */
if (s->face->underline_defaulted_p)
mac_fill_rectangle (s->f, s->gc, s->x, y,
s->background_width, h);
else if (s->font)
position = (s->font->descent + 1) / 2;
}
+ position = max (position, underline_minimum_offset);
}
/* Check the sanity of thickness and position. We should
avoid drawing underline out of the current line area. */
EMACS_INT overline_margin;
+/* Require underline to be at least this many screen pixels below baseline
+ This to avoid underline "merging" with the base of letters at small
+ font sizes, particularly when x_use_underline_position_properties is on. */
+
+EMACS_INT underline_minimum_offset;
+
/* Value returned from text property handlers (see below). */
enum prop_handled
The default value is 2: the height of the overline (1 pixel) plus 1 pixel
margin to the caracter height. */);
overline_margin = 2;
+
+ DEFVAR_INT ("underline-minimum-offset",
+ &underline_minimum_offset,
+ doc: /* Minimum distance between baseline and underline.
+This can improve legibility of underlined text at small font sizes,
+particularly when using variable `x-use-underline-position-properties'
+with fonts that specify an UNDERLINE_POSITION relatively close to the
+baseline. The default value is 0. */);
+ underline_minimum_offset = 0;
}
int x_underline_at_descent_line;
-/* Require underline to be at least this many screen pixels below baseline
- This to avoid underline "merging" with the base of letters at small
- font sizes, particularly when x_use_underline_position_properties is on. */
-
-int x_underline_minimum_display_offset;
-
/* This is a chain of structures for all the X displays currently in
use. */
else if (s->font)
position = (s->font->descent + 1) / 2;
}
- if (x_underline_minimum_display_offset)
- position = max (position, eabs (x_underline_minimum_display_offset));
+ position = max (position, underline_minimum_offset);
}
/* Check the sanity of thickness and position. We should
avoid drawing underline out of the current line area. */
doc: /* *Non-nil means make use of UNDERLINE_POSITION font properties.
A value of nil means ignore them. If you encounter fonts with bogus
UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
-to 4.1, set this to nil. Variable `x-underline-minimum-display-offset' may
-be used to override the font's UNDERLINE_POSITION for small font display
+to 4.1, set this to nil. You can also use `underline-minimum-offset'
+to override the font's UNDERLINE_POSITION for small font display
sizes. */);
x_use_underline_position_properties = 1;
baseline level. The default value is nil. */);
x_underline_at_descent_line = 0;
- DEFVAR_INT ("x-underline-minimum-display-offset",
- &x_underline_minimum_display_offset,
- doc: /* *When > 0, underline is drawn at least that many screen pixels below baseline.
-This can improve legibility of underlined text at small font sizes,
-particularly when using variable `x-use-underline-position-properties'
-with fonts that specify an UNDERLINE_POSITION relatively close to the
-baseline. The default value is 0. */);
- x_underline_minimum_display_offset = 0;
-
-
DEFVAR_BOOL ("x-mouse-click-focus-ignore-position",
&x_mouse_click_focus_ignore_position,
doc: /* Non-nil means that a mouse click to focus a frame does not move point.