This file is indexed.

/etc/emacs/site-start.d/50gettext.el is in gettext-el 0.18.3.1-1ubuntu2.

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
(if (not (file-exists-p "/usr/share/emacs/site-lisp/gettext"))
  (message "Package gettext-el removed but not purged. Skipping setup.")
(setq auto-mode-alist
(cons '("\\.po[tx]?\\'\\|\\.po\\." . po-mode) auto-mode-alist))
(autoload 'po-mode "gettext/po-mode"
  "Major mode for translators to edit PO files" t)
(autoload 'po-find-file-coding-system "gettext/po-mode")
(unless (featurep 'po-find-file-coding-system)
  (autoload 'po-find-file-coding-system "gettext/po-compat"))
(if (fboundp 'modify-coding-system-alist)
  (modify-coding-system-alist 'file "\\.po[tx]?\\'\\|\\.po\\."
    'po-find-file-coding-system))
)