# HG changeset patch # User Stefan Monnier # Date 1107131317 0 # Node ID 06561ecd74ea2a0fee68657a81cff69844d22a0c # Parent 9cde8b16e3a7733874c31e9141012fa891da1961 (gnus-article-mode): Turn off the "\ " non-break space. diff -r 9cde8b16e3a7 -r 06561ecd74ea lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Sun Jan 30 18:13:05 2005 +0000 +++ b/lisp/gnus/ChangeLog Mon Jan 31 00:28:37 2005 +0000 @@ -1,3 +1,7 @@ +2005-01-30 Stefan Monnier + + * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space. + 2005-01-28 Stefan Monnier * message.el (message-beginning-of-line): Change the behavior when @@ -11,8 +15,8 @@ 2005-01-28 Katsumi Yamaoka - * gnus-art.el (gnus-article-prepare): Remove - message-strip-forbidden-properties from the local hook. + * gnus-art.el (gnus-article-prepare): + Remove message-strip-forbidden-properties from the local hook. 2005-01-24 Katsumi Yamaoka @@ -33,9 +37,9 @@ 2004-12-27 Simon Josefsson - * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used - when mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) - and we have trailing white space. Reported by Werner Koch . + * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when + mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have + trailing white space. Reported by Werner Koch . 2004-12-17 Kim F. Storm @@ -408,11 +412,10 @@ 2004-10-18 Kevin Greiner - * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore - servers that are offline. Avoids having gnus-agent-toggle-plugged - first ask if you want to open a server and then, even when you - responded with no, asking if you want to synchronize the server's - flags. + * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore servers + that are offline. Avoids having gnus-agent-toggle-plugged first ask if + you want to open a server and then, even when you responded with no, + asking if you want to synchronize the server's flags. (gnus-agent-synchronize-flags-server): Rewrite read loop to handle multi-line expressions. (gnus-agent-synchronize-group-flags): New internal function. @@ -560,9 +563,8 @@ 2004-10-18 Kevin Greiner - * gnus-start.el (gnus-convert-old-newsrc): Only write the - conversion message to newsrc-dribble when an actual conversion is - performed. + * gnus-start.el (gnus-convert-old-newsrc): Only write the conversion + message to newsrc-dribble when an actual conversion is performed. 2004-10-18 Kevin Greiner diff -r 9cde8b16e3a7 -r 06561ecd74ea lisp/gnus/gnus-art.el --- a/lisp/gnus/gnus-art.el Sun Jan 30 18:13:05 2005 +0000 +++ b/lisp/gnus/gnus-art.el Mon Jan 31 00:28:37 2005 +0000 @@ -3711,6 +3711,8 @@ (make-local-variable 'gnus-article-image-alist) (make-local-variable 'gnus-article-charset) (make-local-variable 'gnus-article-ignored-charsets) + ;; Prevent recent Emacsen from displaying non-break space as "\ ". + (set (make-local-variable 'show-nonbreak-escape) nil) (gnus-set-default-directory) (buffer-disable-undo) (setq buffer-read-only t)