# HG changeset patch # User Stefan Monnier # Date 1213470764 0 # Node ID 9725d7b12f53490d6a0c62730de2cde17f1f5922 # Parent 80ae3c334377de222eec054513dba1c236c27855 (syms_of_xdisp): Default underline-minimum-offset to 1. diff -r 80ae3c334377 -r 9725d7b12f53 src/ChangeLog --- 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 + + * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1. + 2008-06-13 Stefan Monnier * process.c (Fserial_process_configure, Fprocess_send_eof): diff -r 80ae3c334377 -r 9725d7b12f53 src/xdisp.c --- 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; }