diff options
| author | Arun Isaac <arunisaac@systemreboot.net> | 2026-02-09 23:21:25 +0000 |
|---|---|---|
| committer | Arun Isaac <arunisaac@systemreboot.net> | 2026-02-10 01:42:56 +0000 |
| commit | 94e566b99e323d40e5d64778410d22aa2b941c54 (patch) | |
| tree | c40090e62751e34f0121ec55569e7417c699bff6 /gnu | |
| parent | 36ac4f6ca3bbc040fcd69928f945b5411555d497 (diff) | |
gnu: uim: Do not return #t from custom phases.
* gnu/packages/xorg.scm (uim)[arguments]: Do not return #t from custom
phases.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/xorg.scm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index a08ef345259..dcf62b6994b 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -13,7 +13,7 @@ ;;; Copyright © 2016, 2017 John Darrington <jmd@gnu.org> ;;; Copyright © 2017-2022 Marius Bakke <marius@gnu.org> ;;; Copyright © 2017, 2018, 2019 Rutger Helling <rhelling@mykolab.com> -;;; Copyright © 2017, 2020 Arun Isaac <arunisaac@systemreboot.net> +;;; Copyright © 2017, 2020, 2026 Arun Isaac <arunisaac@systemreboot.net> ;;; Copyright © 2018–2022, 2024 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net> ;;; Copyright © 2018, 2020, 2022 Oleg Pykhalov <go.wigust@gmail.com> @@ -6701,14 +6701,12 @@ X11 servers, Windows, or macOS.") (let ((out (assoc-ref outputs "out"))) (emacs-substitute-variables "emacs/uim-var.el" ("uim-el-agent" (string-append out "/bin/uim-el-agent")) - ("uim-el-helper-agent" (string-append out "/bin/uim-el-helper-agent")))) - #t)) + ("uim-el-helper-agent" (string-append out "/bin/uim-el-helper-agent")))))) (add-after 'install 'make-autoloads (lambda* (#:key outputs #:allow-other-keys) (emacs-generate-autoloads ,name (string-append (assoc-ref outputs "out") - "/share/emacs/site-lisp/uim-el")) - #t))))) + "/share/emacs/site-lisp/uim-el"))))))) (home-page "https://github.com/uim/uim") (synopsis "Multilingual input method framework") (description "Uim is a multilingual input method library and environment. |
