Skip to content

Commit

Permalink
Fix incorrect destruction of replacement table for "%FILL{...}".
Browse files Browse the repository at this point in the history
* twittering-mode.el (twittering-format-status): fix incorrect
destructive modification of the replacement table for the
specifier "%FILL{...}".
  • Loading branch information
cvmat committed Jan 16, 2010
1 parent ea0557a commit 91b8aeb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ChangeLog
@@ -1,3 +1,9 @@
2010-01-16 Tadashi MATSUO <tad@mymail.twin.jp>

* twittering-mode.el (twittering-format-status): fix incorrect
destructive modification of the replacement table for the
specifier "%FILL{...}".

2010-01-16 Yuto Hayamizu <y.hayamizu@gmail.com>

* twittering-mode.el (twittering-edit-setup-help): use 0-witdh
Expand Down
2 changes: 1 addition & 1 deletion twittering-mode.el
Expand Up @@ -1997,7 +1997,7 @@ variable `twittering-status-format'"
(table (cdr (assq 'replacement-table context)))
(mod-table
(cons '("}" . "}")
(delq (assq from table) table))))
(remq (assq from table) table))))
(store-match-data match-data)
(let* ((formatted-str
(twittering-format-string
Expand Down

0 comments on commit 91b8aeb

Please sign in to comment.