Bug 1434761 - Fix preprocessor check for release builds. r?glandium draft
authorPanos Astithas <past@mozilla.com>
Wed, 31 Jan 2018 14:56:01 -0800
changeset 749802 814bdea025870e7d1242df0b8e9a3b7dbb0a3dba
parent 748372 c0f08b020685f67a7ea08658731adb410f70b7e6
push id97491
push userbmo:past@mozilla.com
push dateWed, 31 Jan 2018 22:57:06 +0000
reviewersglandium
bugs1434761
milestone60.0a1
Bug 1434761 - Fix preprocessor check for release builds. r?glandium MozReview-Commit-ID: KzSemfEkMcd
browser/app/profile/firefox.js
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -1728,17 +1728,17 @@ pref("extensions.formautofill.creditCard
 // 2: saw the doorhanger
 // 3: submitted an autofill'ed credit card form
 pref("extensions.formautofill.creditCards.used", 0);
 pref("extensions.formautofill.firstTimeUse", true);
 pref("extensions.formautofill.heuristics.enabled", true);
 pref("extensions.formautofill.section.enabled", true);
 pref("extensions.formautofill.loglevel", "Warn");
 // Comma separated list of countries Form Autofill supports
-#ifdef MOZ_UPDATE_CHANNEL == release
+#if MOZ_UPDATE_CHANNEL == release
 pref("extensions.formautofill.supportedCountries", "US");
 pref("extensions.formautofill.supportRTL", false);
 #else
 pref("extensions.formautofill.supportedCountries", "US,CA,DE");
 pref("extensions.formautofill.supportRTL", true);
 #endif
 
 // Whether or not to restore a session with lazy-browser tabs.