File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7979 " Play the csound file in current buffer."
8080 (interactive )
8181 (if csound-repl-start-server-p
82- (compile (format " csound %s %s " csound-play-flags (buffer-file-name )))
82+ (compile (format " csound %s %s " csound-play-flags (shell-quote-argument ( buffer-file-name ) )))
8383 (process-send-string csound-repl--udp-client-proc
8484 (buffer-substring
8585 (point-min ) (point-max )))))
129129 (if csound-repl-start-server-p
130130 (compile (format " csound %s %s -o %s --format=%s %s "
131131 csound-render-flags
132- (buffer-file-name )
133- filename
134- (cadr (split-string filename " \\ ." ))
132+ (shell-quote-argument (buffer-file-name ))
133+ (shell-quote-argument filename)
134+ (-> (split-string filename " \\ ." )
135+ cl-rest cl-first)
135136 (cl-case (string-to-number bit)
136137 (32 " -f" )
137138 (24 " -3" )
You can’t perform that action at this time.
0 commit comments