From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: santosh Newsgroups: gmane.emacs.help Subject: Re: How to exit out of a function ? what is try-catch-throw in terms of Program Counter Date: Sun, 21 Oct 2007 16:25:28 +0530 Organization: Aioe.org NNTP Server Message-ID: References: <1192913158.922454.108100@k35g2000prh.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Trace: ger.gmane.org 1192977572 23005 80.91.229.12 (21 Oct 2007 14:39:32 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 21 Oct 2007 14:39:32 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Oct 21 16:39:32 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Ijbxe-0006D7-5J for geh-help-gnu-emacs@m.gmane.org; Sun, 21 Oct 2007 16:39:26 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IjbxW-0000z5-K3 for geh-help-gnu-emacs@m.gmane.org; Sun, 21 Oct 2007 10:39:18 -0400 Original-Path: shelby.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!news.newsland.it!aioe.org!not-for-mail Original-Newsgroups: gnu.emacs.help,comp.lang.c,comp.lang.c++ Original-Followup-To: gnu.emacs.help Original-Lines: 33 Original-NNTP-Posting-Host: xxUXAmiZiJdO+cTuVM8SQA.user.aioe.org Original-X-Complaints-To: abuse@aioe.org User-Agent: KNode/0.10.2 Original-Xref: shelby.stanford.edu gnu.emacs.help:153160 comp.lang.c:827812 comp.lang.c++:954247 X-Mailman-Approved-At: Sun, 21 Oct 2007 10:38:24 -0400 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: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:48665 Archived-At: Kenny McCormack wrote: > In article , > Keith Thompson wrote: >>gnuist006@gmail.com writes: >>> I have some code like this: >>> >>> (if (test) >>> (exit) >>> (do something)) >>> >>> >>> or >>> >>> (if (test) >>> ( do something) >>> (exit)) >> >>That's Lisp, yes? Saying so would be good, since we naturally assume >>that anything posted to comp.lang.c is C. > > Actually, most of what is posted here is "not C". Since, according to > many of the regulars, if it includes anything "off topic", it is "not > C". > > Since all code used in the real world uses extensions, there is no C > code in the real world. Perhaps you mean to say that there are no C _programs_ in the real world. I'm sure there are pieces of fully Standard C code in many, if not most programs. It's very likely though that the program, taken as a whole, includes some non-Standard C.