]> git.eshelyaron.com Git - emacs.git/commitdiff
(rmail): Make the buffer multibyte
authorRichard M. Stallman <rms@gnu.org>
Mon, 15 Jun 1998 22:46:24 +0000 (22:46 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 15 Jun 1998 22:46:24 +0000 (22:46 +0000)
even if it was already nonempty, if it should be multibyte.

lisp/mail/rmail.el

index d73181cde29aa685f09a9e41c7a8a8bdf7a09e34..7f366b377394dc77bf79c6dae6e406d3fded4b90 100644 (file)
@@ -525,12 +525,12 @@ If `rmail-display-summary' is non-nil, make a summary for this RMAIL file."
       (rmail-mode-2)
       ;; Convert all or part to Babyl file if possible.
       (rmail-convert-file)
-      ;; As we have read a file by raw-text, the buffer is set to
-      ;; unibyte.  We must make it multibyte if necessary.
-      (if (and rmail-enable-multibyte
-              (not enable-multibyte-characters))
-         (set-buffer-multibyte t))
       (goto-char (point-max)))
+    ;; As we have read a file by raw-text, the buffer is set to
+    ;; unibyte.  We must make it multibyte if necessary.
+    (if (and rmail-enable-multibyte
+            (not enable-multibyte-characters))
+       (set-buffer-multibyte t))
     ;; If necessary, scan to find all the messages.
     (rmail-maybe-set-message-counters)
     (unwind-protect