[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: How to analyze the value of `mode-line-misc-info'?
From: |
Kevin Vigouroux |
Subject: |
Re: How to analyze the value of `mode-line-misc-info'? |
Date: |
Tue, 15 Feb 2022 10:22:58 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) |
My problem is that there may be a flaw in my reasoning. I may not
perceive something, I am not very comfortable with recursion.
First issue: How to process (STRING REST...)?
1. ("" global-mode-string " ")
⤷ "" ("" display-time-string) " "
⤷ "" ("" "12:00") " "
⤷ "" "12:00" " "
⤷ "12:00 "
2. ("" global-mode-string " ")
⤷ ("" ("" display-time-string) " ")
Second issue: How to process (LIST REST...)?
1. (("" global-mode-string " "))
⤷ "" ("" display-time-string) " "
⤴ ("" ("" display-time-string) " ")
→ ("" ("" display-time-string) " ")
⤷ "" "12:00" " "
⤷ "12:00 "
2. ??
--
Kevin Vigouroux,
Best regards