This file is indexed.

/usr/lib/lazarus/0.9.30.4/debugger/evaluatedlg.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
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
inherited EvaluateDlg: TEvaluateDlg
  Left = 470
  Height = 290
  Top = 393
  Width = 400
  ActiveControl = cmbExpression
  BorderStyle = bsSizeToolWin
  Caption = 'Evaluate/Modify'
  ClientHeight = 290
  ClientWidth = 400
  Constraints.MinHeight = 200
  Constraints.MinWidth = 300
  KeyPreview = True
  OnClose = FormClose
  OnKeyDown = FormKeyDown
  object Label1: TLabel[0]
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = ToolBar1
    AnchorSideTop.Side = asrBottom
    Left = 6
    Height = 14
    Top = 47
    Width = 72
    BorderSpacing.Left = 6
    BorderSpacing.Top = 3
    Caption = '&Expression:'
    FocusControl = cmbExpression
    ParentColor = False
  end
  object Label2: TLabel[1]
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = cmbExpression
    AnchorSideTop.Side = asrBottom
    Left = 6
    Height = 14
    Top = 93
    Width = 47
    BorderSpacing.Left = 6
    BorderSpacing.Top = 6
    Caption = '&Result:'
    FocusControl = txtResult
    ParentColor = False
  end
  object lblNewValue: TLabel[2]
    AnchorSideLeft.Control = Owner
    AnchorSideBottom.Control = cmbNewValue
    Left = 6
    Height = 14
    Top = 244
    Width = 69
    Anchors = [akLeft, akBottom]
    BorderSpacing.Left = 6
    BorderSpacing.Bottom = 3
    Caption = '&New value:'
    FocusControl = cmbNewValue
    ParentColor = False
  end
  object ToolBar1: TToolBar[3]
    Left = 0
    Height = 44
    Top = 0
    Width = 400
    AutoSize = True
    ButtonHeight = 40
    ButtonWidth = 50
    Caption = 'ToolBar1'
    EdgeBorders = [ebTop, ebBottom]
    Indent = 2
    ShowCaptions = True
    TabOrder = 0
    TabStop = True
    object tbInspect: TToolButton
      Left = 156
      Top = 2
      Caption = '&Inspect'
      Enabled = False
      ImageIndex = 3
      OnClick = tbInspectClick
    end
    object tbWatch: TToolButton
      Left = 106
      Top = 2
      AllowAllUp = True
      Caption = '&Watch'
      Enabled = False
      ImageIndex = 2
      OnClick = tbWatchClick
    end
    object tbModify: TToolButton
      Left = 56
      Top = 2
      Caption = '&Modify'
      Enabled = False
      ImageIndex = 1
      OnClick = tbModifyClick
    end
    object tbEvaluate: TToolButton
      Left = 2
      Top = 2
      Caption = 'E&valuate'
      Enabled = False
      ImageIndex = 0
      OnClick = tbEvaluateClick
    end
  end
  object cmbExpression: TComboBox[4]
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = Label1
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    Left = 6
    Height = 23
    Top = 64
    Width = 388
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Left = 6
    BorderSpacing.Top = 3
    BorderSpacing.Right = 6
    ItemHeight = 0
    OnChange = cmbExpressionChange
    OnKeyDown = cmbExpressionKeyDown
    TabOrder = 2
  end
  object txtResult: TMemo[5]
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = Label2
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Control = lblNewValue
    Left = 6
    Height = 128
    Top = 110
    Width = 388
    Anchors = [akTop, akLeft, akRight, akBottom]
    BorderSpacing.Left = 6
    BorderSpacing.Top = 3
    BorderSpacing.Right = 6
    BorderSpacing.Bottom = 6
    ScrollBars = ssAutoVertical
    TabOrder = 1
  end
  object cmbNewValue: TComboBox[6]
    AnchorSideLeft.Control = Owner
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Control = Owner
    AnchorSideBottom.Side = asrBottom
    Left = 6
    Height = 23
    Top = 261
    Width = 388
    Anchors = [akLeft, akRight, akBottom]
    BorderSpacing.Left = 6
    BorderSpacing.Right = 6
    BorderSpacing.Bottom = 6
    ItemHeight = 0
    OnKeyDown = cmbNewValueKeyDown
    TabOrder = 3
  end
end