# HG changeset patch # User Gerd Moellmann # Date 979740703 0 # Node ID 19c93f3ebdce1a6038863240f198199f3f9fc892 # Parent 01853844ff616bc4eadf30a3b4ca997a71c8819b *** empty log message *** diff -r 01853844ff61 -r 19c93f3ebdce etc/NEWS --- a/etc/NEWS Wed Jan 17 14:11:06 2001 +0000 +++ b/etc/NEWS Wed Jan 17 14:11:43 2001 +0000 @@ -2178,7 +2178,7 @@ with the more general `:mask' property. +++ -** Image specifications accept more `:algorithm's. +** Image specifications accept more `:conversion's. ** A `?' can be used in a symbol name without escaping it with a backslash. @@ -3657,7 +3657,7 @@ RELIEF is analogous to the `:relief' attribute of faces. Puts a relief around an image. -`:algorithm ALGO' +`:conversion ALGO' Apply an image algorithm to the image before displaying it. diff -r 01853844ff61 -r 19c93f3ebdce lisp/ChangeLog --- a/lisp/ChangeLog Wed Jan 17 14:11:06 2001 +0000 +++ b/lisp/ChangeLog Wed Jan 17 14:11:43 2001 +0000 @@ -1,3 +1,41 @@ +2001-01-17 Gerd Moellmann + + * isearch.el (isearch-lazy-highlight-initial-delay) + (isearch-lazy-highlight-interval): Default to 0. + +2001-01-17 Bob Glickstein + + * isearch.el (isearch-highlight): Set isearch-overlay priority to + 1 here rather than each time through + isearch-lazy-highlight-new-loop. + (isearch-lazy-highlight-max): Variable deleted. + (isearch-lazy-highlight-max-at-a-time): New user variable, like + isearch-lazy-highlight-max but controls a single invocation of + isearch-lazy-highlight-update. + (isearch-lazy-highlight-wrapped): Variable recreated. + (isearch-lazy-highlight-window-start): New variable. + (isearch-lazy-highlight-cleanup): Restored to behavior of + before 2-Jan. + (isearch-lazy-highlight-remove-overlays): Function deleted; + behavior folded into isearch-lazy-highlight-cleanup. "Keep" + behavior removed. + (isearch-lazy-highlight-new-loop): Restore old behavior of calling + isearch-lazy-highlight-update in a loop rather than just once. + Test isearch-invalid-regexp here and decide not to start a new + loop, rather than testing it each time through + isearch-lazy-highlight-update. + (isearch-lazy-highlight-search): Function restored. + (isearch-lazy-highlight-update): Get called in a timer loop again, + but this time highlight more than one match each time through. + Only highlight matches in the visible part of the window. Start + at point, move in the direction of the search, and wrap around at + the edge of the window. Use sit-for to force redisplay and ensure + window-start is credible. "Face suppressing" behavior removed; + overlay priorities should make it unnecessary, right? + (isearch-highlight): Face suppressing behavior removed. + (isearch-dehighlight): Face suppressing behavior removed. + (isearch-set-lazy-highlight-faces-at): Removed. + 2001-01-17 Kenichi Handa * language/european.el ("Latin-1"): Make the format of description diff -r 01853844ff61 -r 19c93f3ebdce lispref/display.texi --- a/lispref/display.texi Wed Jan 17 14:11:06 2001 +0000 +++ b/lispref/display.texi Wed Jan 17 14:11:43 2001 +0000 @@ -1,6 +1,6 @@ @c -*-texinfo-*- @c This is part of the GNU Emacs Lisp Reference Manual. -@c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2000 +@c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2000, 2001 @c Free Software Foundation, Inc. @c See the file elisp.texi for copying conditions. @setfilename ../info/display @@ -2481,8 +2481,8 @@ so that the image appears as a pressed button; otherwise, it appears as an unpressed button. -@item :algorithm @var{algorithm} -The @code{:algorithm} property, if non-@code{nil}, specifies a +@item :conversion @var{algorithm} +The @code{:conversion} property, if non-@code{nil}, specifies a conversion algorithm that should be applied to the image before it is displayed; the value, @var{algorithm}, specifies which algorithm. diff -r 01853844ff61 -r 19c93f3ebdce src/ChangeLog --- a/src/ChangeLog Wed Jan 17 14:11:06 2001 +0000 +++ b/src/ChangeLog Wed Jan 17 14:11:43 2001 +0000 @@ -1,5 +1,12 @@ 2001-01-17 Gerd Moellmann + * xfns.c (QCconversion): Replaces QCalgorithm. + + * w32fns.c (QCconversion): Replaces QCalgorithm. Update copyright. + + * xdisp.c (build_desired_tool_bar_string): Use :conversion instead + of :algorithm. + * xdisp.c (redisplay_tool_bar): Change tool bar's height when not everything could be displayed.