aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1993-11-22 19:47:26 +0000
committerRichard M. Stallman <[email protected]>1993-11-22 19:47:26 +0000
commit916a31191738b5e1bd147d58c6a8aee8953dca10 (patch)
tree2dda3c423646a1671482578034445ebdfb14b5a1
parent847aabcec25f9eedd8729c2afc2f5a8dc84736f3 (diff)
(Ftext_property_not_all): For trivial yes, return start, not Qt.
-rw-r--r--src/textprop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textprop.c b/src/textprop.c
index a95b9a9af5..6c317063d6 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -1010,7 +1010,7 @@ containing the text.")
XSET (object, Lisp_Buffer, current_buffer);
i = validate_interval_range (object, &start, &end, soft);
if (NULL_INTERVAL_P (i))
- return (NILP (value) || EQ (start, end)) ? Qnil : Qt;
+ return (NILP (value) || EQ (start, end)) ? Qnil : start;
s = XINT (start);
e = XINT (end);