From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Sebastian Meisel Newsgroups: gmane.emacs.help Subject: Primitive Programierfrage Date: Thu, 9 Feb 2006 22:06:07 +0100 Message-ID: <200602092206.08273.sebastianmeisel@web.de> Reply-To: Sebastian Meisel NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1139524558 7234 80.91.229.2 (9 Feb 2006 22:35:58 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 9 Feb 2006 22:35:58 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Feb 09 23:35:55 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1F7KO0-0000Tw-1v for geh-help-gnu-emacs@m.gmane.org; Thu, 09 Feb 2006 23:35:37 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F7KNz-00029V-5w for geh-help-gnu-emacs@m.gmane.org; Thu, 09 Feb 2006 17:35:35 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1F7IyN-00027A-7e for help-gnu-emacs@gnu.org; Thu, 09 Feb 2006 16:05:03 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1F7IyL-00026n-6d for help-gnu-emacs@gnu.org; Thu, 09 Feb 2006 16:05:02 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F7IyK-00026f-Ls for help-gnu-emacs@gnu.org; Thu, 09 Feb 2006 16:05:00 -0500 Original-Received: from [217.72.192.225] (helo=smtp07.web.de) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1F7J1x-0005hC-3L for help-gnu-emacs@gnu.org; Thu, 09 Feb 2006 16:08:45 -0500 Original-Received: from [85.216.86.36] (helo=[192.168.2.100]) by smtp07.web.de with asmtp (TLSv1:AES256-SHA:256) (WEB.DE 4.105 #340) id 1F7IyI-0003tq-00 for help-gnu-emacs@gnu.org; Thu, 09 Feb 2006 22:04:58 +0100 Original-To: help-gnu-emacs@gnu.org User-Agent: KMail/1.9.1 Content-Disposition: inline X-Sender: sebastianmeisel@web.de 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:33107 Archived-At: Ich versuche gerade eine Funktion zuschreiben: (defun flyspell-zusammen (begin end poss) "Versuch Zusammengesetzte deutsche Worte aufzul=C3=B6sen" ;;(goto-char (- begin 2) (if=20 (re-search-backward "\"-" (- begin 2) t)=20 (lambda () (message "Got you") (return t)) (lambda () (message "misst") (return nil)) ))=20 ) Eingentlich soll sie wenn "- kurk vor begin gefunden wird die message "Got= =20 you" ausgeben und t zur=C3=BCckgegen. Aber irgendwas ist falsch. So richtig= =20 verstehe ich noch nicht wie Elisp funktioniert. =2D-=20 Bis dann und wann Sebas=E8=8C=B6an