[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/logos c2b415d7a6 4/5: Make minor rewording to the manua
From: |
ELPA Syncer |
Subject: |
[elpa] externals/logos c2b415d7a6 4/5: Make minor rewording to the manual |
Date: |
Tue, 3 Sep 2024 07:47:27 -0400 (EDT) |
branch: externals/logos
commit c2b415d7a6f7df383dae3ad6d3bf786228c63235
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>
Make minor rewording to the manual
---
README.org | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/README.org b/README.org
index 9a2c7a71d8..8abfab3859 100644
--- a/README.org
+++ b/README.org
@@ -390,7 +390,7 @@ If the recentering should not affect specific modes, tweak
the function
accordingly:
#+begin_src emacs-lisp
-(defvar my-logos-no-recenter-top-modes
+(defvar my-logos-no-recenter-top-modes
'(emacs-lisp-mode lisp-interaction-mode))
(defun my-logos-recenter-top ()
@@ -521,12 +521,11 @@ restores it when ~logos-focus-mode~ is disabled. The
Continuing with the examples in this section of the manual, the code
block below shows how to disable the ~menu-bar-mode~, ~tool-bar-mode~,
~tab-bar-mode~, and ~tab-line-mode~ when ~logos-focus-mode~ is
-enabled. If the modes are already disabled, the corresponding
-function does nothing. Otherwise it toggles the mode off/on when
+enabled. If the given mode is already disabled, the corresponding
+function does nothing. Otherwise it toggles the mode off/on when
~logos-focus-mode~ is enabled/disabled.
#+begin_src emacs-lisp
-;; Assuming the `menu-bar-mode' is enabled by default...
(defun my-logos-hide-menu-bar ()
(when logos-focus-mode
(logos-set-mode-arg 'menu-bar-mode -1)))