Fix crash starting Emacs to open file
* java/org/gnu/emacs/EmacsThread.java (run): Correct check against extraStartupArgument when an initial file is specified.
This commit is contained in:
parent
f33f3b973a
commit
7f073df533
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ public final class EmacsThread extends Thread
|
|||
}
|
||||
else
|
||||
{
|
||||
if (extraStartupArgument != null)
|
||||
if (extraStartupArgument == null)
|
||||
args = new String[] { "libandroid-emacs.so",
|
||||
fileToOpen, };
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue