mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-24 10:38:38 +00:00
(mm-codepage-setup): If cp-supported-codepages isn't
fbound (Emacs 23 unicode), signal an error.
This commit is contained in:
parent
4b75ffab30
commit
0b9c5ab7af
@ -1,3 +1,8 @@
|
||||
2008-02-10 Reiner Steib <Reiner.Steib@gmx.de>
|
||||
|
||||
* mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
|
||||
fbound (Emacs 23 unicode), signal an error.
|
||||
|
||||
2008-02-08 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* gnus-art.el (pgg-display-output-buffer): Declare as function.
|
||||
|
@ -219,7 +219,10 @@ non-nil, an alias is created and added to
|
||||
the alias. Else windows-NUMBER is used."
|
||||
(interactive
|
||||
(let ((completion-ignore-case t)
|
||||
(candidates (cp-supported-codepages)))
|
||||
(candidates (if (fboundp 'cp-supported-codepages)
|
||||
(cp-supported-codepages)
|
||||
;; Removed in Emacs 23 (unicode), sosignal an error:
|
||||
(error "`codepage-setup' is obsolete in this Emacs version."))))
|
||||
(list (completing-read "Setup DOS Codepage: (default 437) " candidates
|
||||
nil t nil nil "437"))))
|
||||
(when alias
|
||||
|
Loading…
Reference in New Issue
Block a user