* nsterm.m (ns_select): Don't return with result uninitialized.
This commit is contained in:
parent
960ce48010
commit
6615748ac6
2 changed files with 6 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
2013-03-16 Jan Djärv <jan.h.d@swipnet.se>
|
||||
|
||||
* nsterm.m (updateFrameSize:): Change resize increments if needed.
|
||||
(ns_select): Don't return with result uninitialized.
|
||||
|
||||
* nsterm.h (EmacsSavePanel, EmacsOpenPanel): Add getFilename
|
||||
and getDirectory.
|
||||
|
|
|
@ -3601,6 +3601,11 @@ overwriting cursor (usually when cursor on a tab) */
|
|||
result = t;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
errno = EINTR;
|
||||
result = -1;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue