diff --git a/ChangeLog b/ChangeLog index 2fc92891..6432903f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -106,6 +106,9 @@ twittering-use-native-retweets (twittering-status-not-blank-p): bug fix: return nil if a status is ended by '@foo'. + + * twittering-mode.el (twittering-edit-post-status): add trailing + newlines to new history element because help-overlay need it. * twittering-mode.el (twittering-make-display-spec-for-icon): returns nil if the type of the image is not supported. diff --git a/twittering-mode.el b/twittering-mode.el index 02da6bab..d952ab48 100644 --- a/twittering-mode.el +++ b/twittering-mode.el @@ -1002,7 +1002,7 @@ Keymap: (interactive) (let ((status (twittering-edit-extract-status))) (setq twittering-edit-history - (cons status twittering-edit-history)) + (cons (concat status "\n\n\n") twittering-edit-history)) (if (twittering-status-not-blank-p status) (let ((parameters `(("status" . ,status) ("source" . "twmode")