emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/savehist.el


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/savehist.el
Date: Wed, 19 Oct 2005 15:09:59 -0400

Index: emacs/lisp/savehist.el
diff -c emacs/lisp/savehist.el:1.5 emacs/lisp/savehist.el:1.6
*** emacs/lisp/savehist.el:1.5  Tue Oct 18 16:13:18 2005
--- emacs/lisp/savehist.el      Wed Oct 19 19:09:58 2005
***************
*** 138,144 ****
    :type 'integer
    :group 'savehist)
  
! (defvar savehist-coding-system (if (coding-system-p 'utf-8) 'utf-8 
'iso-2022-8)
    "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.")
--- 138,149 ----
    :type 'integer
    :group 'savehist)
  
! (defvar savehist-coding-system
!   ;; UTF-8 is usually preferable to ISO-2022-8 when available, but under
!   ;; XEmacs, UTF-8 is provided by external packages, and may not always be
!   ;; available, so even if it currently is available, we prefer not to
!   ;; use is.
!   (if (featurep 'xemacs) 'iso-2022-8 'utf-8)
    "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.")




reply via email to

[Prev in Thread] Current Thread [Next in Thread]