Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions TeXmacs/plugins/gnuplot/goldfish/tm-gnuplot.scm
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,10 @@

(define (parse-magic-line magic-line)
(let ((parser (make-argument-parser)))
(parser 'add '((name . "width") (short . "width") (default . "0.8par")))
(parser 'add '((name . "height") (short . "height") (default . "0px")))
(parser 'add '((name . "output") (short . "output") (default . "")))
(parser 'parse (cdr (string-tokenize magic-line)))
(parser :add '((name . "width") (short . "width") (default . "0.8par")))
(parser :add '((name . "height") (short . "height") (default . "0px")))
(parser :add '((name . "output") (short . "output") (default . "")))
(parser :parse (cdr (string-tokenize magic-line)))
(list (parser 'width) (parser 'height) (parser 'output))))

(define (flush-image path width height)
Expand Down
2 changes: 1 addition & 1 deletion TeXmacs/plugins/gnuplot/progs/init-gnuplot.scm
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
(string-append
(string-quote (url->system (find-binary-goldfish)))
" "
"-l"
"load"
" "
(string-quote
(string-append (url->system (get-texmacs-path))
Expand Down
9 changes: 9 additions & 0 deletions devel/201_99.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# [201_99]

## 如何测试
`https://liiistem.cn/docs/guide-gnuplot/docs/guide-gnuplot_1.html`
`https://liiistem.cn/docs/guide-gnuplot/docs/guide-gnuplot_2.html`
`https://liiistem.cn/docs/guide-gnuplot/docs/guide-gnuplot_3.html`
通过该教程来进行测试Gnuplot是否能够正常使用

## 2026/03/23 修复升级goldfish之后gnuplot无法使用的问题