saveFileB saves the current state of file B to given filename
(fname core.Filename)
| 313 | |
| 314 | // saveFileB saves the current state of file B to given filename |
| 315 | func (dv *DiffEditor) saveFileB(fname core.Filename) { //types:add |
| 316 | dv.saveAs(true, fname) |
| 317 | dv.updateToolbar() |
| 318 | } |
| 319 | |
| 320 | // DiffStrings computes differences between two lines-of-strings and displays in |
| 321 | // DiffEditor. |
nothing calls this directly
no test coverage detected