branch: externals/lin
commit b4147fdc9382ad8878228997e918b8a2e5893ab4
Author: Protesilaos Stavrou <[email protected]>
Commit: Protesilaos Stavrou <[email protected]>
Reword the docstrings of two functions
---
lin.el | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/lin.el b/lin.el
index af2961c5d2..02a5b2a4fb 100644
--- a/lin.el
+++ b/lin.el
@@ -404,13 +404,11 @@ With optional non-nil REVERSE argument, remove those
hooks."
(seq-remove #'lin--buffer-hidden-p (buffer-list)))
(defun lin-enable-mode-in-buffers ()
- "Enable (restart) `lin-mode' if already enabled in any buffer.
-Do so by checking the `lin--non-hidden-buffers'."
+ "Enable `lin-mode' in `lin--non-hidden-buffers'."
(mapc #'lin--mode-enable (lin--non-hidden-buffers)))
(defun lin-disable-mode-in-buffers ()
- "Restart `lin-mode' if already enabled in any buffer.
-Do so by checking the `lin--non-hidden-buffers'."
+ "Disable `lin-mode' in `lin--non-hidden-buffers'."
(mapc #'lin--mode-disable (lin--non-hidden-buffers)))
(provide 'lin)