diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2009-08-28 04:21:14 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2009-08-28 04:21:14 +0000 |
commit | b56a5ae0fee0c641a3d874b4cce4c38813b941df (patch) | |
tree | b6000f900c2d4666478338114086d182355ce1f2 /lisp/hexl.el | |
parent | de70529f66f8c7b2ccec01408a442165dd5aa9ea (diff) | |
download | emacs-b56a5ae0fee0c641a3d874b4cce4c38813b941df.tar.gz emacs-b56a5ae0fee0c641a3d874b4cce4c38813b941df.tar.bz2 emacs-b56a5ae0fee0c641a3d874b4cce4c38813b941df.zip |
* mh-e/mh-comp.el (mh-send-letter):
* mail/sendmail.el (mail-recover-1):
* international/mule-diag.el (describe-current-coding-system-briefly)
(describe-current-coding-system):
* international/mule-cmds.el (select-safe-coding-system)
(select-message-coding-system)
(set-language-environment-coding-systems, set-locale-environment):
* hexl.el (hexl-insert-multibyte-char):
* dos-w32.el (find-buffer-file-type-coding-system):
* simple.el (what-cursor-position):
Replace uses of default-buffer-file-coding-system
with (default-value 'buffer-file-coding-system).
Diffstat (limited to 'lisp/hexl.el')
-rw-r--r-- | lisp/hexl.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/hexl.el b/lisp/hexl.el index 2cdd449af38..d4aec1484ba 100644 --- a/lisp/hexl.el +++ b/lisp/hexl.el @@ -795,7 +795,7 @@ and their encoded form is inserted byte by byte." (coding (if (or (null buffer-file-coding-system) ;; coding-system-type equals t means undecided. (eq (coding-system-type buffer-file-coding-system) t)) - default-buffer-file-coding-system + (default-value 'buffer-file-coding-system) buffer-file-coding-system))) (cond ((and (> ch 0) (< ch 256)) (hexl-insert-char ch num)) |