/etc/uim/loader.scm is in libuim-data 1:1.7.1-3ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | ;; This is an automatically generated file. DO NOT EDIT.
(define stub-im-rec-spec
'((name #f)
(lang "")
(encoding "")
(name-label "")
(short-desc "")
(module-name "")))
(define-record 'stub-im stub-im-rec-spec)
(define stub-im-list
'(
))
(for-each (lambda (stub)
(if (memq (stub-im-name stub) enabled-im-list)
(if enable-lazy-loading?
(apply register-stub-im stub)
(require-module (stub-im-module-name stub)))))
stub-im-list)
|