]> git.eshelyaron.com Git - emacs.git/commitdiff
(handle_single_display_spec): Undo 2007-10-16 changes.
authorYAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
Mon, 3 Mar 2008 09:25:30 +0000 (09:25 +0000)
committerYAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
Mon, 3 Mar 2008 09:25:30 +0000 (09:25 +0000)
Don't pretend as if characters with display property haven't been
consumed for string-replacing-string case.

src/ChangeLog
src/xdisp.c

index 30395e9d617c8edff642c071f11b4aa81b599e0a..6da585c7a1b9da8231c778306ed5fdd65a41cd9e 100644 (file)
@@ -1,3 +1,9 @@
+2008-03-03  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
+
+       * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
+       Don't pretend as if characters with display property haven't been
+       consumed for string-replacing-string case.
+
 2008-02-29  Chong Yidong  <cyd@stupidchicken.com>
 
        * xdisp.c (get_overlay_strings_1): Add missing argument type.
index 83792108f42e7c8481fade08b24bb9d20f8f353b..f362f2c352f594026121ac58cc25ced38ae5ff4c 100644 (file)
@@ -4301,15 +4301,13 @@ handle_single_display_spec (it, spec, object, overlay, position,
             `display' property yet.  The call to pop_it in
             set_iterator_to_next will clean this up.  */
          if (BUFFERP (object))
-           it->current.pos = start_pos;
+           *position = start_pos;
        }
       else if (CONSP (value) && EQ (XCAR (value), Qspace))
        {
          it->method = GET_FROM_STRETCH;
          it->object = value;
-         it->position = start_pos;
-         if (BUFFERP (object))
-           it->current.pos = start_pos;
+         *position = it->position = start_pos;
        }
 #ifdef HAVE_WINDOW_SYSTEM
       else
@@ -4323,8 +4321,7 @@ handle_single_display_spec (it, spec, object, overlay, position,
          /* Say that we haven't consumed the characters with
             `display' property yet.  The call to pop_it in
             set_iterator_to_next will clean this up.  */
-         if (BUFFERP (object))
-           it->current.pos = start_pos;
+         *position = start_pos;
        }
 #endif /* HAVE_WINDOW_SYSTEM */