summaryrefslogtreecommitdiff
path: root/lisp/gnus/mm-util.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2008-06-25 15:10:16 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2008-06-25 15:10:16 +0000
commiteafee8f2174ec13e93f1b7c14472b207fb5f9f60 (patch)
tree39ffb90ed07c7caae6bb058c85189b88f0e28c08 /lisp/gnus/mm-util.el
parentee5b7365d543288bf354ef40dae34a2d4c6258b8 (diff)
downloademacs-eafee8f2174ec13e93f1b7c14472b207fb5f9f60.tar.gz
* mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
* nnkiboze.el (nnkiboze-generate-group): Use explicit mm-disable-multibyte rather than mm-with-unibyte.
Diffstat (limited to 'lisp/gnus/mm-util.el')
-rw-r--r--lisp/gnus/mm-util.el14
1 files changed, 0 insertions, 14 deletions
diff --git a/lisp/gnus/mm-util.el b/lisp/gnus/mm-util.el
index ad092130340..453beae5216 100644
--- a/lisp/gnus/mm-util.el
+++ b/lisp/gnus/mm-util.el
@@ -1093,20 +1093,6 @@ Emacs 23 (unicode)."
(put 'mm-with-unibyte-current-buffer 'lisp-indent-function 0)
(put 'mm-with-unibyte-current-buffer 'edebug-form-spec '(body))
-(defmacro mm-with-unibyte (&rest forms)
- "Eval the FORMS with the default value of `enable-multibyte-characters' nil."
- `(let (default-enable-multibyte-characters)
- ,@forms))
-(put 'mm-with-unibyte 'lisp-indent-function 0)
-(put 'mm-with-unibyte 'edebug-form-spec '(body))
-
-(defmacro mm-with-multibyte (&rest forms)
- "Eval the FORMS with the default value of `enable-multibyte-characters' t."
- `(let ((default-enable-multibyte-characters t))
- ,@forms))
-(put 'mm-with-multibyte 'lisp-indent-function 0)
-(put 'mm-with-multibyte 'edebug-form-spec '(body))
-
(defun mm-find-charset-region (b e)
"Return a list of Emacs charsets in the region B to E."
(cond