diff options
| author | Richard M. Stallman | 1993-11-22 19:47:26 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-11-22 19:47:26 +0000 |
| commit | 916a31191738b5e1bd147d58c6a8aee8953dca10 (patch) | |
| tree | 2dda3c423646a1671482578034445ebdfb14b5a1 /src | |
| parent | 847aabcec25f9eedd8729c2afc2f5a8dc84736f3 (diff) | |
| download | emacs-916a31191738b5e1bd147d58c6a8aee8953dca10.tar.gz emacs-916a31191738b5e1bd147d58c6a8aee8953dca10.zip | |
(Ftext_property_not_all): For trivial yes, return start, not Qt.
Diffstat (limited to 'src')
| -rw-r--r-- | src/textprop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textprop.c b/src/textprop.c index a95b9a9af5d..6c317063d6d 100644 --- a/src/textprop.c +++ b/src/textprop.c | |||
| @@ -1010,7 +1010,7 @@ containing the text.") | |||
| 1010 | XSET (object, Lisp_Buffer, current_buffer); | 1010 | XSET (object, Lisp_Buffer, current_buffer); |
| 1011 | i = validate_interval_range (object, &start, &end, soft); | 1011 | i = validate_interval_range (object, &start, &end, soft); |
| 1012 | if (NULL_INTERVAL_P (i)) | 1012 | if (NULL_INTERVAL_P (i)) |
| 1013 | return (NILP (value) || EQ (start, end)) ? Qnil : Qt; | 1013 | return (NILP (value) || EQ (start, end)) ? Qnil : start; |
| 1014 | s = XINT (start); | 1014 | s = XINT (start); |
| 1015 | e = XINT (end); | 1015 | e = XINT (end); |
| 1016 | 1016 | ||