This file is indexed.

/etc/emacs/site-start.d/50auctex.el is in auctex 11.88-1.1ubuntu1.

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
22
23
24
25
26
27
28
29
30
;;; This is a conffile: you can edit it if you like; however,
;;; please note that if you do not want AUCTeX to override the standard
;;; Emacs TeX mode, you may unload AUCTeX completely by evaluating the
;;; form "(unload-feature 'tex-site)" (i.e., put that string into your
;;; "~/.emacs" to disable AUCTeX completely).

(if (member debian-emacs-flavor '(emacs23 emacs24 emacs-snapshot))
    (if (file-exists-p "/usr/share/emacs/site-lisp/auctex/tex.el")
	(progn
	  (let ((list '((lisp . "auctex") (source . "auctex"))))
	    (while list
	      (let ((elt (car list)))
		(cond
		 ((equal 'lisp (car elt))
		  (let ((dir (concat "/usr/share/"
				     (symbol-name debian-emacs-flavor)
				     "/site-lisp/" (cdr elt))))
		    (when (file-directory-p dir)
		      (if (fboundp 'debian-pkg-add-load-path-item)
			  (debian-pkg-add-load-path-item dir)
			(add-to-list 'load-path dir 'append)))))
		 ((equal 'source (car elt))
		  (let ((dir (concat "/usr/share/emacs/site-lisp/"
				     (cdr elt))))
		    (when (file-directory-p dir)
		      (add-to-list 'load-path dir 'append))))))
	      (setq list (cdr list))))
	  (load "auctex.el")
	  (load "preview-latex.el"))
      (message "auctex: Package removed but not purged; skipping setup")))