From: Stefan Monnier <monnier@iro.umontreal.ca> Date: Mon, 17 Apr 2000 10:36:52 +0000 (+0000) Subject: (backup-enable-predicate): Unquote the lambda. X-Git-Tag: emacs-pretest-21.0.90~4230 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=84e4ce49e660637c4f1bfef655b7307b3d619955;p=emacs.git (backup-enable-predicate): Unquote the lambda. --- diff --git a/lisp/files.el b/lisp/files.el index d4a828c9d19..61db4b6a608 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -134,7 +134,7 @@ This variable is relevant only if `backup-by-copying' and :group 'backup) (defvar backup-enable-predicate - '(lambda (name) + (lambda (name) (and (let ((comp (compare-strings temporary-file-directory 0 nil name 0 nil))) (and (not (eq comp t))