]> git.eshelyaron.com Git - emacs.git/commitdiff
(backup-enable-predicate): Unquote the lambda.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 17 Apr 2000 10:36:52 +0000 (10:36 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 17 Apr 2000 10:36:52 +0000 (10:36 +0000)
lisp/files.el

index d4a828c9d19d506aa7bf553537e673c0a07a5aba..61db4b6a608d8e4494e9edcc887249704b457c13 100644 (file)
@@ -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))