diff options
author | Glenn Morris <rgm@gnu.org> | 2009-09-03 06:54:57 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-09-03 06:54:57 +0000 |
commit | 597e2240abb69d6d1dc7cf72350575f8e871b8e4 (patch) | |
tree | 364a3fd7e1ea2401b1d8e6a936dbf74ee8a563c9 /lisp/tar-mode.el | |
parent | 99b195c851fef3b843917001bb621879f5396e71 (diff) | |
download | emacs-597e2240abb69d6d1dc7cf72350575f8e871b8e4.tar.gz |
Use default-value rather than default-enable-multibyte-characters.
Diffstat (limited to 'lisp/tar-mode.el')
-rw-r--r-- | lisp/tar-mode.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/tar-mode.el b/lisp/tar-mode.el index e0c78c8b781..762ecc07284 100644 --- a/lisp/tar-mode.el +++ b/lisp/tar-mode.el @@ -1,7 +1,8 @@ ;;; tar-mode.el --- simple editing of tar files from GNU emacs ;; Copyright (C) 1990, 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. +;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +;; Free Software Foundation, Inc. ;; Author: Jamie Zawinski <jwz@lucid.com> ;; Maintainer: FSF @@ -267,7 +268,7 @@ write-date, checksum, link-type, and link-name." (setq name (concat (substring string tar-prefix-offset (1- (match-end 0))) "/" name))) - (if default-enable-multibyte-characters + (if (default-value 'enable-multibyte-characters) (setq name (decode-coding-string name coding) linkname @@ -819,7 +820,7 @@ appear on disk when you save the tar-file's buffer." (if (or (not coding) (eq (coding-system-type coding) 'undecided)) (setq coding (detect-coding-region start end t))) - (if (and default-enable-multibyte-characters + (if (and (default-value 'enable-multibyte-characters) (coding-system-get coding :for-unibyte)) (with-current-buffer buffer (set-buffer-multibyte nil))) |