diff options
| author | Eli Zaretskii | 2017-11-18 13:46:13 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2017-11-18 13:46:13 +0200 |
| commit | 4c21d04057d5f4f801d57e8aa2ffdab834ddc48a (patch) | |
| tree | de25349234f24378de45978459bbfefe22453d7a | |
| parent | 319c2de9dab577ea97f6c63cb8fd5b7ac3da82b0 (diff) | |
| download | emacs-4c21d04057d5f4f801d57e8aa2ffdab834ddc48a.tar.gz emacs-4c21d04057d5f4f801d57e8aa2ffdab834ddc48a.zip | |
Fix a typo in doc string of electric-indent-functions-without-reindent
* lisp/electric.el (electric-indent-functions-without-reindent):
Doc fix. (Bug#29304)
| -rw-r--r-- | lisp/electric.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/electric.el b/lisp/electric.el index d7929945db2..5ce747410b6 100644 --- a/lisp/electric.el +++ b/lisp/electric.el | |||
| @@ -227,7 +227,7 @@ Python does not lend itself to fully automatic indentation.") | |||
| 227 | haskell-indentation-indent-line haskell-indent-cycle haskell-simple-indent | 227 | haskell-indentation-indent-line haskell-indent-cycle haskell-simple-indent |
| 228 | yaml-indent-line) | 228 | yaml-indent-line) |
| 229 | "List of indent functions that can't reindent. | 229 | "List of indent functions that can't reindent. |
| 230 | If `line-indent-function' is one of those, then `electric-indent-mode' will | 230 | If `indent-line-function' is one of those, then `electric-indent-mode' will |
| 231 | not try to reindent lines. It is normally better to make the major | 231 | not try to reindent lines. It is normally better to make the major |
| 232 | mode set `electric-indent-inhibit', but this can be used as a workaround.") | 232 | mode set `electric-indent-inhibit', but this can be used as a workaround.") |
| 233 | 233 | ||