all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* set ALL faces to one face
@ 2020-12-23 21:35 Emanuel Berg via Users list for the GNU Emacs text editor
  2020-12-23 22:49 ` Emanuel Berg via Users list for the GNU Emacs text editor
  0 siblings, 1 reply; 11+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2020-12-23 21:35 UTC (permalink / raw)
  To: help-gnu-emacs

Set all faces to one face.

Then set all faces one by one whenever that face appears.

See '?' in comments for seemingly (?) strange things.

;;; -*- lexical-binding: t -*-
;;;
;;; this file:
;;;   http://user.it.uu.se/~embe8573/emacs-init/my-faces.el
;;;   https://dataswamp.org/~incal/emacs-init/my-faces.el

(require 'erc-button) ; why needed?
(require 'erc-match)

(defun set-all-faces (fg &optional bg weight)
  (let ((faces))
    (mapatoms (lambda (s)
                (when (facep s)
                  (push (symbol-name s) faces) )))
    (dolist (f faces)
      (set-face-attribute (intern f) nil
                          :foreground fg)
                          :background (or bg "black")
                          :weight     (or weight 'normal)) ))
;; (set-all-faces "red")

(defun what-face (pos)
  (interactive "d")
  (let ((face (or (get-char-property pos 'face)
                  (get-char-property pos 'read-cf-name) )))
    (message "face: %s" (or face "no face")) ))

(defun set-face (face fg bold &optional bg)
  (let ((bld (cond ((eq bold t)   'bold)
                   ((eq bold nil) 'normal)
                   (t              bold) )))
    (set-face-attribute face nil
                        :foreground fg
                        :background bg
                        :weight     bld) ))
(defalias 'sfa #'set-face)

(defun copy-face-attributes (src dst &rest more-faces)
  (when (and (facep src)
             (facep dst) )
    (dolist (d (cons dst more-faces))
      (let ((fg (face-attribute src :foreground nil 'default))
            (bg (face-attribute src :background nil 'default))
            (wt (face-attribute src :weight     nil 'default)) )
        (sfa d fg wt bg) ))))
(defalias 'cpf #'copy-face-attributes)

(font-lock-add-keywords 'emacs-lisp-mode
 '(
   ("font-lock-builtin-face"              .  font-lock-builtin-face)
   ("font-lock-comment-delimiter-face"    .  font-lock-comment-delimiter-face)
   ("font-lock-comment-face"              .  font-lock-comment-face)
   ("font-lock-constant-face"             .  font-lock-constant-face)
   ("font-lock-doc-face"                  .  font-lock-doc-face)
   ("font-lock-function-name-face"        .  font-lock-function-name-face)
   ("font-lock-keyword-face"              .  font-lock-keyword-face)
   ("font-lock-negation-char-face"        .  font-lock-negation-char-face)
   ("font-lock-preprocessor-face"         .  font-lock-preprocessor-face)
   ("font-lock-reference-face"            .  font-lock-reference-face)
   ("font-lock-regexp-grouping-backslash" . 'font-lock-regexp-grouping-backslash)
   ("font-lock-regexp-grouping-construct" . 'font-lock-regexp-grouping-construct)
   ("font-lock-string-face"               .  font-lock-string-face)
   ("font-lock-type-face"                 .  font-lock-type-face)
   ("font-lock-variable-name-face"        .  font-lock-variable-name-face)
   ("font-lock-warning-face"              .  font-lock-warning-face)
   )
 t)

(sfa 'bold                                  "yellow"  t)
(sfa 'bold-italic                           "black"   t)
(sfa 'button                                "green"   t)
(sfa 'default                               "white"   nil)
(sfa 'italic                                "yellow"  nil)
(sfa 'minibuffer-prompt                     "cyan"    nil)
(sfa 'nobreak-space                         "black"   t)
(sfa 'region                                "white"   nil "blue")
(sfa 'underline                             "yellow"  nil)
(sfa 'warning                               "red"     t)

;; font-lock

(when t
  (sfa  font-lock-builtin-face              "magenta" nil)
  (sfa  font-lock-comment-face              "blue"    t)
  (sfa  font-lock-constant-face             "magenta" t)
  (sfa  font-lock-doc-face                  "black"   t)
  (sfa  font-lock-function-name-face        "cyan"    t)
  (sfa  font-lock-keyword-face              "green"   t)
  (sfa  font-lock-negation-char-face        "black"   t)
  (sfa  font-lock-preprocessor-face         "cyan"    t)
  (sfa  font-lock-string-face               "green"   nil)
  (sfa  font-lock-type-face                 "yellow"  t)
  (sfa  font-lock-variable-name-face        "cyan"    nil)
  (sfa 'font-lock-regexp-grouping-backslash "blue"    nil)
  (sfa 'font-lock-regexp-grouping-construct "red"     t)
  (cpf 'font-lock-comment-face 'font-lock-comment-delimiter-face)
  (cpf 'warning                'font-lock-warning-face)
  )

;; buffer menu
(sfa 'tabulated-list-fake-header          "black"   t)

;; markdown
(sfa 'markdown-header-delimiter-face      "green"   nil)
(sfa 'markdown-header-face-1              "white"   t)
(sfa 'markdown-header-face-2              "green"   t)
(sfa 'markdown-markup-face                "black"   t)
(sfa 'markdown-metadata-key-face          "white"   t)
(sfa 'markdown-metadata-value-face        "blue"    t)
(sfa 'markdown-plain-url-face             "blue"    t)

;; erc
(sfa 'erc-action-face                     "white"   t)
(sfa 'erc-command-indicator-face          "cyan"    nil)
(sfa 'erc-current-nick-face               "white"   t)
(sfa 'erc-direct-msg-face                 "magenta" t)
(sfa 'erc-fool-face                       "yellow"  nil)
(sfa 'erc-header-line                     "yellow"  nil "black")
(sfa 'erc-input-face                      "green"   nil)
(sfa 'erc-inverse-face                    "magenta" nil)
(sfa 'erc-keyword-face                    "white"   nil)
(sfa 'erc-nick-default-face               "magenta" t)
(sfa 'erc-nick-msg-face                   "white"   nil)
(sfa 'erc-notice-face                     "black"   t)
(sfa 'erc-pal-face                        "blue"    nil)
(sfa 'erc-prompt-face                     "white"   nil "black")
(sfa 'erc-timestamp-face                  "red"     t)

(cpf 'erc-current-nick-face 'erc-my-nick-face)

;; message / gnus
(require 'gnus-spec)

(when t
  (sfa 'message-header-cc                 "cyan"    nil)
  (cpf 'message-header-cc
       'gnus-header-cc) )

(when t
  (sfa 'message-header-name               "green"   nil)
  (cpf 'message-header-name
       'gnus-header-name) )

(when t
  (sfa 'message-header-newsgroups         "magenta" t)
  (cpf 'message-header-newsgroups
       'gnus-header-newsgroups) )

(when t
  (sfa 'message-header-subject            "yellow"  nil)
  (cpf 'message-header-subject
       'gnus-header-subject) )

(sfa 'message-separator                   "white"   nil)

(sfa 'gnus-header-from                    "blue"    t)

(when t
  (setq gnus-face-0 font-lock-comment-face)
  (setq gnus-face-1 font-lock-constant-face)
  (setq gnus-face-2 font-lock-doc-face)
  (setq gnus-face-3 font-lock-function-name-face)
  (setq gnus-face-4 font-lock-variable-name-face)
  )

(when t
  (sfa 'gnus-cite-1                       "blue"    t)
  (sfa 'gnus-cite-2                       "green"   nil)
  (sfa 'gnus-cite-3                       "magenta" nil)
  (sfa 'gnus-cite-2                       "magenta" t)
  (sfa 'gnus-cite-3                       "blue"    t)
)

(sfa 'gnus-group-mail-1                   "yellow"  nil)
(sfa 'gnus-group-mail-3                   "cyan"    nil)
(sfa 'gnus-group-news-3                   "green"   t)
(sfa 'gnus-group-news-3-empty             "white"   nil)
(sfa 'gnus-group-news-6                   "black"   t)

(cpf 'gnus-group-news-6 'gnus-group-mail-1-empty
                        'gnus-group-mail-3-empty
                        'gnus-group-mail-low
                        'gnus-group-mail-low-empty
                        'gnus-group-news-6-empty)

(sfa 'gnus-summary-selected               "white"   t "magenta")
(sfa 'gnus-summary-normal-ticked          "yellow"  nil)
(sfa 'gnus-summary-normal-read            "green"   nil)

;; mode line
(sfa 'mode-line                           "blue"    t    "white")
(sfa 'mode-line-buffer-id                 nil       t    "white")
(sfa 'mode-line-emphasis                  "red"     t)
(sfa 'mode-line-highlight                 "red"     t)
(sfa 'mode-line-inactive                  "green"   t    "white")

;; paren
(sfa 'show-paren-match                    "white"   t    "green")
(sfa 'show-paren-mismatch                 "white"   t    "red")

;; dired
(sfa 'dired-directory                     "blue"    t)
(sfa 'dired-header                        "green"   nil)
(sfa 'dired-ignored                       "black"   t)
(sfa 'dired-mark                          "yellow"  nil)
(sfa 'dired-symlink                       "cyan"    nil)

(cpf 'dired-mark 'dired-flagged 'dired-marked)

;; w3m
(sfa 'w3m-current-anchor                  "yellow"  nil)
(sfa 'w3m-form-button                     "magenta" t)
(sfa 'w3m-image                           "black"   nil  "white")
(sfa 'w3m-image-anchor                    "black"   nil  "green")

(let ((w3m-bg "black"))
  (sfa 'w3m-tab-background                 w3m-bg   nil)
  (sfa 'w3m-tab-selected                   w3m-bg   nil  "cyan") ; backwards?
  (sfa 'w3m-tab-selected-retrieving        w3m-bg   t    "white")
  (sfa 'w3m-tab-unselected                 w3m-bg   t    "black") )

(cpf 'w3m-tab-unselected 'w3m-tab-unselected-unseen
                         'w3m-tab-unselected-retrieving)

;; comint
(sfa 'comint-highlight-input              "white"   nil)
(sfa 'comint-highlight-prompt             "white"   nil)

;; compilation
(sfa 'compilation-info                    "yellow"  t)

;; info
(sfa 'info-header-node                    "yellow"  nil)
(sfa 'info-menu-header                    "magenta" t)
(sfa 'info-menu-star                      "white"   nil)
(sfa 'info-title-1                        "green"   t)
(sfa 'info-title-2                        "blue"    t)
(sfa 'info-xref                           "cyan"    nil)

(cpf 'info-xref 'info-xref-visited 'info-header-xref)

(cpf 'bold        'erc-bold-face
                  'markdown-bold-face
                  'w3m-bold)

(cpf 'bold-italic 'gnus-emphasis-bold)

(cpf 'button      'erc-button
                  'gnus-button
                  'markdown-link-face
                  'w3m-anchor)

(cpf 'default     'erc-default-face)

(cpf 'italic      'markdown-italic-face)

(cpf 'underline   'gnus-emphasis-underline
                  'erc-underline-face)

(cpf 'warning     'dired-perm-write
                  'erc-dangerous-host-face
                  'erc-error-face)

(cpf 'w3m-anchor  'w3m-arrived-anchor)

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: set ALL faces to one face
  2020-12-23 21:35 set ALL faces to one face Emanuel Berg via Users list for the GNU Emacs text editor
@ 2020-12-23 22:49 ` Emanuel Berg via Users list for the GNU Emacs text editor
  2020-12-24  9:26   ` tomas
  0 siblings, 1 reply; 11+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2020-12-23 22:49 UTC (permalink / raw)
  To: help-gnu-emacs

> Set all faces to one face.
>
> Then set all faces one by one whenever that face appears.

This method is so good!

I discover faces I never knew were employed all the time,
maybe because there were identical to the default face thus
"invisible".

Just found `w3m-italic'. Setting all these lost faces will
make my Emacs even cooler. The reason to exists has
returned ;)

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: set ALL faces to one face
  2020-12-23 22:49 ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2020-12-24  9:26   ` tomas
  2020-12-26  4:27     ` Emanuel Berg via Users list for the GNU Emacs text editor
  0 siblings, 1 reply; 11+ messages in thread
From: tomas @ 2020-12-24  9:26 UTC (permalink / raw)
  To: help-gnu-emacs

[-- Attachment #1: Type: text/plain, Size: 761 bytes --]

On Wed, Dec 23, 2020 at 11:49:10PM +0100, Emanuel Berg via Users list for the GNU Emacs text editor wrote:
> > Set all faces to one face.
> >
> > Then set all faces one by one whenever that face appears.
> 
> This method is so good!
> 
> I discover faces I never knew were employed all the time,
> maybe because there were identical to the default face thus
> "invisible".
> 
> Just found `w3m-italic'. Setting all these lost faces will
> make my Emacs even cooler. The reason to exists has
> returned ;)

Mathematicians and computer folks can be made happy with simple
things. The first ones when something adds up to three (or, who
knows, pi squared divided by six), the others when they see a
turtle crossing their screen.

Cheers
 - t

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: set ALL faces to one face
  2020-12-24  9:26   ` tomas
@ 2020-12-26  4:27     ` Emanuel Berg via Users list for the GNU Emacs text editor
  2020-12-26  4:34       ` Emanuel Berg via Users list for the GNU Emacs text editor
  0 siblings, 1 reply; 11+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2020-12-26  4:27 UTC (permalink / raw)
  To: help-gnu-emacs

tomas wrote:

>> Just found `w3m-italic'. [...]
>
> Mathematicians and computer folks can be made happy with
> simple things [...]

That's right :)

But some faces that I notice with this method disappears when
I kill emacs and start it again. For example:

  sh-escaped-newline

which still hasn't reappeared.

And this

  w3m-form

produces an error on startup, however now it has reappeared
and I can set it again. Let's see if adding

  (require 'w3m-form)

to the faces file [1] will remedy the situation.

[1] https://dataswamp.org/~incal/emacs-init/my-faces.el

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: set ALL faces to one face
  2020-12-26  4:27     ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2020-12-26  4:34       ` Emanuel Berg via Users list for the GNU Emacs text editor
  2020-12-26  4:51         ` Emanuel Berg via Users list for the GNU Emacs text editor
  2020-12-26 13:57         ` Emanuel Berg via Users list for the GNU Emacs text editor
  0 siblings, 2 replies; 11+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2020-12-26  4:34 UTC (permalink / raw)
  To: help-gnu-emacs

> sh-escaped-newline

Remains a mystery...

>   w3m-form
>
> produces an error on startup, however now it has reappeared
> and I can set it again. Let's see if adding
>
>   (require 'w3m-form)
>
> [...] will remedy the situation.

Yes, that did it. Now the "why needed?" `require' list is

  (require 'erc-button) ; why needed?
  (require 'erc-match)
  (require 'w3m-form)

Note that there are several other w3m faces that don't need
any require.

Did I require everything necessary in my previous init?
Is that the reason I don't need to require anything, except
for these three lines, despite setting 90 faces in that file? [1]

[1] https://dataswamp.org/~incal/emacs-init/my-faces.el

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: set ALL faces to one face
  2020-12-26  4:34       ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2020-12-26  4:51         ` Emanuel Berg via Users list for the GNU Emacs text editor
  2020-12-26  6:42           ` Emanuel Berg via Users list for the GNU Emacs text editor
  2020-12-26  8:02           ` Eli Zaretskii
  2020-12-26 13:57         ` Emanuel Berg via Users list for the GNU Emacs text editor
  1 sibling, 2 replies; 11+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2020-12-26  4:51 UTC (permalink / raw)
  To: help-gnu-emacs

>> sh-escaped-newline
>
> Remains a mystery...

Another thing that I don't understand are the ispell faces
that are currently not set or set to something undesirable,
maybe they slipped thru when I set all the faces to red, even.

Because if they aren't here (accessible) now, why would they
have been, then?

Anyway in ispell.el there seems to be several faces, e.g.

  ispell-highlight-face

on line 147.

However when I do `describe-face' it just says [No match] like
it isn't there, and I cannot change it either for probably the
same reason...

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: set ALL faces to one face
  2020-12-26  4:51         ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2020-12-26  6:42           ` Emanuel Berg via Users list for the GNU Emacs text editor
  2020-12-26  6:52             ` Emanuel Berg via Users list for the GNU Emacs text editor
  2020-12-26  8:02           ` Eli Zaretskii
  1 sibling, 1 reply; 11+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2020-12-26  6:42 UTC (permalink / raw)
  To: help-gnu-emacs

Another face that isn't even affected by my function [last] to
set all faces to one color is `gnus-server-closed', no idea
why. `require' the file, as in (require 'gnus-srvr) doesn't
help. A fully autonomous face I guess... other faces for Gnus
are affected, including the close (?) `gnus-server-opened'.

(defun set-all-faces (fg &optional bg weight)
  (let ((faces))
    (mapatoms (lambda (s)
                (when (facep s)
                  (push (symbol-name s) faces) )))
    (dolist (f faces)
      (set-face-attribute (intern f) nil
                          :foreground fg)
                          :background (or bg "black")
                          :weight     (or weight 'normal)) ))
;; (set-all-faces "red")

https://dataswamp.org/~incal/emacs-init/my-faces.el

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: set ALL faces to one face
  2020-12-26  6:42           ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2020-12-26  6:52             ` Emanuel Berg via Users list for the GNU Emacs text editor
  2020-12-26 14:56               ` Emanuel Berg via Users list for the GNU Emacs text editor
  0 siblings, 1 reply; 11+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2020-12-26  6:52 UTC (permalink / raw)
  To: help-gnu-emacs

> Another face that isn't even affected by my function [last]
> to set all faces to one color is `gnus-server-closed', no
> idea why.

Oh, I had that configured! [last]

But ... does that configuration make sense? It looks like I'm
just setting everything to ... the way it should be?

Anyway it looks good so I guess I shouldn't fix it :)

(setq gnus-server-line-format "%3=%h: %w %30=%s\n")

;; (setq gnus-server-font-lock-keywords nil)
(setq gnus-server-font-lock-keywords
      '(("(\\(agent\\))"   1 'gnus-server-agent)
        ("(\\(closed\\))"  1 'gnus-server-closed)
        ("(\\(denied\\))"  1 'gnus-server-denied)
        ("(\\(offline\\))" 1 'gnus-server-offline)
        ("(\\(opened\\))"  1 'gnus-server-opened)
        ("\\(.*:\\)\\(.*\\) "
         (2 'font-lock-comment-face)) ))

https://dataswamp.org/~incal/emacs-init/gnus/gnus-server.el

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: set ALL faces to one face
  2020-12-26  4:51         ` Emanuel Berg via Users list for the GNU Emacs text editor
  2020-12-26  6:42           ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2020-12-26  8:02           ` Eli Zaretskii
  1 sibling, 0 replies; 11+ messages in thread
From: Eli Zaretskii @ 2020-12-26  8:02 UTC (permalink / raw)
  To: help-gnu-emacs

> Date: Sat, 26 Dec 2020 05:51:29 +0100
> From: Emanuel Berg via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org>
> 
> Anyway in ispell.el there seems to be several faces, e.g.
> 
>   ispell-highlight-face
> 
> on line 147.
> 
> However when I do `describe-face' it just says [No match] like
> it isn't there, and I cannot change it either for probably the
> same reason...

You need to "load-library ispell" first, then Emacs will know about
ispell.el faces.



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: set ALL faces to one face
  2020-12-26  4:34       ` Emanuel Berg via Users list for the GNU Emacs text editor
  2020-12-26  4:51         ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2020-12-26 13:57         ` Emanuel Berg via Users list for the GNU Emacs text editor
  1 sibling, 0 replies; 11+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2020-12-26 13:57 UTC (permalink / raw)
  To: help-gnu-emacs

>> sh-escaped-newline
>
> Remains a mystery...

Found it,

  (require 'sh-script)

will do it.

Now the only '?' that remains is w3m-tab-selected,
w3m-tab-selected-retrieving and w3m-tab-unselected that are
configured backwards, you state the foreground as background
and foreground as background...

That and ispell...

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: set ALL faces to one face
  2020-12-26  6:52             ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2020-12-26 14:56               ` Emanuel Berg via Users list for the GNU Emacs text editor
  0 siblings, 0 replies; 11+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2020-12-26 14:56 UTC (permalink / raw)
  To: help-gnu-emacs

> Oh, I had that configured! [last]
>
> But ... does that configuration make sense? It looks like I'm
> just setting everything to ... the way it should be?
>
> Anyway it looks good so I guess I shouldn't fix it :)
>
> (setq gnus-server-line-format "%3=%h: %w %30=%s\n")
>
> ;; (setq gnus-server-font-lock-keywords nil)
> (setq gnus-server-font-lock-keywords
>       '(("(\\(agent\\))"   1 'gnus-server-agent)
>         ("(\\(closed\\))"  1 'gnus-server-closed)
>         ("(\\(denied\\))"  1 'gnus-server-denied)
>         ("(\\(offline\\))" 1 'gnus-server-offline)
>         ("(\\(opened\\))"  1 'gnus-server-opened)
>         ("\\(.*:\\)\\(.*\\) "
>          (2 'font-lock-comment-face)) ))

This code, almost to the letter, is already in gnus-srvr.el,
lines 240-246. Don't know who stole it from who, or if several
people rote it and it appeared independently from each other,
just like civilization!

Anyway that means I just have to do:

(setq gnus-server-line-format "     %0{%8h%}: %1{%13=%w%} %30=%s\n")

(push '("\\(.*:\\)\\(.*\\) " (2 'font-lock-comment-face))
      gnus-server-font-lock-keywords)

One should be able to specify faces in
`gnus-server-line-format' just like for other Gnus format
strings but I don't get it to work. Well, nevermind.

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2020-12-26 14:56 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-23 21:35 set ALL faces to one face Emanuel Berg via Users list for the GNU Emacs text editor
2020-12-23 22:49 ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-12-24  9:26   ` tomas
2020-12-26  4:27     ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-12-26  4:34       ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-12-26  4:51         ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-12-26  6:42           ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-12-26  6:52             ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-12-26 14:56               ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-12-26  8:02           ` Eli Zaretskii
2020-12-26 13:57         ` Emanuel Berg via Users list for the GNU Emacs text editor

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.