aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/gnus/ChangeLog14
-rw-r--r--lisp/gnus/gnus-art.el15
2 files changed, 26 insertions, 3 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 94a05ae2c20..ba5f53662c3 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,17 @@
12000-12-21 Katsumi Yamaoka <yamaoka@jpl.org>
2
3 * gnus-art.el (article-treat-dumbquotes): Quote \.
4
52000-12-21 ShengHuo ZHU <zsh@cs.rochester.edu>
6
7 * gnus-art.el (gnus-treat-emphasize): Don't treat emphasis if
8 Emacs 20 runs on a terminal.
9
102000-12-21 Kai Gro,A_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
11
12 * gnus-art.el (article-treat-dumbquotes): More doc, provided by
13 Paul Stevenson <p.stevenson@surrey.ac.uk>
14
12000-12-21 14:00:00 ShengHuo ZHU <zsh@cs.rochester.edu> 152000-12-21 14:00:00 ShengHuo ZHU <zsh@cs.rochester.edu>
2 16
3 * mml.el (gnus-add-minor-mode): Autoload. 17 * mml.el (gnus-add-minor-mode): Autoload.
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el
index c1d7a62df57..2666bcffb58 100644
--- a/lisp/gnus/gnus-art.el
+++ b/lisp/gnus/gnus-art.el
@@ -731,7 +731,11 @@ See the manual for details."
731 :type gnus-article-treat-head-custom) 731 :type gnus-article-treat-head-custom)
732(put 'gnus-treat-buttonize-head 'highlight t) 732(put 'gnus-treat-buttonize-head 'highlight t)
733 733
734(defcustom gnus-treat-emphasize 50000 734(defcustom gnus-treat-emphasize
735 (and (or window-system
736 (featurep 'xemacs)
737 (>= (string-to-number emacs-version) 21))
738 50000)
735 "Emphasize text. 739 "Emphasize text.
736Valid values are nil, t, `head', `last', an integer or a predicate. 740Valid values are nil, t, `head', `last', an integer or a predicate.
737See the manual for details." 741See the manual for details."
@@ -1317,9 +1321,14 @@ always hide."
1317 (forward-line 1)))))) 1321 (forward-line 1))))))
1318 1322
1319(defun article-treat-dumbquotes () 1323(defun article-treat-dumbquotes ()
1320 "Translate M******** sm*rtq**t*s into proper text. 1324 "Translate M****s*** sm*rtq**t*s into proper text.
1321Note that this function guesses whether a character is a sm*rtq**t* or 1325Note that this function guesses whether a character is a sm*rtq**t* or
1322not, so it should only be used interactively." 1326not, so it should only be used interactively.
1327
1328Sm*rtq**t*s are M****s***'s unilateral extension to the character map
1329in an attempt to provide more quoting characters. If you see
1330something like \\222 or \\264 where you're expecting some kind of
1331apostrophe or quotation mark, then try this wash."
1323 (interactive) 1332 (interactive)
1324 (article-translate-strings gnus-article-dumbquotes-map)) 1333 (article-translate-strings gnus-article-dumbquotes-map))
1325 1334