Jerry James <james(a)xemacs.org> writes:
PATCH 21.5
This looks like an incomplete sync with Emacs. Copy some text into a
register. Then M-x view-register that register and you'll get an error
message telling you that yank-excluded-properties isn't bound. That's
okay, because we don't have a function named
remove-list-of-text-properties either.
lisp/ChangeLog addition:
2006-03-15 Jerry James <james(a)xemacs.org>
* register.el (describe-register-1): Use set-text-properties
instead of the nonexistent remove-list-of-text-properties.
xemacs-21.5 source patch:
Diff command: cvs -q diff -uN
Files affected: lisp/register.el
Index: lisp/register.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/register.el,v
retrieving revision 1.9
diff -d -u -r1.9 register.el
--- lisp/register.el 2005/03/28 12:14:02 1.9
+++ lisp/register.el 2006/03/15 21:51:49
@@ -231,8 +231,7 @@
(princ (car val))))
((stringp val)
- (remove-list-of-text-properties 0 (length val)
- yank-excluded-properties val)
+ (set-text-properties 0 (length val) nil val)
(if verbose
(progn
(princ "the text:\n")
Shouldn't this change be flagged with an
; XEmacs change
comment, if I understand the issue correctly?
This is a change that needs to be preserved on the next sync, right?
--
Adrian Aichner
mailto:adrian@xemacs.org
http://www.xemacs.org/