CI: autofix rust code.
This commit is contained in:
parent
7cf1b2d2b8
commit
5686256039
@ -5,12 +5,15 @@ where
|
|||||||
C: AsRef<str>,
|
C: AsRef<str>,
|
||||||
{
|
{
|
||||||
let escaped_file_contents = escape_elisp_string(file_contents);
|
let escaped_file_contents = escape_elisp_string(file_contents);
|
||||||
let elisp_script = format!(r#"(progn
|
let elisp_script = format!(
|
||||||
|
r#"(progn
|
||||||
(erase-buffer)
|
(erase-buffer)
|
||||||
(insert "{escaped_file_contents}")
|
(insert "{escaped_file_contents}")
|
||||||
(org-mode)
|
(org-mode)
|
||||||
(message "%s" (pp-to-string (org-element-parse-buffer)))
|
(message "%s" (pp-to-string (org-element-parse-buffer)))
|
||||||
)"#, escaped_file_contents=escaped_file_contents);
|
)"#,
|
||||||
|
escaped_file_contents = escaped_file_contents
|
||||||
|
);
|
||||||
let mut cmd = Command::new("emacs");
|
let mut cmd = Command::new("emacs");
|
||||||
let proc = cmd
|
let proc = cmd
|
||||||
.arg("-q")
|
.arg("-q")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user