NOTE: This patch has been committed.
xemacs-packages/edit-utils/ChangeLog addition:
2005-01-31 Ben Wing <ben(a)xemacs.org>
* lazy-shot.el (lazy-shot-install-extent):
Use plain set-extent-property as
set-extent-initial-redisplay-function is going away.
packages source patch:
Diff command: bash -ci "cvs-diff --show-c-function -no-changelog "
Files affected: xemacs-packages/edit-utils/lazy-shot.el
Index: xemacs-packages/edit-utils/lazy-shot.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/edit-utils/lazy-shot.el,v
retrieving revision 1.6
diff -u -p -r1.6 lazy-shot.el
--- xemacs-packages/edit-utils/lazy-shot.el 2002/11/28 18:55:08 1.6
+++ xemacs-packages/edit-utils/lazy-shot.el 2005/01/31 21:35:19
@@ -232,8 +232,8 @@ stealth locking functions."
"Make an extent that will lazy-shot if it is displayed."
(let ((extent (make-extent spos epos buffer)))
(when extent
- (set-extent-initial-redisplay-function extent
- 'lazy-shot-redisplay-function))
+ (set-extent-property extent 'initial-redisplay-function
+ 'lazy-shot-redisplay-function))
extent))
Show replies by date