This file is indexed.

/usr/share/doc/elpa-flycheck/html/glossary.html is in flycheck-doc 31-1.

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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Glossary &#8212; Flycheck 31 documentation</title>
    <link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
    <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    './',
        VERSION:     '31',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true,
        SOURCELINK_SUFFIX: '.txt'
      };
    </script>
    <script type="text/javascript" src="_static/jquery.js"></script>
    <script type="text/javascript" src="_static/underscore.js"></script>
    <script type="text/javascript" src="_static/doctools.js"></script>
    <link rel="shortcut icon" href="_static/favicon.ico"/>
    <link rel="index" title="Index" href="genindex.html" />
    <link rel="search" title="Search" href="search.html" />
    <link rel="next" title="Changes" href="changes.html" />
    <link rel="prev" title="Supported Languages" href="languages.html" />
<script type="text/javascript">
  /* Prevent injected analytics from running with a no-op, but
     let other scripts be injected (we need that for the readthedocs
     widget at the bottom-right of the screen) */
  (function(){
    var props = Object.getOwnPropertyDescriptor(HTMLScriptElement.prototype, 'src');
    var _set = props.set;
    Object.defineProperty(HTMLScriptElement.prototype, 'src', {
      configurable: false, /* Prevent further redefinition of this property */
      set: function(url) {
        if (url.indexOf('google-analytics.com') > -1) return;
        else _set.apply(this, arguments);
      }
    });
  }())
</script>

  </head>
  <body>
  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body" role="main">
            
  <div class="section" id="glossary">
<h1>Glossary<a class="headerlink" href="#glossary" title="Permalink to this headline"></a></h1>
<p>The glossary explains most of the special terms we use in this documentation.
some of these are originally explained in the <a class="reference external" href="https://www.gnu.org/software/emacs/manual/html_node/emacs/index.html">Emacs manual</a> or the <a class="reference external" href="https://www.gnu.org/software/emacs/manual/html_node/elisp/index.html">Emacs Lisp
reference</a>, but we reproduce them here for convenience.</p>
<dl class="glossary docutils">
<dt id="term-init-file">init file<dt id="term-user-init-file">user init file</dt>
<dd><p class="first">Your main Emacs configuration file.  It’s&nbsp;typically located in your
<a class="reference internal" href="#term-user-emacs-directory"><span class="xref std std-term">user emacs directory</span></a> at <code class="file docutils literal"><span class="pre">$HOME/.emacs.d/init.el</span></code>.  Emacs
also looks at <code class="file docutils literal"><span class="pre">$HOME/.emacs</span></code>, but this location is not recommended
anymore.  To find out the actual path to your init file of your Emacs
session inspect the value of the variable <code class="xref any docutils literal"><span class="pre">user-init-file</span></code> with <code class="kbd docutils literal"><span class="pre">C-h</span>
<span class="pre">v</span> <span class="pre">user-init-file</span></code>.  You can visit it directly with <code class="kbd docutils literal"><span class="pre">M-:</span> <span class="pre">(find-file</span>
<span class="pre">user-init-file)</span></code>.</p>
<div class="last admonition seealso">
<p class="first admonition-title">See also</p>
<dl class="last docutils">
<dt><em class="xref infonode">Init File(emacs)</em></dt>
<dd>More information about the init file.</dd>
<dt><em class="xref infonode">Init File(elisp)</em></dt>
<dd>Programming interface for the init file.</dd>
</dl>
</div>
</dd>
<dt id="term-user-emacs-directory">user emacs directory</dt>
<dd>The directory for all Emacs related files of the current user, at
<code class="file docutils literal"><span class="pre">~/.emacs.d/</span></code>.  Many Emacs packages create data files in this
directory, and it holds the recommended location for the <a class="reference internal" href="#term-init-file"><span class="xref std std-term">init file</span></a>
at <code class="file docutils literal"><span class="pre">~/.emacs.d/init.el</span></code>.</dd>
<dt id="term-registered-syntax-checker">registered syntax checker</dt>
<dd>A&nbsp;syntax checker in <a class="reference internal" href="user/syntax-checkers.html#variable-flycheck-checkers" title="flycheck-checkers"><code class="xref any el el-defvar docutils literal"><span class="pre">flycheck-checkers</span></code></a>.  Flycheck will only use these
syntax checkers when checking buffers automatically.</dd>
<dt id="term-verification-buffer">verification buffer</dt>
<dd>A buffer shown by <code class="xref any docutils literal"><span class="pre">M-x</span> <span class="pre">flycheck-verify-setup</span></code>.  This buffer contains
information about the Flycheck setup for the current buffer.</dd>
<dt id="term-executable-option">executable option<dt id="term-executable-options">executable options</dt>
<dd><p class="first">Options to override the executables of syntax checkers that run external
commands.  They are named <code class="samp docutils literal"><span class="pre">flycheck-</span><em><span class="pre">checker</span></em><span class="pre">-executable</span></code>,
e.g. <code class="docutils literal"><span class="pre">flycheck-c/c++-clang-executable</span></code> for <a class="reference internal" href="languages.html#syntax-checker-c/c++-clang"><code class="xref any std std-checker docutils literal"><span class="pre">c/c++-clang</span></code></a>.</p>
<p class="last">Flycheck implicit defines these options for all syntax checkers defined
with <code class="xref any docutils literal"><span class="pre">flycheck-define-checker</span></code>.</p>
</dd>
</dl>
</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
        <div class="sphinxsidebarwrapper">
<p class="logo">
    <a href="index.html">
        <img class="logo" src="_static/logo.png" alt="Logo"/>
        
    </a>
</p>



<p class="blurb">Syntax checking for GNU Emacs</p>






<h4>Tables</h4>
<ul>
    <li><a href="languages.html">Supported languages</a></li>
    <li><a href="changes.html">List of changes</a></li>
    <li><a href="genindex.html">Index</a></li>
</ul><h3>Navigation</h3>
<ul>
<li class="toctree-l1"><a class="reference internal" href="user/installation.html">Installation</a></li>
<li class="toctree-l1"><a class="reference internal" href="user/quickstart.html">Quickstart</a></li>
<li class="toctree-l1"><a class="reference internal" href="user/troubleshooting.html">Troubleshooting</a></li>
<li class="toctree-l1"><a class="reference internal" href="user/syntax-checks.html">Check buffers</a></li>
<li class="toctree-l1"><a class="reference internal" href="user/syntax-checkers.html">Syntax checkers</a></li>
<li class="toctree-l1"><a class="reference internal" href="user/error-reports.html">See errors in buffers</a></li>
<li class="toctree-l1"><a class="reference internal" href="user/error-list.html">List all errors</a></li>
<li class="toctree-l1"><a class="reference internal" href="user/error-interaction.html">Interact with errors</a></li>
<li class="toctree-l1"><a class="reference internal" href="user/flycheck-versus-flymake.html">Flycheck versus Flymake</a></li>
</ul>
<ul>
<li class="toctree-l1"><a class="reference internal" href="community/conduct.html">Flycheck Code of Conduct</a></li>
<li class="toctree-l1"><a class="reference internal" href="community/extensions.html">Recommended extensions</a></li>
<li class="toctree-l1"><a class="reference internal" href="community/get-help.html">Get help</a></li>
<li class="toctree-l1"><a class="reference internal" href="community/people.html">People</a></li>
</ul>
<ul>
<li class="toctree-l1"><a class="reference internal" href="developer/developing.html">Developer’s Guide</a></li>
</ul>
<ul>
<li class="toctree-l1"><a class="reference internal" href="contributor/contributing.html">Contributor’s Guide</a></li>
<li class="toctree-l1"><a class="reference internal" href="contributor/style-guide.html">Style Guide</a></li>
<li class="toctree-l1"><a class="reference internal" href="contributor/maintaining.html">Maintainer’s Guide</a></li>
</ul>
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="languages.html">Supported Languages</a></li>
<li class="toctree-l1 current"><a class="current reference internal" href="#">Glossary</a></li>
<li class="toctree-l1"><a class="reference internal" href="changes.html">Changes</a></li>
</ul>
<ul>
<li class="toctree-l1"><a class="reference internal" href="licenses.html">Flycheck licenses</a></li>
</ul>

<div class="relations">
<h3>Related Topics</h3>
<ul>
  <li><a href="index.html">Documentation overview</a><ul>
      <li>Previous: <a href="languages.html" title="previous chapter">Supported Languages</a></li>
      <li>Next: <a href="changes.html" title="next chapter">Changes</a></li>
  </ul></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
  <h3>Quick search</h3>
    <form class="search" action="search.html" method="get">
      <div><input type="text" name="q" /></div>
      <div><input type="submit" value="Go" /></div>
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="footer">
      &copy; 2014-2017, Sebastian Wiesner and Flycheck contributors.
      
      |
      Powered by <a href="http://sphinx-doc.org/">Sphinx 1.6.5</a>
      &amp; <a href="https://github.com/bitprophet/alabaster">Alabaster 0.7.8</a>
      
      |
      <a href="_sources/glossary.rst.txt"
          rel="nofollow">Page source</a>
    </div>

    

    
  </body>
</html>