diff options
| author | Juanma Barranquero | 2008-01-04 00:33:55 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-01-04 00:33:55 +0000 |
| commit | 7619d43bc4383e10670508d8c38bf9e707f636ee (patch) | |
| tree | 0c2c6dc434a5b87c7d9a456465da5d4311b432d2 | |
| parent | 9dfee9c2713c9d3322519e90b819dbf7b5889103 (diff) | |
| download | emacs-7619d43bc4383e10670508d8c38bf9e707f636ee.tar.gz emacs-7619d43bc4383e10670508d8c38bf9e707f636ee.zip | |
(savehist-coding-system): Default to a variant coding system
with explicit unix end-of-line conversion, which is safer.
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/savehist.el | 4 |
2 files changed, 9 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cb6f768d82c..3400963c846 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-01-04 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * savehist.el (savehist-coding-system): Default to a variant coding | ||
| 4 | system with explicit unix end-of-line conversion, which is safer. | ||
| 5 | |||
| 1 | 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * ibuf-ext.el (mode-name sorter, ibuffer-mark-by-mode-regexp): | 8 | * ibuf-ext.el (mode-name sorter, ibuffer-mark-by-mode-regexp): |
| @@ -844,8 +849,8 @@ | |||
| 844 | (verilog-emacs-features, verilog-auto-ascii-enum) | 849 | (verilog-emacs-features, verilog-auto-ascii-enum) |
| 845 | (verilog-insert-indices): Escape braces in doc strings. | 850 | (verilog-insert-indices): Escape braces in doc strings. |
| 846 | 851 | ||
| 847 | 2007-12-08 Michael McNamara <mac@verilog.com> | 852 | 2007-12-08 Michael McNamara <mac@verilog.com> |
| 848 | Wilson Snyder <wsnyder@wsnyder.org> | 853 | Wilson Snyder <wsnyder@wsnyder.org> |
| 849 | 854 | ||
| 850 | * progmodes/verilog-mode.el: New file. | 855 | * progmodes/verilog-mode.el: New file. |
| 851 | 856 | ||
diff --git a/lisp/savehist.el b/lisp/savehist.el index 705be69088d..4a86d6f0bde 100644 --- a/lisp/savehist.el +++ b/lisp/savehist.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; savehist.el --- Save minibuffer history. | 1 | ;;; savehist.el --- Save minibuffer history. |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1997, 2005, 2006, 2007 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1997, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Hrvoje Niksic <hniksic@xemacs.org> | 5 | ;; Author: Hrvoje Niksic <hniksic@xemacs.org> |
| 6 | ;; Keywords: minibuffer | 6 | ;; Keywords: minibuffer |
| @@ -152,7 +152,7 @@ save." | |||
| 152 | (defvar savehist-coding-system (if (and (featurep 'xemacs) | 152 | (defvar savehist-coding-system (if (and (featurep 'xemacs) |
| 153 | (<= emacs-major-version 21) | 153 | (<= emacs-major-version 21) |
| 154 | (< emacs-minor-version 5)) | 154 | (< emacs-minor-version 5)) |
| 155 | 'iso-2022-8 'utf-8) | 155 | 'iso-2022-8 'utf-8-unix) |
| 156 | "The coding system savehist uses for saving the minibuffer history. | 156 | "The coding system savehist uses for saving the minibuffer history. |
| 157 | Changing this value while Emacs is running is supported, but considered | 157 | Changing this value while Emacs is running is supported, but considered |
| 158 | unwise, unless you know what you are doing.") | 158 | unwise, unless you know what you are doing.") |