From de6e282cbaacd4d02499099615e336185f07bd39 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Fri, 14 Feb 2003 09:59:52 +0000 Subject: [PATCH] (mm-uu-dissect): Fix use of character constant. --- lisp/gnus/mm-uu.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/gnus/mm-uu.el b/lisp/gnus/mm-uu.el index 32d416d0815..a9609a72216 100644 --- a/lisp/gnus/mm-uu.el +++ b/lisp/gnus/mm-uu.el @@ -153,7 +153,7 @@ To disable dissecting shar codes, for instance, add (looking-at "\\(.+\\)$")) (and (match-string 1) (let ((nnheader-file-name-translation-alist - '((?/ . ?,) (? . ?_) (?* . ?_) (?$ . ?_)))) + '((?/ . ?,) (?\ . ?_) (?* . ?_) (?$ . ?_)))) (nnheader-translate-file-chars (match-string 1)))))) (forward-line);; in case of failure (setq start-char-1 (point)) -- 2.39.2