From eca8bedbdeea42ce10f3f54b91dfcc6de04a54f0 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Mon, 27 May 2002 14:52:46 +0000 Subject: [PATCH] (desktop-save): Use utf-8-emacs coding system, not emacs-mule. --- lisp/desktop.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/desktop.el b/lisp/desktop.el index e9791cc0f90..28f6498dc9f 100644 --- a/lisp/desktop.el +++ b/lisp/desktop.el @@ -521,7 +521,7 @@ MODE is the major mode." (set-buffer buf) (erase-buffer) - (insert ";; -*- coding: emacs-mule; -*-\n" + (insert ";; -*- coding: utf-8-emacs; -*-\n" desktop-header ";; Created " (current-time-string) "\n" ";; Emacs version " emacs-version "\n\n" @@ -548,7 +548,7 @@ MODE is the major mode." info) (setq default-directory dirname) (if (file-exists-p filename) (delete-file filename)) - (let ((coding-system-for-write 'emacs-mule)) + (let ((coding-system-for-write 'utf-8-emacs)) (write-region (point-min) (point-max) filename nil 'nomessage)))) (setq desktop-dirname dirname)) ;; ---------------------------------------------------------------------------- -- 2.39.5