Mercurial > hg > xemacs-beta
comparison man/lispref/strings.texi @ 442:abe6d1db359e r21-2-36
Import from CVS: tag r21-2-36
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:35:02 +0200 |
parents | 8de8e3f6228a |
children | 576fb035e263 |
comparison
equal
deleted
inserted
replaced
441:72a7cfa4a488 | 442:abe6d1db359e |
---|---|
608 @node String Properties | 608 @node String Properties |
609 @section String Properties | 609 @section String Properties |
610 @cindex string properties | 610 @cindex string properties |
611 @cindex properties of strings | 611 @cindex properties of strings |
612 | 612 |
613 Similar to symbols, extents, faces, and glyphs, you can attach | 613 Just as with symbols, extents, faces, and glyphs, you can attach |
614 additional information to strings in the form of @dfn{string | 614 additional information to strings in the form of @dfn{string |
615 properties}. These differ from text properties, which are logically | 615 properties}. These differ from text properties, which are logically |
616 attached to particular characters in the string. | 616 attached to particular characters in the string. |
617 | 617 |
618 To attach a property to a string, use @code{put}. To retrieve a property | 618 To attach a property to a string, use @code{put}. To retrieve a property |
619 from a string, use @code{get}. You can also use @code{remprop} to remove | 619 from a string, use @code{get}. You can also use @code{remprop} to remove |
620 a property from a string and @code{object-props} to retrieve a list of | 620 a property from a string and @code{object-plist} to retrieve a list of |
621 all the properties in a string. | 621 all the properties in a string. |
622 | 622 |
623 @node Formatting Strings | 623 @node Formatting Strings |
624 @section Formatting Strings | 624 @section Formatting Strings |
625 @cindex formatting strings | 625 @cindex formatting strings |