This file is indexed.

/usr/share/doc/paredit-el/README.Debian is in paredit-el 20-2.

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
Paredit for Debian
==================

By default, paredit is not enabled in any major modes.  Deciding which
modes should use paredit is rather subjective, so I've taken the
safest approach and left it off for all of them.  This means that
simply apt-get installing paredit-el should give neither a pleasant
nor nasty surprise to users.

The most typical major modes in which to use paredit are lisp and
scheme.  To enable those, add the following to your .emacs:

    (add-hook 'lisp-mode-hook (lambda () (paredit-mode +1)))
    (add-hook 'scheme-mode-hook (lambda () (paredit-mode +1)))

A slightly more paranoid version might be:

    (when (fboundp 'paredit-mode)
      (mapc (lambda (hook)
              (add-hook hook (lambda () (paredit-mode +1))))
            '(lisp-mode-hook scheme-mode-hook)))

The latter will not cause an error when paredit isn't installed, and
doesn't involve copy-and-pasting.

 -- Trent Buck <trentbuck@gmail.com>, Wed,  4 Apr 2007 18:12:58 +1000