diff options
| author | Glenn Morris | 2011-03-07 20:34:31 -0800 |
|---|---|---|
| committer | Glenn Morris | 2011-03-07 20:34:31 -0800 |
| commit | e9c8529f6a9a38b35fbb9814c22b98e6099cddd2 (patch) | |
| tree | 3c113acc246f7e0bccf755236b1aa2288a566320 | |
| parent | bb3865e8ac9b8821e963dbbbb30c5b2a7a955de2 (diff) | |
| download | emacs-e9c8529f6a9a38b35fbb9814c22b98e6099cddd2.tar.gz emacs-e9c8529f6a9a38b35fbb9814c22b98e6099cddd2.zip | |
cus-start.el fix for bug#8192.
* lisp/cus-start.el (cursor-in-non-selected-windows):
Fix :set quoting oddness.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/cus-start.el | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c4161e63477..e96200885a0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2011-03-08 Glenn Morris <rgm@gnu.org> | 1 | 2011-03-08 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * cus-start.el (cursor-in-non-selected-windows): | ||
| 4 | Fix :set quoting oddness. (Bug#8192) | ||
| 5 | |||
| 3 | * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)' | 6 | * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)' |
| 4 | in some setf expressions. (Bug#2159) | 7 | in some setf expressions. (Bug#2159) |
| 5 | 8 | ||
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index d2d99ee64fb..788731e4dbc 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el | |||
| @@ -111,9 +111,9 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of | |||
| 111 | (cursor-in-non-selected-windows | 111 | (cursor-in-non-selected-windows |
| 112 | cursor boolean nil | 112 | cursor boolean nil |
| 113 | :tag "Cursor In Non-selected Windows" | 113 | :tag "Cursor In Non-selected Windows" |
| 114 | :set #'(lambda (symbol value) | 114 | :set (lambda (symbol value) |
| 115 | (set-default symbol value) | 115 | (set-default symbol value) |
| 116 | (force-mode-line-update t))) | 116 | (force-mode-line-update t))) |
| 117 | (transient-mark-mode editing-basics boolean nil | 117 | (transient-mark-mode editing-basics boolean nil |
| 118 | :standard (not noninteractive) | 118 | :standard (not noninteractive) |
| 119 | :initialize custom-initialize-delay | 119 | :initialize custom-initialize-delay |