From: Stefan Monnier Date: Thu, 14 Jan 2021 22:21:56 +0000 (-0500) Subject: * lisp/startup.el (command-line): Remove redundant set of no-blinking-cursor X-Git-Tag: emacs-28.0.90~4269 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9422ff45654e07371d17d804131fafbf697b6e1e;p=emacs.git * 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`. --- 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)