diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2017-11-07 20:45:58 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2017-11-07 20:45:58 -0500 |
commit | 83dc3f0e9b518e45bcfb0aaebcc706f79622f157 (patch) | |
tree | 92c3381a08a09e529e0c9514a4b873610950194b /lisp/cus-edit.el | |
parent | 48f149b40b7b2557ab45ec22f56304d3fbb3bf73 (diff) | |
download | emacs-83dc3f0e9b518e45bcfb0aaebcc706f79622f157.tar.gz emacs-83dc3f0e9b518e45bcfb0aaebcc706f79622f157.tar.bz2 emacs-83dc3f0e9b518e45bcfb0aaebcc706f79622f157.zip |
* lisp/net/tramp-cmds.el, lisp/allout.el: Avoid custom-set-variables
* lisp/net/tramp-cmds.el (tramp-change-syntax):
* lisp/allout.el (allout-init): Avoid custom-set-variables.
Diffstat (limited to 'lisp/cus-edit.el')
-rw-r--r-- | lisp/cus-edit.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index a87783850a3..edf3545cadd 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -986,7 +986,7 @@ If given a prefix (or a COMMENT argument), also prompt for a comment." current-prefix-arg)) (custom-load-symbol variable) (custom-push-theme 'theme-value variable 'user 'set (custom-quote value)) - (funcall (or (get variable 'custom-set) 'set-default) variable value) + (funcall (or (get variable 'custom-set) #'set-default) variable value) (put variable 'customized-value (list (custom-quote value))) (cond ((string= comment "") (put variable 'variable-comment nil) |