From 3cdd300b433604b5f7a15c81970fb1500305b724 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Fri, 24 Sep 2010 11:53:58 +0200 Subject: [PATCH] Remove useless concat --- org-google-weather.el | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/org-google-weather.el b/org-google-weather.el index 070f628..63f601b 100644 --- a/org-google-weather.el +++ b/org-google-weather.el @@ -123,15 +123,14 @@ If LOCATION is not set, use org-google-weather-location." (temp-symbol (google-weather-data->temperature-symbol data))) (format-spec org-google-weather-format `((?i . ,(if (and icon org-google-weather-display-icon-p) - (concat (propertize "icon" - 'display - (create-image - (concat - org-google-weather-icon-directory - "/" - icon)) - 'rear-nonsticky '(display)) - " ") + (propertize "icon" + 'display + (create-image + (concat + org-google-weather-icon-directory + "/" + icon)) + 'rear-nonsticky '(display)) "")) (?c . ,condition) (?L . ,location) -- 2.11.4.GIT