Prechádzať zdrojové kódy

babel: Avoid trouble with '%' in matlab/octave output

Patch by Christopher Long
Dan Davison 15 rokov pred
rodič
commit
d2b9343029

+ 1 - 1
contrib/babel/lisp/langs/org-babel-octave.el

@@ -113,7 +113,7 @@ then create. Return the initialized session."
    "%s
 if ischar(ans)
    fid = fopen('%s', 'w')
-   fprintf(fid, ans)
+   fprintf(fid, '%%s', ans)
    fprintf(fid, '\\n')
    fclose(fid)
 else