summaryrefslogtreecommitdiff
path: root/test/lisp/progmodes/c-ts-mode-resources/indent-preproc.erts
blob: 5a4996f642ed4196a16f3cf2104dfbf5b2bc0b74 (plain)
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
Code:
  (lambda ()
    (c-ts-mode)
    (newline)
    (indent-for-tab-command))

Point-Char: |

Name: Indents inside #if preproc

=-=
static void
free_glyph_pool (struct glyph_pool *pool)
{
  if (pool)
    {
#if defined GLYPH_DEBUG|
#endif
    }
}
=-=
static void
free_glyph_pool (struct glyph_pool *pool)
{
  if (pool)
    {
#if defined GLYPH_DEBUG
      |
#endif
    }
}
=-=-=

Name: Indents to 0 if #if preproc at root

=-=
#if 0|
/* */
static void
=-=
#if 0
|
/* */
static void
=-=-=