Mercurial > hg > octave-lyh
comparison src/oct-hist.cc @ 4469:53ee020af847
[project @ 2003-07-26 03:45:10 by jwe]
author | jwe |
---|---|
date | Sat, 26 Jul 2003 03:45:11 +0000 |
parents | ccfdb55c8156 |
children | 539428e4606a |
comparison
equal
deleted
inserted
replaced
4468:efb6301dae80 | 4469:53ee020af847 |
---|---|
438 return; | 438 return; |
439 | 439 |
440 // Call up our favorite editor on the file of commands. | 440 // Call up our favorite editor on the file of commands. |
441 | 441 |
442 std::string cmd = Veditor; | 442 std::string cmd = Veditor; |
443 cmd.append (" "); | 443 cmd.append (" \""); |
444 cmd.append (name); | 444 cmd.append (name); |
445 cmd.append ("\""); | |
445 | 446 |
446 // Ignore interrupts while we are off editing commands. Should we | 447 // Ignore interrupts while we are off editing commands. Should we |
447 // maybe avoid using system()? | 448 // maybe avoid using system()? |
448 | 449 |
449 volatile octave_interrupt_handler old_interrupt_handler | 450 volatile octave_interrupt_handler old_interrupt_handler |