emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

BUG REPORT: `eval-and-compile'


From: Le Wang
Subject: BUG REPORT: `eval-and-compile'
Date: Thu, 27 Feb 2003 18:58:38 -0500
User-agent: KNode/0.7.1

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





reply via email to

[Prev in Thread] Current Thread [Next in Thread]