Skip to content

Commit

Permalink
fix invalid escape sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
hayamiz committed Dec 14, 2009
1 parent 7c712cf commit 01a5395
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
2009-12-15 haya <haya@starfish.unicus.ddo.jp>

* twittering-mode.el (twittering-status-not-blank-p): fix invalid escape sequence

2009-12-12 Alberto Garcia <agarcia@igalia.com>

* twittering-mode.el (twittering-retrieve-image-without-wget):
Expand Down
2 changes: 1 addition & 1 deletion twittering-mode.el
Expand Up @@ -1175,7 +1175,7 @@ If STATUS-DATUM is already in DATA-VAR, return nil. If not, return t."

(defun twittering-status-not-blank-p (status)
(not (string-match
"^\\s-*\\(?:@[-_a-z0-9]+\\(\s+@[-_a-z0-9]+\\)*\\)?\\s-*$" status)))
"^\\s-*\\(?:@[-_a-z0-9]+\\(\\s+@[-_a-z0-9]+\\)*\\)?\\s-*$" status)))

(defun twittering-update-status-from-minibuffer (&optional init-str
reply-to-id)
Expand Down

0 comments on commit 01a5395

Please sign in to comment.