diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-05-23 14:57:17 -0300 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-05-23 14:57:17 -0300 |
commit | 4f91a8160fe71295b7ad4d6e3f90f004caa3546c (patch) | |
tree | c0f3f767b785559ee0387e7cfb54a2a1aa06bcd5 /lisp/msb.el | |
parent | 782fc81943849d699d74c3039be80d4068bb3422 (diff) | |
download | emacs-4f91a8160fe71295b7ad4d6e3f90f004caa3546c.tar.gz |
Don't quote lambda expressions with `quote'.
Diffstat (limited to 'lisp/msb.el')
-rw-r--r-- | lisp/msb.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/msb.el b/lisp/msb.el index cbc953da98e..12e5a0192fe 100644 --- a/lisp/msb.el +++ b/lisp/msb.el @@ -315,7 +315,7 @@ No buffers at all if less than 1 or nil (or any non-number)." :set 'msb-custom-set :group 'msb) -(defvar msb-horizontal-shift-function '(lambda () 0) +(defvar msb-horizontal-shift-function (lambda () 0) "*Function that specifies how many pixels to shift the top menu leftwards.") (defcustom msb-display-invisible-buffers-p nil |