GNU bug report logs - #49332
No mention in manual of how to make text blink

Previous Next

Package: emacs;

Reported by: 積丹尼 Dan Jacobson <jidanni <at> jidanni.org>

Date: Fri, 2 Jul 2021 15:55:03 UTC

Severity: wishlist

Tags: notabug

Done: Lars Ingebrigtsen <larsi <at> gnus.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 49332 in the body.
You can then email your comments to 49332 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-gnu-emacs <at> gnu.org:
bug#49332; Package emacs. (Fri, 02 Jul 2021 15:55:03 GMT) Full text and rfc822 format available.

Acknowledgement sent to 積丹尼 Dan Jacobson <jidanni <at> jidanni.org>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Fri, 02 Jul 2021 15:55:03 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: 積丹尼 Dan Jacobson <jidanni <at> jidanni.org>
To: bug-gnu-emacs <at> gnu.org
Subject: No mention in manual of how to make text blink
Date: Fri, 02 Jul 2021 12:39:16 +0800
In the emacs manual there is plenty of mention of how to make the cursor blink.
Alas, e.g.,
(info "(emacs) Face Customization") and (info "(emacs) Faces")
neglect mentioning how to make text blink.
I recall even a VT100 could be made to make text blink.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#49332; Package emacs. (Sun, 04 Jul 2021 13:59:01 GMT) Full text and rfc822 format available.

Message #8 received at 49332 <at> debbugs.gnu.org (full text, mbox):

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: 積丹尼 Dan Jacobson <jidanni <at> jidanni.org>
Cc: 49332 <at> debbugs.gnu.org
Subject: Re: bug#49332: No mention in manual of how to make text blink
Date: Sun, 04 Jul 2021 15:58:42 +0200
積丹尼 Dan Jacobson <jidanni <at> jidanni.org> writes:

> In the emacs manual there is plenty of mention of how to make the cursor blink.
> Alas, e.g.,
> (info "(emacs) Face Customization") and (info "(emacs) Faces")
> neglect mentioning how to make text blink.
> I recall even a VT100 could be made to make text blink.

There are VT codes for blinking text, but documenting that would be out
of scope for the Emacs manual.  In Emacs, if you want to make text
blink, you have to write code to blink the text (with timers and stuff),
and that's also out of scope for this manual entry.

So I'm closing this bug report.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no




Added tag(s) notabug. Request was from Lars Ingebrigtsen <larsi <at> gnus.org> to control <at> debbugs.gnu.org. (Sun, 04 Jul 2021 13:59:02 GMT) Full text and rfc822 format available.

bug closed, send any further explanations to 49332 <at> debbugs.gnu.org and 積丹尼 Dan Jacobson <jidanni <at> jidanni.org> Request was from Lars Ingebrigtsen <larsi <at> gnus.org> to control <at> debbugs.gnu.org. (Sun, 04 Jul 2021 13:59:02 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#49332; Package emacs. (Tue, 06 Jul 2021 20:02:02 GMT) Full text and rfc822 format available.

Message #15 received at 49332 <at> debbugs.gnu.org (full text, mbox):

From: 積丹尼 Dan Jacobson <jidanni <at> jidanni.org>
To: Lars Ingebrigtsen <larsi <at> gnus.org>
Cc: 49332 <at> debbugs.gnu.org
Subject: Re: bug#49332: No mention in manual of how to make text blink
Date: Wed, 07 Jul 2021 00:57:07 +0800
LI> In Emacs, if you want to make text
LI> blink, you have to write code to blink the text (with timers and stuff),

Actually all that is needed is the face for the cursor mentioned in
frame.el just needs to be shared with the rest of Emacs.

  You can also set the text cursor color, for all frames, by
  customizing the `cursor' face."

I.e., if other faces could also use the cursor's blinking face,
then I could even add blinking in addition to just
(custom-set-faces'(message-header-cc((t(:foreground "white" :bold t :background "tomato")))))
(custom-set-faces'(gnus-header-cc((t(:foreground "white" :bold t :background "tomato")))))
in an extra effort to make it clear that I was about to send a mail to
more people than I might have thought I was.
And more people were reading the message I was reading too.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#49332; Package emacs. (Wed, 07 Jul 2021 02:26:02 GMT) Full text and rfc822 format available.

Message #18 received at 49332 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: 積丹尼 Dan Jacobson <jidanni <at> jidanni.org>
Cc: 49332 <at> debbugs.gnu.org, larsi <at> gnus.org
Subject: Re: bug#49332: No mention in manual of how to make text blink
Date: Wed, 07 Jul 2021 05:25:36 +0300
> From: 積丹尼 Dan Jacobson
>  <jidanni <at> jidanni.org>
> Date: Wed, 07 Jul 2021 00:57:07 +0800
> Cc: 49332 <at> debbugs.gnu.org
> 
> LI> In Emacs, if you want to make text
> LI> blink, you have to write code to blink the text (with timers and stuff),
> 
> Actually all that is needed is the face for the cursor mentioned in
> frame.el just needs to be shared with the rest of Emacs.

No, because the way Emacs makes the cursor blink has nothing to do
with faces.  See blink-cursor-mode, which is a separate feature,
orthogonal with faces.

> I.e., if other faces could also use the cursor's blinking face,
> then I could even add blinking in addition to just

There's no such thing as "cursor's blinking face" in Emacs.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 04 Aug 2021 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 263 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.