diff options
Diffstat (limited to 'lisp/obsolete')
| -rw-r--r-- | lisp/obsolete/cc-compat.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/obsolete/cc-compat.el b/lisp/obsolete/cc-compat.el index bbacd121135..8e9d9e72625 100644 --- a/lisp/obsolete/cc-compat.el +++ b/lisp/obsolete/cc-compat.el | |||
| @@ -59,21 +59,21 @@ | |||
| 59 | 59 | ||
| 60 | ;; In case c-mode.el isn't loaded | 60 | ;; In case c-mode.el isn't loaded |
| 61 | (defvar c-indent-level 2 | 61 | (defvar c-indent-level 2 |
| 62 | "*Indentation of C statements with respect to containing block.") | 62 | "Indentation of C statements with respect to containing block.") |
| 63 | ;;;###autoload(put 'c-indent-level 'safe-local-variable 'integerp) | 63 | ;;;###autoload(put 'c-indent-level 'safe-local-variable 'integerp) |
| 64 | 64 | ||
| 65 | (defvar c-brace-imaginary-offset 0 | 65 | (defvar c-brace-imaginary-offset 0 |
| 66 | "*Imagined indentation of a C open brace that actually follows a statement.") | 66 | "Imagined indentation of a C open brace that actually follows a statement.") |
| 67 | (defvar c-brace-offset 0 | 67 | (defvar c-brace-offset 0 |
| 68 | "*Extra indentation for braces, compared with other text in same context.") | 68 | "Extra indentation for braces, compared with other text in same context.") |
| 69 | (defvar c-argdecl-indent 5 | 69 | (defvar c-argdecl-indent 5 |
| 70 | "*Indentation level of declarations of C function arguments.") | 70 | "Indentation level of declarations of C function arguments.") |
| 71 | (defvar c-label-offset -2 | 71 | (defvar c-label-offset -2 |
| 72 | "*Offset of C label lines and case statements relative to usual indentation.") | 72 | "Offset of C label lines and case statements relative to usual indentation.") |
| 73 | (defvar c-continued-statement-offset 2 | 73 | (defvar c-continued-statement-offset 2 |
| 74 | "*Extra indent for lines not starting new statements.") | 74 | "Extra indent for lines not starting new statements.") |
| 75 | (defvar c-continued-brace-offset 0 | 75 | (defvar c-continued-brace-offset 0 |
| 76 | "*Extra indent for substatements that start with open-braces. | 76 | "Extra indent for substatements that start with open-braces. |
| 77 | This is in addition to c-continued-statement-offset.") | 77 | This is in addition to c-continued-statement-offset.") |
| 78 | 78 | ||
| 79 | 79 | ||