Skip to content

Commit

Permalink
Fix unintended cursor motion caused by automatic redisplaying.
Browse files Browse the repository at this point in the history
* twittering-mode.el: Fix unintended cursor motion caused by
automatic redisplaying.
(twittering-redisplay-status-on-each-buffer): fix the incorrect
cursor motion occurring when it points the beginning of region
that will be be modified.
  • Loading branch information
cvmat committed Jun 3, 2010
1 parent 6e9fd8b commit 64ccea8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ChangeLog
Expand Up @@ -63,6 +63,12 @@
(twittering-generate-formater-for-first-spec): add a new specifier
"%FOLD[prefix]{...}".

* twittering-mode.el: Fix unintended cursor motion caused by
automatic redisplaying.
(twittering-redisplay-status-on-each-buffer): fix the incorrect
cursor motion occurring when it points the beginning of region
that will be be modified.

2010-05-27 Tadashi MATSUO <tad@mymail.twin.jp>

* twittering-mode.el (twittering-toggle-activate-buffer): restart
Expand Down
2 changes: 1 addition & 1 deletion twittering-mode.el
Expand Up @@ -4547,7 +4547,7 @@ If INTERRUPT is non-nil, the iteration is stopped if FUNC returns nil."
(setq result beg))
(delete-region beg end)
(goto-char beg)
(insert-before-markers updated-str)
(insert updated-str)
(twittering-restore-window-config-after-modification
config beg end))))
buffer))
Expand Down

0 comments on commit 64ccea8

Please sign in to comment.