From 1715f84d52e71782acc12e54a67fa4e506997071 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Lindqvist?= Date: Tue, 18 Oct 2016 08:10:00 +0200 Subject: [PATCH] google.gmail: no need for symbol wrapping here --- extra/google/gmail/gmail.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/google/gmail/gmail.factor b/extra/google/gmail/gmail.factor index b518c22d87..9791eb2e85 100644 --- a/extra/google/gmail/gmail.factor +++ b/extra/google/gmail/gmail.factor @@ -14,11 +14,11 @@ SYMBOL: access-token : configure-oauth2 ( client-id client-secret -- ) [ auth-uri token-uri redirect-uri ] 2dip gmail-scope-ro { } - oauth2 boa \ oauth2 set ; + oauth2 boa oauth2 set ; : ensure-token ( -- ) access-token [ - [ \ oauth2 get console-flow ] unless* + [ oauth2 get console-flow ] unless* ] change ; : api-call ( method get-params -- result )