(savehist-coding-system): Default to a variant coding system
with explicit unix end-of-line conversion, which is safer.
This commit is contained in:
parent
9dfee9c271
commit
7619d43bc4
2 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-01-04 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* savehist.el (savehist-coding-system): Default to a variant coding
|
||||
system with explicit unix end-of-line conversion, which is safer.
|
||||
|
||||
2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* ibuf-ext.el (mode-name sorter, ibuffer-mark-by-mode-regexp):
|
||||
|
@ -844,8 +849,8 @@
|
|||
(verilog-emacs-features, verilog-auto-ascii-enum)
|
||||
(verilog-insert-indices): Escape braces in doc strings.
|
||||
|
||||
2007-12-08 Michael McNamara <mac@verilog.com>
|
||||
Wilson Snyder <wsnyder@wsnyder.org>
|
||||
2007-12-08 Michael McNamara <mac@verilog.com>
|
||||
Wilson Snyder <wsnyder@wsnyder.org>
|
||||
|
||||
* progmodes/verilog-mode.el: New file.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; savehist.el --- Save minibuffer history.
|
||||
|
||||
;; Copyright (C) 1997, 2005, 2006, 2007 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 1997, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Hrvoje Niksic <hniksic@xemacs.org>
|
||||
;; Keywords: minibuffer
|
||||
|
@ -152,7 +152,7 @@ save."
|
|||
(defvar savehist-coding-system (if (and (featurep 'xemacs)
|
||||
(<= emacs-major-version 21)
|
||||
(< emacs-minor-version 5))
|
||||
'iso-2022-8 'utf-8)
|
||||
'iso-2022-8 'utf-8-unix)
|
||||
"The coding system savehist uses for saving the minibuffer history.
|
||||
Changing this value while Emacs is running is supported, but considered
|
||||
unwise, unless you know what you are doing.")
|
||||
|
|
Loading…
Add table
Reference in a new issue