emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master ab21b66 1/5: Specify customization types


From: Ingo Lohmar
Subject: [elpa] master ab21b66 1/5: Specify customization types
Date: Thu, 23 Feb 2017 13:27:43 -0500 (EST)

branch: master
commit ab21b66f2ccd1abd9e916f69f179c160e8f78366
Author: Ingo Lohmar <address@hidden>
Commit: Ingo Lohmar <address@hidden>

    Specify customization types
---
 wconf.el | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/wconf.el b/wconf.el
index 57add63..0555f2a 100644
--- a/wconf.el
+++ b/wconf.el
@@ -35,24 +35,29 @@
 
 (defcustom wconf-change-config-function #'wconf-change-config-default
   "Function called with current config whenever it is set."
-  :group 'wconf)
+  :group 'wconf
+  :type 'function)
 
 (defcustom wconf-file (expand-file-name "wconf-window-configs.el"
                                         user-emacs-directory)
   "File used to save and load window configurations."
-  :group 'wconf)
+  :group 'wconf
+  :type 'file)
 
 (defcustom wconf-fallback-buffer-name "*scratch*"
   "Name of the buffer to substitute for buffers which are not available."
-  :group 'wconf)
+  :group 'wconf
+  :type 'string)
 
 (defcustom wconf-no-configs-string "-----"
   "String to use if there are no configurations at all."
-  :group 'wconf)
+  :group 'wconf
+  :type 'string)
 
 (defcustom wconf-no-config-name "---"
   "String to use for the empty window configuration."
-  :group 'wconf)
+  :group 'wconf
+  :type 'string)
 
 ;; internal variables and helper functions
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]