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/man.el | |
parent | 99b195c851fef3b843917001bb621879f5396e71 (diff) | |
download | emacs-597e2240abb69d6d1dc7cf72350575f8e871b8e4.tar.gz |
Use default-value rather than default-enable-multibyte-characters.
Diffstat (limited to 'lisp/man.el')
-rw-r--r-- | lisp/man.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/man.el b/lisp/man.el index 3aadfa2d5e1..d305d54dd43 100644 --- a/lisp/man.el +++ b/lisp/man.el @@ -1,7 +1,7 @@ ;;; man.el --- browse UNIX manual pages -*- coding: iso-8859-1 -*- -;; Copyright (C) 1993, 1994, 1996, 1997, 2001, 2002, 2003, -;; 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. +;; Copyright (C) 1993, 1994, 1996, 1997, 2001, 2002, 2003, 2004, 2005, +;; 2006, 2007, 2008, 2009 Free Software Foundation, Inc. ;; Author: Barry A. Warsaw <bwarsaw@cen.com> ;; Maintainer: FSF @@ -811,7 +811,7 @@ all sections related to a subject, put something appropriate into the ;; We must decode the output by a coding system that the ;; system's locale suggests in multibyte mode. (coding-system-for-read - (if default-enable-multibyte-characters + (if (default-value 'enable-multibyte-characters) locale-coding-system 'raw-text-unix)) ;; Avoid possible error by using a directory that always exists. (default-directory |