From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kevin Rodgers Newsgroups: gmane.emacs.devel Subject: Re: describe-char and unicode data Date: Thu, 22 May 2003 09:29:02 -0600 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <3ECCECBE.5050403@yahoo.com> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1053621306 15968 80.91.224.249 (22 May 2003 16:35:06 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 22 May 2003 16:35:06 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Thu May 22 18:34:58 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19It1u-00048O-00 for ; Thu, 22 May 2003 18:34:58 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 19ItDG-0006cZ-00 for ; Thu, 22 May 2003 18:46:42 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19IsXs-0008BQ-8g for emacs-devel@quimby.gnus.org; Thu, 22 May 2003 12:03:56 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19IsDy-0002D5-OP for emacs-devel@gnu.org; Thu, 22 May 2003 11:43:22 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19Is8p-0000K4-Mo for emacs-devel@gnu.org; Thu, 22 May 2003 11:38:06 -0400 Original-Received: from main.gmane.org ([80.91.224.249]) by monty-python.gnu.org with esmtp (Exim 4.20) id 19Is8p-0000JZ-7F for emacs-devel@gnu.org; Thu, 22 May 2003 11:38:03 -0400 Original-Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 19Is4A-0007BW-00 for ; Thu, 22 May 2003 17:33:14 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-To: emacs-devel@gnu.org Original-Received: from news by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 19IryA-0006ch-00 for ; Thu, 22 May 2003 17:27:02 +0200 Original-Lines: 28 Original-X-Complaints-To: usenet@main.gmane.org User-Agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:0.9.4.1) Gecko/20020406 Netscape6/6.2.2 X-Accept-Language: en-us X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:14097 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:14097 James H. Cloos Jr. wrote: > The load-search-kill paradigm is not one I've done in elisp; is there > any defun I should look at for a good example of how to do it right? Here's an excerpt from woman.el: ;; Parse the file -- if no MANPATH data ignore it: (with-temp-buffer (insert-file-contents file) (while (re-search-forward "^[ \t]*\\(MANDATORY_\\)?MANPATH[ \t]+\\(\\S-+\\)" nil t) (setq manpath (cons (match-string 2) manpath))) manpath) > Also, would UnicodeData.txt (and UCD.html for the license text?) go > into emacs's etc dir? If so, that directory name is available in Emacs Lisp via the data-directory variable. -- Kevin Rodgers