GNU bug report logs -
#30994
27.0.50; Cursor doesn't blink (X window system)
Previous Next
Reported by: Michael Heerdegen <michael_heerdegen <at> web.de>
Date: Fri, 30 Mar 2018 03:32:01 UTC
Severity: normal
Merged with 45857
Found in versions 27.0.50, 28.0.50
Done: Stefan Monnier <monnier <at> iro.umontreal.ca>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Sun, 23 Aug 2020 07:59:29 -0400
with message-id <CADwFkmnowO0tWmThWzjtiiyg=1cgvw6Qk=X9-xLJjR-s+X6OCg <at> mail.gmail.com>
and subject line Re: bug#30994: 27.0.50; Cursor doesn't blink (X window system)
has caused the debbugs.gnu.org bug report #30994,
regarding 27.0.50; Cursor doesn't blink (X window system)
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
30994: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=30994
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
[Message part 3 (text/plain, inline)]
Hello,
I start emacs -Q (under openbox in X on Debian if it matters), and I get
an Emacs where the cursor doesn't blink. Thankfully only on master but
not with an emacs-26 build.
The problem is simply that `blink-cursor-mode' is not turned on when
starting, but I can successfully enable it.
The reason is that at the moment the :init-value expression of
`blink-cursor-mode' is evaluated, `window-system' is bound to nil,
i.e. when installing the following:
[0001-WIP-test-no-blinking-cursor.patch (text/x-diff, inline)]
From befd2667396125748d6e9e0e15c5fc38f7846082 Mon Sep 17 00:00:00 2001
From: Michael Heerdegen <michael_heerdegen <at> web.de>
Date: Fri, 30 Mar 2018 04:25:00 +0200
Subject: [PATCH] WIP: test no-blinking-cursor
---
lisp/frame.el | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/lisp/frame.el b/lisp/frame.el
index fbf2f6e773..b07e2800ba 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -2357,10 +2357,12 @@ blink-cursor-mode
This command is effective only on graphical frames. On text-only
terminals, cursor blinking is controlled by the terminal."
- :init-value (not (or noninteractive
- no-blinking-cursor
- (eq system-type 'ms-dos)
- (not (memq window-system '(x w32 ns)))))
+ :init-value (progn
+ (message "window-system: %S" window-system)
+ (not (or noninteractive
+ no-blinking-cursor
+ (eq system-type 'ms-dos)
+ (not (memq window-system '(x w32 ns))))))
:initialize 'custom-initialize-delay
:group 'cursor
:global t
--
2.16.2
[Message part 5 (text/plain, inline)]
I get a *Messages* buffer like
| window-system: nil
| For information about GNU Emacs and the GNU system, type C-h C-a.
After starting up,
window-system
==> x
as expected.
Thanks,
Michael.
In GNU Emacs 27.0.50 (build 5, x86_64-pc-linux-gnu, GTK+ Version 3.22.29)
of 2018-03-30 built on drachen
Repository revision: befd2667396125748d6e9e0e15c5fc38f7846082
Windowing system distributor 'The X.Org Foundation', version 11.0.11906000
System Description: Debian GNU/Linux buster/sid
[Message part 6 (message/rfc822, inline)]
Eli Zaretskii <eliz <at> gnu.org> writes:
> I don't think so, but we should probably close this bug anyway, and
> leave the rest for another day/bug.
Thanks, I'm therefore closing this bug report.
This bug report was last modified 4 years and 124 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.