1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-16 02:50:26 -08:00

(desktop-save): Add `-*- coding: emacs-mule -*-' to

the desktop file.
This commit is contained in:
Gerd Moellmann 2001-07-30 06:23:47 +00:00
parent ea6a3b0c87
commit 291e3b68cf
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2001-07-30 Gerd Moellmann <gerd@gnu.org>
* desktop.el (desktop-save): Add `-*- coding: emacs-mule -*-' to
the desktop file.
2001-07-27 Gerd Moellmann <gerd@gnu.org> 2001-07-27 Gerd Moellmann <gerd@gnu.org>
* emacs-lisp/lisp-mode.el (last-sexp-setup-props): New function. * emacs-lisp/lisp-mode.el (last-sexp-setup-props): New function.

View file

@ -1,6 +1,7 @@
;;; desktop.el --- save partial status of Emacs when killed ;;; desktop.el --- save partial status of Emacs when killed
;; Copyright (C) 1993, 1994, 1995, 1997, 2000 Free Software Foundation, Inc. ;; Copyright (C) 1993, 1994, 1995, 1997, 2000, 2001
;; Free Software Foundation, Inc.
;; Author: Morten Welinder <terra@diku.dk> ;; Author: Morten Welinder <terra@diku.dk>
;; Keywords: convenience ;; Keywords: convenience
@ -522,6 +523,7 @@ MODE is the major mode."
(erase-buffer) (erase-buffer)
(insert desktop-header (insert desktop-header
";; -*- coding: emacs-mule; -*-\n"
";; Created " (current-time-string) "\n" ";; Created " (current-time-string) "\n"
";; Emacs version " emacs-version "\n\n" ";; Emacs version " emacs-version "\n\n"
";; Global section:\n") ";; Global section:\n")