Skip to content

Commit

Permalink
Fix custom type mismatches for purpose-x-popwin
Browse files Browse the repository at this point in the history
  • Loading branch information
wyuenho committed May 22, 2018
1 parent 2655bbe commit 374e29d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions window-purpose-x.el
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ Can have the same values as `purpose-display-at-top-height' and
When changing the value of this variable in elisp code, you should call
`purpose-x-popwin-update-conf' for the change to take effect."
:group 'purpose
:type 'list
:type '(repeat symbol)
:set #'(lambda (symbol value)
(prog1 (set-default symbol value)
(purpose-x-popwin-update-conf)))
Expand All @@ -334,7 +334,7 @@ windows.
When changing the value of this variable in elisp code, you should call
`purpose-x-popwin-update-conf' for the change to take effect."
:group 'purpose
:type 'list
:type '(repeat string)
:set #'(lambda (symbol value)
(prog1 (set-default symbol value)
(purpose-x-popwin-update-conf)))
Expand All @@ -348,7 +348,7 @@ windows.
When changing the value of this variable in elisp code, you should call
`purpose-x-popwin-update-conf' for the change to take effect."
:group 'purpose
:type 'list
:type '(repeat string)
:set #'(lambda (symbol value)
(prog1 (set-default symbol value)
(purpose-x-popwin-update-conf)))
Expand Down

0 comments on commit 374e29d

Please sign in to comment.