summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIhor Radchenko <yantar92@gmail.com>2020-12-21 23:26:49 +0800
committerBastien <bzg@gnu.org>2020-12-21 17:40:48 +0100
commit1f4ea532a4ad67e25389b79b87cd12026375934a (patch)
tree004e1abfb0bda0a333a605d2d041713769086d88
parent713b3bf7a091b262fdfd77e35fdc290173e2dfdc (diff)
downloadorg-mode-1f4ea532a4ad67e25389b79b87cd12026375934a.tar.gz
Document changes of headline fontification introduced in 979e82fc3
* etc/ORG-NEWS (=org-goto-first-child= now works before first heading): Document that all the headline components inherit the headline face instead of default face. Provide example how to restore the old behaviour.
-rw-r--r--etc/ORG-NEWS29
1 files changed, 29 insertions, 0 deletions
diff --git a/etc/ORG-NEWS b/etc/ORG-NEWS
index d685f30..fd19b2f 100644
--- a/etc/ORG-NEWS
+++ b/etc/ORG-NEWS
@@ -157,6 +157,35 @@ headings in the buffer.
Previously =org-goto-first-child= would do nothing before first
heading, except return nil.
+*** Faces of all the heading text elements now conform to the headline face
+
+In the past, faces of todo keywords, emphasised text, tags, and
+priority cookies inherited =default= face. The resulting headline
+fontification was not always consistent, as discussed in [[https://lists.gnu.org/archive/html/emacs-orgmode/2020-09/msg00331.html][this bug
+report]]. Now, the relevant faces adapt to face used to fontify the
+current headline level.
+
+Users who prefer to keep the old behaviour should change their face
+customisation explicitly stating that =default= face is inherited.
+
+Example of old face customisation:
+
+#+begin_src emacs-lisp
+(setq org-todo-keyword-faces '(("TODO"
+ :background "chocolate"
+ :height 0.75)))
+#+end_src
+
+To preserve the old behaviour the above customisation should be
+changed to
+
+#+begin_src emacs-lisp
+(setq org-todo-keyword-faces '(("TODO"
+ :inherit default
+ :background "chocolate"
+ :height 0.75)))
+#+end_src
+
* Version 9.4
** Incompatible changes
*** Possibly broken internal file links: please check and fix