浏览代码

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

Patch by Christopher Long
Dan Davison 15 年之前
父节点
当前提交
d2b9343029
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      contrib/babel/lisp/langs/org-babel-octave.el

+ 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