]> git.eshelyaron.com Git - emacs.git/commitdiff
cus-start.el fix for bug#8192.
authorGlenn Morris <rgm@gnu.org>
Tue, 8 Mar 2011 04:34:31 +0000 (20:34 -0800)
committerGlenn Morris <rgm@gnu.org>
Tue, 8 Mar 2011 04:34:31 +0000 (20:34 -0800)
* lisp/cus-start.el (cursor-in-non-selected-windows):
Fix :set quoting oddness.

lisp/ChangeLog
lisp/cus-start.el

index c4161e63477ca209fe79428784201201803e0fa5..e96200885a024923c9f0b44b0057950eae843721 100644 (file)
@@ -1,5 +1,8 @@
 2011-03-08  Glenn Morris  <rgm@gnu.org>
 
+       * cus-start.el (cursor-in-non-selected-windows):
+       Fix :set quoting oddness.  (Bug#8192)
+
        * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
        in some setf expressions.  (Bug#2159)
 
index d2d99ee64fbc9e68821cc1089242198aa1c4fb60..788731e4dbcedd78e138a18bd35bf30d5cc37536 100644 (file)
@@ -111,9 +111,9 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of
             (cursor-in-non-selected-windows
              cursor boolean nil
              :tag "Cursor In Non-selected Windows"
-             :set #'(lambda (symbol value)
-                      (set-default symbol value)
-                      (force-mode-line-update t)))
+             :set (lambda (symbol value)
+                    (set-default symbol value)
+                    (force-mode-line-update t)))
             (transient-mark-mode editing-basics boolean nil
                                  :standard (not noninteractive)
                                  :initialize custom-initialize-delay