help-gnu-emacs
[Top][All Lists]
Advanced

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

Updating defcustom variables in elisp code


From: uzibalqa
Subject: Updating defcustom variables in elisp code
Date: Sun, 18 Sep 2022 14:29:20 +0000

Have used defcustom as follows

(defcustom px-frame-initpos (cons 8 8)
  "Position of initial frame."
  :type 'sexp
  :group 'px-frame)

Then inside some function, I want to reset the value of "px-frame-initpos".
Have been using 

(custom-declare-variable 'px-frame-initpos (cons lft top) "DESC")

Perhaps using "custom-declare-variable" is not the appropriate thing to do, as 
it seems 
that it is declaring the variable from scratch, needing also ":type" and 
":group".  






reply via email to

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