From 01a539524dd737f435efbf0e79ba36d59c1468eb Mon Sep 17 00:00:00 2001 From: Yuto Hayamizu Date: Tue, 15 Dec 2009 03:29:01 +0900 Subject: [PATCH] fix invalid escape sequence --- ChangeLog | 4 ++++ twittering-mode.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index cdc53f70..a16f55e5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-12-15 haya + + * twittering-mode.el (twittering-status-not-blank-p): fix invalid escape sequence + 2009-12-12 Alberto Garcia * twittering-mode.el (twittering-retrieve-image-without-wget): diff --git a/twittering-mode.el b/twittering-mode.el index 78406b24..f710e622 100644 --- a/twittering-mode.el +++ b/twittering-mode.el @@ -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)