diff options
| author | Kim F. Storm | 2006-08-24 21:18:13 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-08-24 21:18:13 +0000 |
| commit | 8d8dafebb36347734c5f81f8154d0749ca16bfaf (patch) | |
| tree | 5b700f71ccc194cec4bb05bd51c66341487c730e | |
| parent | 03c25271aa096026666cf006198681a87d8ac27c (diff) | |
| download | emacs-8d8dafebb36347734c5f81f8154d0749ca16bfaf.tar.gz emacs-8d8dafebb36347734c5f81f8154d0749ca16bfaf.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 7 | ||||
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | src/ChangeLog | 18 |
3 files changed, 29 insertions, 1 deletions
| @@ -839,6 +839,13 @@ The variable `automatic-hscrolling' was renamed to | |||
| 839 | the window now works sensibly, by automatically adjusting the window's | 839 | the window now works sensibly, by automatically adjusting the window's |
| 840 | vscroll property. | 840 | vscroll property. |
| 841 | 841 | ||
| 842 | *** New customize option `overline-margin' controls the space between | ||
| 843 | overline and text. | ||
| 844 | |||
| 845 | *** New variable `x-underline-at-descent-line' controls the relative | ||
| 846 | position of the underline. When set, it overrides the | ||
| 847 | `x-use-underline-position-properties' variables. | ||
| 848 | |||
| 842 | +++ | 849 | +++ |
| 843 | *** The new face `mode-line-inactive' is used to display the mode line | 850 | *** The new face `mode-line-inactive' is used to display the mode line |
| 844 | of non-selected windows. The `mode-line' face is now used to display | 851 | of non-selected windows. The `mode-line' face is now used to display |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ee84d69391f..72a1bed4397 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-08-24 Francesc Rocher <francesc.rocher@gmail.com> | ||
| 2 | |||
| 3 | * cus-start.el (all): Add `overline-margin' and | ||
| 4 | `x-underline-at-descent-line'. | ||
| 5 | |||
| 1 | 2006-08-24 Kim F. Storm <storm@cua.dk> | 6 | 2006-08-24 Kim F. Storm <storm@cua.dk> |
| 2 | 7 | ||
| 3 | * progmodes/grep.el (grep-find-use-xargs): Use explicit value `exec' | 8 | * progmodes/grep.el (grep-find-use-xargs): Use explicit value `exec' |
diff --git a/src/ChangeLog b/src/ChangeLog index 1f570e15a07..cc87d69e070 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,4 +1,20 @@ | |||
| 1 | 2006-08-25 Nick Roberts <nickrob@snap.net.nz> | 1 | 2006-08-24 Francesc Rocher <francesc.rocher@gmail.com> |
| 2 | |||
| 3 | * xdisp.c (overline_margin): New variable. | ||
| 4 | (x_produce_glyphs): Use it. | ||
| 5 | (syms_of_xdisp): DEFVAR_INT it. | ||
| 6 | |||
| 7 | * xterm.c (x_underline_at_descent_line): New variable. | ||
| 8 | (syms_of_xterm): DEFVAR_BOOL it. | ||
| 9 | (x_draw_glyph_string): Use it. | ||
| 10 | Draw underline and overline up to the end of line if the face | ||
| 11 | extends to the end of line. | ||
| 12 | |||
| 13 | * macterm.c: Likewise. | ||
| 14 | |||
| 15 | * w32term.c: Likewise. | ||
| 16 | |||
| 17 | 2006-08-24 Nick Roberts <nickrob@snap.net.nz> | ||
| 2 | 18 | ||
| 3 | * buffer.c (Fswitch_to_buffer): Move buffer to front of | 19 | * buffer.c (Fswitch_to_buffer): Move buffer to front of |
| 4 | buffer-alist if necessary. | 20 | buffer-alist if necessary. |