Fix saving files in text editor
It stored the old content, so effectively not changing the file. I don't really understand why *this* was the version I committed, because I was sure I tested it and it worked :)
This commit is contained in:
parent
4c380a8ac4
commit
45f12a9354
1 changed files with 3 additions and 2 deletions
|
@ -130,8 +130,8 @@ sub _editor($title, $origdata) {
|
|||
],
|
||||
-values => [ 1, 0 ],
|
||||
);
|
||||
$return = $origdata if $answer == 1;
|
||||
$cui->mainloopExit if $answer >= 0;
|
||||
$return = $editor->get if $answer == 1;
|
||||
$cui->mainloopExit if $answer >= 0;
|
||||
} else {
|
||||
$cui->mainloopExit;
|
||||
}
|
||||
|
@ -163,6 +163,7 @@ sub edit($filename) {
|
|||
or die "Someone else is alreading editing $filename.\n";
|
||||
|
||||
my $save = _editor($filename, scalar slurp $filename);
|
||||
|
||||
if (defined $save) {
|
||||
spurt $filename, $save;
|
||||
print "$filename updated.\n";
|
||||
|
|
Loading…
Add table
Reference in a new issue