diff options
| author | Richard M. Stallman | 2006-07-03 15:41:50 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-07-03 15:41:50 +0000 |
| commit | 95555145149ca1758e9b9e50d769685ece740134 (patch) | |
| tree | b99a1385ec8318e15cace148eb3c61c6ae667f53 /src | |
| parent | e102f0d8c4d1b5503373ef69b287dcfb359f3aa9 (diff) | |
| download | emacs-95555145149ca1758e9b9e50d769685ece740134.tar.gz emacs-95555145149ca1758e9b9e50d769685ece740134.zip | |
(Fget_char_property_and_overlay): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/textprop.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/textprop.c b/src/textprop.c index a268afba830..0318d12913f 100644 --- a/src/textprop.c +++ b/src/textprop.c | |||
| @@ -690,10 +690,11 @@ overlays are considered only if they are associated with OBJECT. */) | |||
| 690 | DEFUN ("get-char-property-and-overlay", Fget_char_property_and_overlay, | 690 | DEFUN ("get-char-property-and-overlay", Fget_char_property_and_overlay, |
| 691 | Sget_char_property_and_overlay, 2, 3, 0, | 691 | Sget_char_property_and_overlay, 2, 3, 0, |
| 692 | doc: /* Like `get-char-property', but with extra overlay information. | 692 | doc: /* Like `get-char-property', but with extra overlay information. |
| 693 | Return a cons whose car is the return value of `get-char-property' | 693 | The value is a cons cell. Its car is the return value of `get-char-property' |
| 694 | with the same arguments, that is, the value of POSITION's property | 694 | with the same arguments--that is, the value of POSITION's property |
| 695 | PROP in OBJECT, and whose cdr is the overlay in which the property was | 695 | PROP in OBJECT. Its cdr is the overlay in which the property was |
| 696 | found, or nil, if it was found as a text property or not found at all. | 696 | found, or nil, if it was found as a text property or not found at all. |
| 697 | |||
| 697 | OBJECT is optional and defaults to the current buffer. OBJECT may be | 698 | OBJECT is optional and defaults to the current buffer. OBJECT may be |
| 698 | a string, a buffer or a window. For strings, the cdr of the return | 699 | a string, a buffer or a window. For strings, the cdr of the return |
| 699 | value is always nil, since strings do not have overlays. If OBJECT is | 700 | value is always nil, since strings do not have overlays. If OBJECT is |