Skip to content

Commit

Permalink
fix coding style.
Browse files Browse the repository at this point in the history
  • Loading branch information
yata committed Jan 6, 2010
1 parent fba681e commit d1a1f47
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion twittering-mode.el
Expand Up @@ -877,7 +877,10 @@ Return nil if STR is invalid as a timeline spec."
(when twittering-use-ssl
(push "ssl" enabled-options))
(setq mode-name
(concat twittering-mode-string " " spec-string
(concat twittering-mode-string
(if spec-string
(concat " " spec-string)
"")
(if enabled-options
(concat "["
(mapconcat 'identity enabled-options ",")
Expand Down

0 comments on commit d1a1f47

Please sign in to comment.