Changeset 3797
- Timestamp:
- 09/15/03 16:27:00 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/j/Buffer.java
r3164 r3797 3 3 * 4 4 * Copyright (C) 1998-2003 Peter Graves 5 * $Id: Buffer.java,v 1.5 0 2003-08-01 16:21:28piso Exp $5 * $Id: Buffer.java,v 1.51 2003-09-15 16:27:00 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 1342 1342 return true; 1343 1343 addUndoBoundary(); 1344 boolean succeeded = false; 1344 1345 final File file = getFile(); 1345 1346 if (file != null) { 1346 1347 if (file.isLocal()) 1347 returnsaveLocal(file);1348 succeeded = saveLocal(file); 1348 1349 if (file instanceof FtpFile) 1349 returnsaveFtp();1350 succeeded = saveFtp(); 1350 1351 if (file instanceof SshFile) 1351 return saveSsh((SshFile)file); 1352 } 1353 return false; 1352 succeeded = saveSsh((SshFile)file); 1353 } 1354 if (succeeded && Editor.isLispInitialized()) 1355 LispAPI.invokeAfterSaveHook(this); 1356 return succeeded; 1354 1357 } 1355 1358
Note: See TracChangeset
for help on using the changeset viewer.