mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs: Fix format strings for compatibility with Guile 3.
* gnu/packages/emacs.scm (emacs)[arguments]: In the 'patch-program-file-names' and 'install-site-start' phases, specify port in the calls to FORMAT.
This commit is contained in:
parent
cfa6666921
commit
a3efa4f9eb
1 changed files with 2 additions and 2 deletions
|
@ -139,7 +139,7 @@
|
||||||
"lisp/textmodes/artist.el"
|
"lisp/textmodes/artist.el"
|
||||||
"lisp/progmodes/sh-script.el")
|
"lisp/progmodes/sh-script.el")
|
||||||
(("\"/bin/sh\"")
|
(("\"/bin/sh\"")
|
||||||
(format "~s" (which "sh"))))
|
(format #f "~s" (which "sh"))))
|
||||||
#t))
|
#t))
|
||||||
(add-before 'configure 'fix-/bin/pwd
|
(add-before 'configure 'fix-/bin/pwd
|
||||||
(lambda _
|
(lambda _
|
||||||
|
@ -163,7 +163,7 @@
|
||||||
(byte-recompile-directory
|
(byte-recompile-directory
|
||||||
(file-name-as-directory ,dir) 0 1))))
|
(file-name-as-directory ,dir) 0 1))))
|
||||||
(invoke emacs "--quick" "--batch"
|
(invoke emacs "--quick" "--batch"
|
||||||
(format "--eval=~s" expr))))
|
(format #f "--eval=~s" expr))))
|
||||||
|
|
||||||
(copy-file (assoc-ref inputs "guix-emacs.el")
|
(copy-file (assoc-ref inputs "guix-emacs.el")
|
||||||
(string-append lisp-dir "/guix-emacs.el"))
|
(string-append lisp-dir "/guix-emacs.el"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue