diff options
| author | Lars Ingebrigtsen | 2021-02-15 12:44:57 +0100 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2021-02-15 13:08:21 +0100 |
| commit | 0bd846c17474b161b11fbe21545609cd545b1798 (patch) | |
| tree | 8e0659a79c8711944379c4e2d1cb41caa893c389 /src/buffer.h | |
| parent | 54e577fbc1fb2e1189388ac290fe70d0f87b6c76 (diff) | |
| download | emacs-0bd846c17474b161b11fbe21545609cd545b1798.tar.gz emacs-0bd846c17474b161b11fbe21545609cd545b1798.zip | |
Rename minor-modes to local-minor-modes
* doc/lispref/modes.texi (Minor Modes): Update documentation.
* lisp/simple.el (completion-with-modes-p): Change usage.
* lisp/emacs-lisp/easy-mmode.el (define-minor-mode): Change usage.
* src/buffer.c: Rename from minor_modes to local_minor_modes
throughout.
(syms_of_buffer): Rename minor-modes to local-minor-modes.
* src/buffer.h (struct buffer): Rename minor_modes_.
* src/pdumper.c (dump_buffer): Update hash and usage.
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.h b/src/buffer.h index 0668d16608b..24e9c3fcbc8 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -339,7 +339,7 @@ struct buffer | |||
| 339 | Lisp_Object major_mode_; | 339 | Lisp_Object major_mode_; |
| 340 | 340 | ||
| 341 | /* Symbol listing all currently enabled minor modes. */ | 341 | /* Symbol listing all currently enabled minor modes. */ |
| 342 | Lisp_Object minor_modes_; | 342 | Lisp_Object local_minor_modes_; |
| 343 | 343 | ||
| 344 | /* Pretty name of major mode (e.g., "Lisp"). */ | 344 | /* Pretty name of major mode (e.g., "Lisp"). */ |
| 345 | Lisp_Object mode_name_; | 345 | Lisp_Object mode_name_; |