1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-29 07:58:28 +00:00

(Ftext_property_not_all): For trivial yes, return start, not Qt.

This commit is contained in:
Richard M. Stallman 1993-11-22 19:47:26 +00:00
parent 847aabcec2
commit 916a311917

View File

@ -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);