From: Dmitri Paduchikh <dpaduchikh@gmail.com>
To: 25365@debbugs.gnu.org
Subject: bug#25365: 25.1; Coding system for bookmarks and desktop
Date: Thu, 05 Jan 2017 17:37:30 +0500 [thread overview]
Message-ID: <87mvf57kdx.fsf@gmail.com> (raw)
Hello,
It appears that all Cyrillic text in my bookmarks file has been
corrupted. I wasn't able to reproduce such a corruption using emacs -Q,
so probably this is due to interference with my settings which I will
have to investigate. But in my opinion there is a problem with
bookmark.el as well since it ignores completely coding system when
saving bookmarks. Thus I have written the following two advices to fix
its behavior. It seems that they work as needed.
(advice-add 'bookmark-write-file :around
#'(lambda (f &rest args)
(let ((coding-system-for-write (or coding-system-for-write 'utf-8-emacs)))
(apply f args)))
'((name . "coding")))
(advice-add 'bookmark-insert-file-format-version-stamp :before
#'(lambda (&rest args)
(when coding-system-for-write
(insert (format "\
;;;; Emacs Bookmark Format Version %d ;;;;
;;; -*- coding: %S -*-\n"
bookmark-file-format-version
coding-system-for-write))))
'((name . "coding")))
Besides, although desktop.el specifies coding system in its file, it is
old one - emacs-mule. Shouldn't this be utf-8-emacs these days instead?
With best regards
Dmitri Paduchikh
In GNU Emacs 25.1.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.22.5)
of 2016-12-23 built on juergen
next reply other threads:[~2017-01-05 12:37 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-05 12:37 Dmitri Paduchikh [this message]
2017-01-06 14:56 ` bug#25365: 25.1; Coding system for bookmarks and desktop Dmitri Paduchikh
2017-01-07 12:46 ` Eli Zaretskii
[not found] ` <87d1fxzy9d.fsf@gmail.com>
[not found] ` <83k2a5blo9.fsf@gnu.org>
2017-01-09 17:07 ` Dmitri Paduchikh
2017-01-09 18:49 ` Eli Zaretskii
2017-01-09 20:34 ` Dmitri Paduchikh
2017-01-10 15:49 ` Eli Zaretskii
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87mvf57kdx.fsf@gmail.com \
--to=dpaduchikh@gmail.com \
--cc=25365@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).