diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2012-12-23 18:43:34 +0100 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2012-12-23 18:43:34 +0100 |
commit | d0ba8c8d78e51a70fe445f178eb51675cc5be5b6 (patch) | |
tree | 25ea737a9eac30904f9462c248de3c5f2bb59dfe /lisp/gnus/shr.el | |
parent | 3f6b93cd7fa2b949e722408bcecf50e2b7b4322e (diff) | |
download | emacs-d0ba8c8d78e51a70fe445f178eb51675cc5be5b6.tar.gz emacs-d0ba8c8d78e51a70fe445f178eb51675cc5be5b6.tar.bz2 emacs-d0ba8c8d78e51a70fe445f178eb51675cc5be5b6.zip |
shr: render <em> as italic, not bold
Diffstat (limited to 'lisp/gnus/shr.el')
-rw-r--r-- | lisp/gnus/shr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/shr.el b/lisp/gnus/shr.el index 03704554459..322c1d5d081 100644 --- a/lisp/gnus/shr.el +++ b/lisp/gnus/shr.el @@ -894,7 +894,7 @@ ones, in case fg and bg are nil." (shr-fontize-cont cont 'italic)) (defun shr-tag-em (cont) - (shr-fontize-cont cont 'bold)) + (shr-fontize-cont cont 'italic)) (defun shr-tag-strong (cont) (shr-fontize-cont cont 'bold)) |