Mercurial > hg > xemacs-beta
comparison lisp/tm/gnus-sum-mime.el @ 120:cca96a509cfe r20-1b12
Import from CVS: tag r20-1b12
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:25:29 +0200 |
parents | 9f59509498e1 |
children |
comparison
equal
deleted
inserted
replaced
119:d101af7320b8 | 120:cca96a509cfe |
---|---|
3 ;; Copyright (C) 1995,1996,1997 Free Software Foundation, Inc. | 3 ;; Copyright (C) 1995,1996,1997 Free Software Foundation, Inc. |
4 | 4 |
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp> | 5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp> |
6 ;; Created: 1996/8/6 | 6 ;; Created: 1996/8/6 |
7 ;; Version: | 7 ;; Version: |
8 ;; $Id: gnus-sum-mime.el,v 1.5 1997/03/28 02:29:05 steve Exp $ | 8 ;; $Id: gnus-sum-mime.el,v 1.6 1997/04/10 05:55:52 steve Exp $ |
9 ;; Keywords: news, MIME, multimedia, multilingual, encoded-word | 9 ;; Keywords: news, MIME, multimedia, multilingual, encoded-word |
10 | 10 |
11 ;; This file is not part of GNU Emacs yet. | 11 ;; This file is not part of GNU Emacs yet. |
12 | 12 |
13 ;; This program is free software; you can redistribute it and/or | 13 ;; This program is free software; you can redistribute it and/or |
53 ) | 53 ) |
54 default-mime-charset) | 54 default-mime-charset) |
55 default-mime-charset))) | 55 default-mime-charset))) |
56 (goto-char (point-min)) | 56 (goto-char (point-min)) |
57 (while (< (point)(point-max)) | 57 (while (< (point)(point-max)) |
58 (decode-mime-charset-region (point) | 58 (decode-mime-charset-region (point) (point-at-eol) charset) |
59 (point-at-eol) | |
60 charset) | |
61 (end-of-line) | 59 (end-of-line) |
62 (let ((signal-error-on-buffer-boundary nil)) | 60 (let (signal-error-on-buffer-boundary) ; for XEmacs |
63 (forward-char)) | 61 (forward-char)) |
64 ))) | 62 ))) |
65 | 63 |
66 | 64 |
67 ;;; @ command functions | 65 ;;; @ command functions |