diff 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
line wrap: on
line diff
--- a/src/oct-hist.cc
+++ b/src/oct-hist.cc
@@ -440,8 +440,9 @@
   // Call up our favorite editor on the file of commands.
 
   std::string cmd = Veditor;
-  cmd.append (" ");
+  cmd.append (" \"");
   cmd.append (name);
+  cmd.append ("\"");
 
   // Ignore interrupts while we are off editing commands.  Should we
   // maybe avoid using system()?