Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@n-miyo
Created September 29, 2011 12:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save n-miyo/1250669 to your computer and use it in GitHub Desktop.
Save n-miyo/1250669 to your computer and use it in GitHub Desktop.
patch for emacs-inline.patch: Use preferredLanguages instead of currentLocale.
diff --git a/src/macim.m b/src/macim.m
index d4444db..515cf25 100644
--- a/src/macim.m
+++ b/src/macim.m
@@ -100,7 +100,14 @@ DEFUN ("mac-toggle-input-source", Fmac_toggle_input_source,
}
else
{
- NSString *locale = [[NSLocale currentLocale] localeIdentifier];
+ NSString *locale;
+ NSArray *languages = [NSLocale preferredLanguages];
+ if (languages != nil) {
+ locale = [languages objectAtIndex:0];
+ } else {
+ locale = [[NSLocale currentLocale]
+ objectForKey:NSLocaleLanguageCode];
+ }
is = TISCopyInputSourceForLanguage(locale);
}
if (is) TISSelectInputSource(is);
@n-miyo
Copy link
Author

n-miyo commented Sep 29, 2011

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment