From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Le Wang Newsgroups: gmane.emacs.devel Subject: BUG REPORT: `eval-and-compile' Date: Thu, 27 Feb 2003 18:58:38 -0500 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Trace: main.gmane.org 1046390662 1549 80.91.224.249 (28 Feb 2003 00:04:22 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 28 Feb 2003 00:04:22 +0000 (UTC) Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18oXy2-0000HE-00 for ; Fri, 28 Feb 2003 01:01:34 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18oYFA-0003m1-00 for ; Fri, 28 Feb 2003 01:19:16 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18oXwv-0005UH-02 for emacs-devel@quimby.gnus.org; Thu, 27 Feb 2003 19:00:25 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18oXwK-0005Fn-00 for emacs-devel@gnu.org; Thu, 27 Feb 2003 18:59:48 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18oXwC-0004nC-00 for emacs-devel@gnu.org; Thu, 27 Feb 2003 18:59:43 -0500 Original-Received: from main.gmane.org ([80.91.224.249]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18oXw5-0004Lz-00 for emacs-devel@gnu.org; Thu, 27 Feb 2003 18:59:33 -0500 Original-Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 18oXvm-00009l-00 for ; Fri, 28 Feb 2003 00:59:14 +0100 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 18oXvl-00009c-00 for ; Fri, 28 Feb 2003 00:59:13 +0100 Original-Lines: 35 Original-X-Complaints-To: usenet@main.gmane.org User-Agent: KNode/0.7.1 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:12015 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:12015 Hi, Unless I'm missing something really obvious... This code: (defvar le::no-backup-or-vc-regexp "regexp matching backup and vc files." (eval-and-compile (concat "\\(^\\|/\\)" ; go to beginning of 'basename' "\\(" "CVS\\|RCS\\|SCCS\\|" ; version control stuff "\\.\\{1,2\\}\\|" ; dot directories "\\.?#.*?#\\|" ; backups/auto-saves ".*~\\|" "\\)" "/?$"))) when evaluated, gives: ,----[ C-h v le::no-backup-or-vc-regexp RET ] | le::no-backup-or-vc-regexp's value is | "regexp matching backup and vc files." | | \(^\|/\)\(CVS\|RCS\|SCCS\|\. | Uses keymap "1,2\", which is not currently defined. | \|\.?#.*?#\|.*~\|\)/?$ | | [back] `---- keymap? That doesn't look right. -- Le