This file is indexed.

/etc/emacs/site-start.d/50gettext.el is in gettext-el 0.19.8.1-6.

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