* src/nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").

This commit is contained in:
Glenn Morris 2012-05-14 09:23:11 -07:00
parent 2f4cadd1da
commit 4374de8319
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2012-05-14 Glenn Morris <rgm@gnu.org>
* nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
* keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.

View file

@ -342,7 +342,7 @@ Updated by Christian Limpach (chris@nice.ch)
{
NSArray *paths = [binDir stringsByAppendingPaths:
[NSArray arrayWithObjects: @"bin",
@"lib-exec", nil]];
@"libexec", nil]];
NSEnumerator *pathEnum = [paths objectEnumerator];
resourcePaths = @"";
while (resourcePath = [pathEnum nextObject])