From: YAMAMOTO Mitsuharu Date: Thu, 12 Apr 2007 08:11:16 +0000 (+0000) Subject: (xrm_get_preference_database, Fmac_get_preference) X-Git-Tag: emacs-pretest-22.0.98~126 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f82bd023a6d95e228555a635833b5307996e3141;p=emacs.git (xrm_get_preference_database, Fmac_get_preference) [TARGET_API_MAC_CARBON]: Use CFPreferencesAppSynchronize. --- diff --git a/src/mac.c b/src/mac.c index 5084a02b27d..8363326cc05 100644 --- a/src/mac.c +++ b/src/mac.c @@ -1835,6 +1835,8 @@ xrm_get_preference_database (application) if (app_id == NULL) goto out; } + if (!CFPreferencesAppSynchronize (app_id)) + goto out; key_set = CFSetCreateMutable (NULL, 0, &kCFCopyStringSetCallBacks); if (key_set == NULL) @@ -4650,6 +4652,9 @@ otherwise. */) if (app_id == NULL) goto out; } + if (!CFPreferencesAppSynchronize (app_id)) + goto out; + key_str = cfstring_create_with_string (XCAR (key)); if (key_str == NULL) goto out;