From 237643703f9dc1b6213b7121dc93b6ffcf882035 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 30 May 2011 12:22:11 +0200 Subject: [PATCH] The information is now a full URL Signed-off-by: Julien Danjou --- google-weather.el | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/google-weather.el b/google-weather.el index 3dc743a..6b40847 100644 --- a/google-weather.el +++ b/google-weather.el @@ -46,10 +46,6 @@ "www.google.com/ig/api" "URL of the Google Weather API.") -(defconst google-weather-image-url - "http://www.google.com" - "URL prefix for images.") - (defcustom google-weather-unit-system-temperature-assoc '(("SI" . "℃") ("US" . "℉")) @@ -176,8 +172,7 @@ See `google-weather-retrieve-data' for the use of EXPIRE-TIME." `(,forecast-encoded-date (low ,(google-weather-assoc 'low forecast)) (high ,(google-weather-assoc 'high forecast)) - (icon ,(concat google-weather-image-url - (google-weather-assoc 'icon forecast))) + (icon ,(google-weather-assoc 'icon forecast)) (condition ,(google-weather-assoc 'condition forecast))))) (loop for entry in (google-weather-data->weather data) when (eq (car entry) 'forecast_conditions) -- 2.11.4.GIT