Mercurial > emacs
changeset 95916:9725d7b12f53
(syms_of_xdisp): Default underline-minimum-offset to 1.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sat, 14 Jun 2008 19:12:44 +0000 |
parents | 80ae3c334377 |
children | c46e112bded0 |
files | src/ChangeLog src/xdisp.c |
diffstat | 2 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Sat Jun 14 17:00:01 2008 +0000 +++ b/src/ChangeLog Sat Jun 14 19:12:44 2008 +0000 @@ -1,3 +1,7 @@ +2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca> + + * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1. + 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca> * process.c (Fserial_process_configure, Fprocess_send_eof):
--- a/src/xdisp.c Sat Jun 14 17:00:01 2008 +0000 +++ b/src/xdisp.c Sat Jun 14 19:12:44 2008 +0000 @@ -24814,8 +24814,8 @@ 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; +baseline. The default value is 1. */); + underline_minimum_offset = 1; }