From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Michael Slass Newsgroups: gmane.emacs.help Subject: Re: why can't my gnus display pics? Date: Tue, 07 Sep 2004 16:58:16 -0700 Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: <87pt4yd8xh.fsf@thalassa.informatimago.com> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1094601603 15976 80.91.224.253 (8 Sep 2004 00:00:03 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 8 Sep 2004 00:00:03 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Sep 08 01:59:54 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1C4psQ-0007Pm-00 for ; Wed, 08 Sep 2004 01:59:54 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1C4pxf-0004HM-Kb for geh-help-gnu-emacs@m.gmane.org; Tue, 07 Sep 2004 20:05:19 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!border1.nntp.dca.giganews.com!nntp.giganews.com!local1.nntp.dca.giganews.com!nntp.comcast.com!news.comcast.com.POSTED!not-for-mail Original-NNTP-Posting-Date: Tue, 07 Sep 2004 18:58:17 -0500 Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (gnu/linux) Cancel-Lock: sha1:wiV9jSSthxlX6MWe3/ukkGluPdc= Original-Lines: 42 Original-NNTP-Posting-Host: 24.18.253.35 Original-X-Trace: sv3-gYCiFWFbMeoeQVxWMWI2h733qPHBNlNl//CrSOp4fx32JwhCV+2IDzwATZDB0vjgNJGqTm2QiAc3gf8!PAQYOC2hHOTgk1jFD8dPS6iuOfuG+ocYtSyeLYwl7tqci7cEDTotmC6/ Original-X-Complaints-To: abuse@comcast.net X-DMCA-Complaints-To: dmca@comcast.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.13 Original-Xref: shelby.stanford.edu gnu.emacs.help:125142 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:20495 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:20495 Tim McNamara writes: >Pascal Bourguignon writes: > >> Rokia writes: >> >>> I got these information when I read an artical which has a pictur >>> attatchment. how can I resolve this. >>> >>> >>> begin 666 1.gif M1TE&.#=A+P(R`)$```0"!.SR]+0"! >>> ```"P`````+P(R```"_XR/J>> MM-J+L]Z\^P^&XDB6YHFFZLJV[@O'\DS7]HWG^L[W_@\,"H?$HO&(3"J7S*;S >>> M"8U*I]2J]8K-:K?>> M.$A8:'B(F/@$8,"XX*@`(#E)"9E@>5"I*7G)V>#9B'G9R"":Z;@I:AJ9L?K) >>> MFCFA.EJ12AE:>6KA6NK :SL9B\"+8>F9"MMJF[R*&?S8>YHK'$M<@OH*81U@ >> >> Move the cursor on the line "begin 666 ..." then: >> >> C-a C-Space C-Down M-| uudecode RET M-! xv 1.gif RET > >Good grief! That's not exactly user friendly! What's the name of >this function? It's not one function, is a recipe for shelling out twice to perform operations on the region: C-a : beginning-of-line C-Space : set-mark-command C-Down : forward-paragraph M-| : shell-command-on-region (the command is "uudecode" and RET terminates the command name) M-! : shell-command (the command is "xv 1.gif" and RET terminates the command) Apparently uudecode will see the "1.gif" tag in the data, and write out the file 1.gif. xv would be a gif viewer. > -- Mike Slass