diff options
| author | Stefan Monnier | 2020-09-04 08:46:45 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2020-09-04 08:46:45 -0400 |
| commit | 2b95300cf8e3da9f505233f116cabe39a3564fa7 (patch) | |
| tree | d9a399644b1b3f847676ce6f3668e33d9f252eec | |
| parent | 5489524ab0dfb1854bf43077d9adedf1eb022027 (diff) | |
| download | emacs-2b95300cf8e3da9f505233f116cabe39a3564fa7.tar.gz emacs-2b95300cf8e3da9f505233f116cabe39a3564fa7.zip | |
* lisp/display-fill-column-indicator.el: Fix bug#41145
(global-display-fill-column-indicator-mode): Specify the implicit
defustom's group explicitly.
* lisp/cus-dep.el (custom-make-dependencies): Also look at
define(-globalized)-minor-mode since it can also define custom vars.
| -rw-r--r-- | lisp/cus-dep.el | 2 | ||||
| -rw-r--r-- | lisp/display-fill-column-indicator.el | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lisp/cus-dep.el b/lisp/cus-dep.el index fd307a5c04e..e2fd7febd2f 100644 --- a/lisp/cus-dep.el +++ b/lisp/cus-dep.el | |||
| @@ -99,7 +99,7 @@ Usage: emacs -batch -l ./cus-dep.el -f custom-make-dependencies DIRS" | |||
| 99 | (setq name (intern name))) | 99 | (setq name (intern name))) |
| 100 | (condition-case nil | 100 | (condition-case nil |
| 101 | (while (re-search-forward | 101 | (while (re-search-forward |
| 102 | "^(def\\(custom\\|face\\|group\\)" nil t) | 102 | "^(def\\(custom\\|face\\|group\\|ine\\(?:-globalized\\)?-minor-mode\\)" nil t) |
| 103 | (beginning-of-line) | 103 | (beginning-of-line) |
| 104 | (let ((type (match-string 1)) | 104 | (let ((type (match-string 1)) |
| 105 | (expr (read (current-buffer)))) | 105 | (expr (read (current-buffer)))) |
diff --git a/lisp/display-fill-column-indicator.el b/lisp/display-fill-column-indicator.el index 3f947bdc1c9..3391aa371b7 100644 --- a/lisp/display-fill-column-indicator.el +++ b/lisp/display-fill-column-indicator.el | |||
| @@ -73,7 +73,9 @@ See Info node `Displaying Boundaries' for details." | |||
| 73 | 73 | ||
| 74 | ;;;###autoload | 74 | ;;;###autoload |
| 75 | (define-globalized-minor-mode global-display-fill-column-indicator-mode | 75 | (define-globalized-minor-mode global-display-fill-column-indicator-mode |
| 76 | display-fill-column-indicator-mode display-fill-column-indicator--turn-on) | 76 | display-fill-column-indicator-mode display-fill-column-indicator--turn-on |
| 77 | ;; See bug#41145 | ||
| 78 | :group 'display-fill-column-indicator) | ||
| 77 | 79 | ||
| 78 | (provide 'display-fill-column-indicator) | 80 | (provide 'display-fill-column-indicator) |
| 79 | 81 | ||