emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 9422ff4: * lisp/startup.el (command-line): Remove redundant set o


From: Stefan Monnier
Subject: master 9422ff4: * lisp/startup.el (command-line): Remove redundant set of no-blinking-cursor
Date: Thu, 14 Jan 2021 17:22:03 -0500 (EST)

branch: master
commit 9422ff45654e07371d17d804131fafbf697b6e1e
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>

    * lisp/startup.el (command-line): Remove redundant set of no-blinking-cursor
    
    This was set when (or noninteractive emacs-basic-display), but
    the code that sets `emacs-basic-display` also sets `no-blinking-cursor`
    and `blink-cursor-mode`s value already tests `noninteractive`
    alongside `no-blinking-cursor`.
---
 lisp/startup.el | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lisp/startup.el b/lisp/startup.el
index 0ad5c2f..932b3ff 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -1288,8 +1288,7 @@ please check its value")
     (if (or noninteractive emacs-basic-display)
        (setq menu-bar-mode nil
              tab-bar-mode nil
-             tool-bar-mode nil
-             no-blinking-cursor t))
+             tool-bar-mode nil))
     (frame-initialize))
 
   (when (fboundp 'x-create-frame)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]