diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-02-22 01:03:49 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-02-22 01:03:49 +0000 |
commit | d0cb872a0415321c4a0279d6cb5e06533509960c (patch) | |
tree | f4a3566db36ba600cb5f74dab999652c0eb382c3 /src | |
parent | a63f38642a4eb8df4d3cfae0c4cf02c6859a13f8 (diff) | |
download | emacs-d0cb872a0415321c4a0279d6cb5e06533509960c.tar.gz |
(interval_of): Handle Qt.
Diffstat (limited to 'src')
-rw-r--r-- | src/textprop.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/textprop.c b/src/textprop.c index 091e513689d..26d06cd7659 100644 --- a/src/textprop.c +++ b/src/textprop.c @@ -492,6 +492,8 @@ interval_of (position, object) if (NILP (object)) XSETBUFFER (object, current_buffer); + else if (EQ (object, Qt)) + return NULL_INTERVAL; CHECK_STRING_OR_BUFFER (object, 0); |