From: Richard M. Stallman Date: Mon, 22 Nov 1993 19:47:26 +0000 (+0000) Subject: (Ftext_property_not_all): For trivial yes, return start, not Qt. X-Git-Tag: emacs-19.34~10737 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=916a31191738b5e1bd147d58c6a8aee8953dca10;p=emacs.git (Ftext_property_not_all): For trivial yes, return start, not Qt. --- 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.") 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);