]> git.eshelyaron.com Git - emacs.git/commitdiff
(gnus-article-mode): Turn off the "\ " non-break space.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 31 Jan 2005 00:28:37 +0000 (00:28 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 31 Jan 2005 00:28:37 +0000 (00:28 +0000)
lisp/gnus/ChangeLog
lisp/gnus/gnus-art.el

index 2fbab6bea54819940f56e7c162626056747e3f7b..eb761d10b27b25134fb7efcd487c23f83092356b 100644 (file)
@@ -1,3 +1,7 @@
+2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
+
 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * message.el (message-beginning-of-line): Change the behavior when
@@ -11,8 +15,8 @@
 
 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
 
-       * 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  <yamaoka@jpl.org>
 
@@ -33,9 +37,9 @@
 
 2004-12-27  Simon Josefsson  <jas@extundo.com>
 
-       * 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 <wk@gnupg.org>.
+       * 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 <wk@gnupg.org>.
 
 2004-12-17  Kim F. Storm  <storm@cua.dk>
 
 
 2004-10-18  Kevin Greiner  <kevin.greiner@compsol.cc>
 
-       * 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.
 
 2004-10-18  Kevin Greiner <kevin.greiner@compsol.cc>
 
-       * 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 <kevin.greiner@compsol.cc>
 
index 8a81176a5f69da97a062c102ea3afd372d6c229e..3f8e172c1a85ab7fdc38157a7fab64092b018573 100644 (file)
@@ -3711,6 +3711,8 @@ commands:
   (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)