From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: general-purpose.el - a general-forms-resource-utility Date: Fri, 07 Jul 2006 00:14:59 -0400 Message-ID: References: <44ACE1B5.10909@easy-emacs.de> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1152245841 13954 80.91.229.2 (7 Jul 2006 04:17:21 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 7 Jul 2006 04:17:21 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jul 07 06:17:19 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FyhmB-0004Jb-3g for ged-emacs-devel@m.gmane.org; Fri, 07 Jul 2006 06:17:11 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FyhmA-0005Bp-GT for ged-emacs-devel@m.gmane.org; Fri, 07 Jul 2006 00:17:10 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Fyhk4-0003OR-K4 for emacs-devel@gnu.org; Fri, 07 Jul 2006 00:15:00 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Fyhk4-0003Ny-5f for emacs-devel@gnu.org; Fri, 07 Jul 2006 00:15:00 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fyhk3-0003Np-SO for emacs-devel@gnu.org; Fri, 07 Jul 2006 00:14:59 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FyhkO-0007kX-Kx for emacs-devel@gnu.org; Fri, 07 Jul 2006 00:15:20 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1Fyhk3-0000hA-3E; Fri, 07 Jul 2006 00:14:59 -0400 Original-To: Andreas Roehler In-reply-to: <44ACE1B5.10909@easy-emacs.de> (message from Andreas Roehler on Thu, 06 Jul 2006 12:11:01 +0200) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:56692 Archived-At: Just today I saw (defun region-around-match (&optional n) (set-mark (match-beginning n)) (goto-char (match-end n))) (defun region-to-string () (buffer-substring (min (point) (mark)) (max (point) (mark)))) in mlsupport.el. These are not useful. There are other good ways to do these things.