Hello
I have the following setting
(if (featurep 'mule) ;Version:1.72
(cond ((not (emacs-version>= 21 5))
(require 'un-define)
(set-coding-priority-list '(utf-8))
(set-coding-category-system 'utf-8 'utf-8))))
So when I open a file and want to save it
describe current coding system returns:
--8<------------------------schnipp------------------------->8---
Coding system for saving this buffer:
u -- utf-8
Default coding system (for new files):
ISO8 -- iso-2022-8
Priority order for recognizing coding systems when reading files:
1. utf-8
2. iso-2022-7
--8<------------------------schnapp------------------------->8---
however I would also have
Default coding system (for new files):
u -- utf-8
How can I achieve that.
Thanks
Uwe Brauer