fbound (Emacs 23 unicode), signal an error.
+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.
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