Add /etc/skel/.emacs which enables UTF-8 mode by default.
authorMichael Prokop <mika@grml.org>
Sat, 12 May 2007 22:14:45 +0000 (00:14 +0200)
committerMichael Prokop <mika@grml.org>
Sat, 12 May 2007 22:14:45 +0000 (00:14 +0200)
debian/changelog
etc/skel/.emacs [new file with mode: 0644]

index 9964d4d..6ec5318 100644 (file)
@@ -1,3 +1,10 @@
+grml-etc-core (0.2.53) unstable; urgency=low
+
+  * Add /etc/skel/.emacs which enables UTF-8 mode by default.
+    Thanks to Josef Teske for the bugreport!
+
+ -- Michael Prokop <mika@grml.org>  Sun, 13 May 2007 00:14:18 +0200
+
 grml-etc-core (0.2.52) unstable; urgency=low
 
   * /etc/zsh/zshrc and /etc/skel/.zshrc:
diff --git a/etc/skel/.emacs b/etc/skel/.emacs
new file mode 100644 (file)
index 0000000..fe884a8
--- /dev/null
@@ -0,0 +1,16 @@
+;; Filename:      $HOME/.emacs
+;; Purpose:       configuration file for Emacs
+;; Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
+;; Bug-Reports:   see http://grml.org/bugs/
+;; License:       This file is licensed under the GPL v2.
+  ;; Latest change: Son Mai 13 00:13:58 CEST 2007 [mika]
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
+;; Activate UTF-8 mode:
+  (setq locale-coding-system 'utf-8)
+  (set-terminal-coding-system 'utf-8)
+  (set-keyboard-coding-system 'utf-8)
+  (set-selection-coding-system 'utf-8)
+  (prefer-coding-system 'utf-8)
+
+;; END OF FILE ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;