This file is indexed.

/usr/lib/lazarus/0.9.30.4/converter/replacenamesunit.lfm is in lazarus-src-0.9.30.4 0.9.30.4-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
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
object ReplaceForm: TReplaceForm
  Height = 472
  Left = 314
  Top = 438
  Width = 433
  Caption = 'Properties and Types to replace'
  ClientHeight = 472
  ClientWidth = 433
  OnCreate = FormCreate
  Position = poScreenCenter
  LCLVersion = '0.9.29'
  object Grid: TStringGrid
    Left = 0
    Height = 421
    Top = 0
    Width = 433
    Align = alClient
    AutoFillColumns = True
    ColCount = 2
    Columns = <    
      item
        Title.Caption = 'Delphi name'
        Width = 214
      end    
      item
        Title.Caption = 'New name'
        Width = 215
      end>
    FixedCols = 0
    Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goDrawFocusSelected, goEditing, goSmoothScroll]
    PopupMenu = PopupMenu1
    RowCount = 2
    TabOrder = 0
    OnEditingDone = GridEditingDone
    OnSetEditText = GridSetEditText
    ColWidths = (
      214
      215
    )
  end
  object ButtonPanel: TButtonPanel
    Left = 6
    Height = 39
    Top = 427
    Width = 421
    OKButton.Name = 'OKButton'
    OKButton.Caption = '&OK'
    OKButton.OnClick = btnOKClick
    HelpButton.Name = 'HelpButton'
    HelpButton.Caption = '&Help'
    CloseButton.Name = 'CloseButton'
    CloseButton.Caption = '&Close'
    CloseButton.Enabled = False
    CancelButton.Name = 'CancelButton'
    CancelButton.Caption = 'Cancel'
    TabOrder = 1
    ShowButtons = [pbOK, pbCancel, pbHelp]
  end
  object PopupMenu1: TPopupMenu
    OnPopup = PopupMenu1Popup
    left = 131
    top = 91
    object InsertRow1: TMenuItem
      Caption = 'Insert Row'
      OnClick = InsertRow1Click
    end
    object DeleteRow1: TMenuItem
      Caption = 'Delete Row'
      OnClick = DeleteRow1Click
    end
  end
end