This file is indexed.

/usr/share/doc/libgtkada-doc/examples/handlers/README is in libgtkada-doc 2.24.1-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
This directory contains two main examples related to the handling
of signals and marshallers in GtkAda.

- delete_event.adb

  Shows how you can connect the "delete" signal to a widget to prevent
  its closure by GtkAda.
  This signal expects handlers that return a Boolean.

- own_marshallers.ads, general_tips.adb, specific_tips.adb

  Demonstrate how you can create how you can connect to a signal that
  does not have any predefined marshaller in gtk-marshallers.

  general_tips.adb shows how to use the general form of handlers.
  specific_tips.adb shows how to create your own marshallers.

  These are not examples that you can run!!