From 9422ff45654e07371d17d804131fafbf697b6e1e Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Thu, 14 Jan 2021 17:21:56 -0500 Subject: [PATCH] * 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 0ad5c2f1796..932b3ffcd42 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) -- 2.39.5