diff options
| author | 2025-10-10 10:47:15 -0700 | |
|---|---|---|
| committer | 2025-10-10 10:47:15 -0700 | |
| commit | ab553a83bbe434d61400d7765117dfc1aab93118 (patch) | |
| tree | 3d6f5b9b602b3c9210ed3b705da65fd686867b07 | |
| parent | 7161c2aa26c12109ef5d8f246943c9918b40798f (diff) | |
| download | emacs-config-ab553a83bbe434d61400d7765117dfc1aab93118.tar.gz emacs-config-ab553a83bbe434d61400d7765117dfc1aab93118.zip | |
oni-sh: Fix definition of faces
| -rw-r--r-- | oni-shr.el | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ ;; Author: Tom Willemse <tom@ryuslash.org> ;; Keywords: local -;; Version: 2021.1123.003019 +;; Version: 2025.1010.103419 ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by @@ -42,11 +42,11 @@ (defun shr-tag-h1 (dom) "Render a <h1> tag from DOM." - (shr-heading dom '(variable-pitch (:height 1.2 :weight bold :foreground "#65a854" :underline t)))) + (shr-heading dom 'variable-pitch '(:height 1.2 :weight bold :foreground "#65a854" :underline t))) (defun shr-tag-h2 (dom) "Render a <h2> tag from DOM." - (shr-heading dom '(variable-pitch (:height 1.1 :weight bold :foreground "#54a8a8")))) + (shr-heading dom 'variable-pitch '(:height 1.1 :weight bold :foreground "#54a8a8"))) (defun oni-shr--recolorize (orig-fun &rest args) "Do some custom colorization. |
